:root {
  --ink: #172a22;
  --soft-ink: #596b61;
  --deep: #0f2a22;
  --leaf: #35784e;
  --moss: #7e9d5a;
  --sun: #edc85f;
  --rose: #cf7d76;
  --paper: #fff8ea;
  --cream: #f4ead7;
  --line: rgba(23, 42, 34, 0.14);
  --shadow: 0 28px 80px rgba(16, 34, 27, 0.22);
  --radius: 8px;
  --sans: "Apple SD Gothic Neo", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: "Song Myung", "Nanum Myeongjo", Georgia, serif;
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 4px;
  color: #fffdf3;
  background: #0f2a22;
  transform: translateY(-160%);
  transition: transform 0.16s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #edc85f;
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 2%, rgba(237, 200, 95, 0.2), transparent 28%),
    linear-gradient(180deg, #f7efd9 0%, #e6efd9 42%, #fff8ea 100%);
  font-family: var(--sans);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1160px, calc(100% - 28px));
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fffdf3;
  background: rgba(15, 42, 34, 0.56);
  box-shadow: 0 18px 52px rgba(14, 32, 25, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand > span:last-child {
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 243, 0.34);
  border-radius: 8px;
  background: #173d2c url("assets/app-icon-192.png") center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 18px rgba(10, 32, 22, 0.22);
}

.brand-mark::before {
  content: none;
}

.brand-mark::after {
  content: none;
}

.nav-links {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(12px, 2vw, 22px);
  color: rgba(255, 253, 243, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--sun);
  font-weight: 800;
  white-space: nowrap;
}

.auth-slot {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  margin-left: auto;
  gap: 8px;
}

.auth-summary {
  max-width: 150px;
  overflow: hidden;
  color: rgba(255, 253, 243, 0.82);
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(190, 238, 202, 0.26);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 253, 243, 0.9);
  background:
    linear-gradient(145deg, rgba(45, 111, 72, 0.34), rgba(16, 54, 39, 0.24)),
    rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.auth-link:hover {
  border-color: rgba(237, 200, 95, 0.58);
  color: #fffdf3;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 16%, rgba(237, 200, 95, 0.22), transparent 34%),
    rgba(8, 22, 17, 0.58);
  backdrop-filter: blur(10px);
}

.auth-dialog {
  position: relative;
  width: min(420px, 100%);
  padding: 28px;
  border: 1px solid rgba(221, 246, 213, 0.32);
  border-radius: 8px;
  color: #fffdf3;
  background:
    linear-gradient(145deg, rgba(50, 104, 69, 0.88), rgba(16, 45, 34, 0.92)),
    rgba(16, 54, 39, 0.86);
  box-shadow: 0 30px 90px rgba(6, 20, 15, 0.42);
  backdrop-filter: blur(22px);
}

.auth-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 253, 243, 0.24);
  border-radius: 50%;
  color: #fffdf3;
  background: rgba(255, 255, 255, 0.1);
  font-size: 22px;
  line-height: 1;
}

.auth-dialog-copy {
  padding-right: 28px;
}

.auth-kicker {
  color: #d9f580;
  font-size: 12px;
  font-weight: 900;
}

.auth-dialog h2 {
  margin: 8px 0 8px;
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 500;
  letter-spacing: 0;
}

.auth-dialog p {
  margin: 0;
  color: rgba(255, 253, 243, 0.78);
  line-height: 1.65;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 22px 0 16px;
  padding: 5px;
  border: 1px solid rgba(255, 253, 243, 0.18);
  border-radius: 999px;
  background: rgba(7, 26, 18, 0.24);
}

.auth-tabs button,
.auth-provider,
.auth-submit,
.auth-switch-row button {
  border: 0;
}

.auth-tabs button {
  min-height: 38px;
  border-radius: 999px;
  color: rgba(255, 253, 243, 0.7);
  background: transparent;
  font-weight: 900;
}

.auth-tabs button.active {
  color: var(--ink);
  background: #f3d263;
}

.auth-provider-stack {
  display: grid;
  gap: 10px;
}

.auth-google-slot {
  display: grid;
  place-items: center;
  min-height: 44px;
}

.auth-provider {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 243, 0.92);
  font-weight: 900;
}

.auth-provider-kakao {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  padding: 0 14px;
  color: #191600;
  background: #fee500;
}

.auth-provider-kakao::after { content: ""; }

.auth-provider-kakao-mark {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: #fee500;
  background: #191600;
  font-size: 12px;
  font-weight: 950;
}

.auth-provider-kakao:disabled {
  cursor: not-allowed;
  filter: grayscale(0.7);
  opacity: 0.55;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: rgba(255, 253, 243, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 253, 243, 0.18);
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 253, 243, 0.76);
  font-size: 12px;
  font-weight: 900;
}

.auth-form label[hidden],
.auth-form fieldset[hidden] {
  display: none;
}

.auth-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 253, 243, 0.22);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 248, 234, 0.94);
  outline: none;
}

.auth-form input:focus {
  border-color: #d9f580;
  box-shadow: 0 0 0 3px rgba(217, 245, 128, 0.18);
}

.auth-submit {
  min-height: 48px;
  margin-top: 4px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--sun);
  font-weight: 900;
}

.auth-switch-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px !important;
  font-size: 13px;
}

.auth-support-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
}

.auth-support-actions button {
  border: 0;
  padding: 4px;
  color: #416150;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.auth-switch-row button {
  padding: 0;
  color: #d9f580;
  background: transparent;
  font-weight: 900;
}

body.auth-modal-open {
  overflow: hidden;
}

.auth-provider-status {
  margin: 0 !important;
  color: rgba(255, 253, 243, 0.7) !important;
  font-size: 12px;
  text-align: center;
}

.auth-consents {
  display: grid;
  gap: 9px;
  margin: 4px 0 0;
  border: 0;
  padding: 0;
}

.auth-consents[hidden] { display: none; }
.auth-consents label { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 8px; font-weight: 700; line-height: 1.5; }
.auth-consents input { width: 16px; min-height: 16px; margin: 2px 0 0; accent-color: var(--sun); }
.auth-consents a, .account-legal a { color: #d9f580; font-weight: 900; }
.auth-message { padding: 9px 11px; border-radius: 6px; color: #e8f8dd !important; background: rgba(7, 26, 18, 0.32); font-size: 12px; }
.auth-message[data-type="error"] { color: #ffe2d6 !important; background: rgba(110, 27, 22, 0.36); }
.auth-summary-button { border: 0; padding: 0; background: transparent; cursor: pointer; }
.account-plan { margin: 20px 0; padding: 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.08); font-weight: 900; }
.account-actions { display: grid; gap: 10px; }
.account-danger { min-height: 44px; border: 1px solid rgba(255, 201, 184, .35); border-radius: 999px; color: #ffe2d6; background: rgba(110, 27, 22, .24); font-weight: 900; }
.account-delete-panel { margin-top: 14px; padding: 16px; border: 1px solid rgba(255, 201, 184, .32); border-radius: 12px; background: rgba(110, 27, 22, .16); }
.account-delete-panel[hidden] { display: none; }
.account-delete-panel h3 { margin: 0 0 10px; font-size: 17px; color: #ffe2d6; }
.account-delete-panel p { margin: 0 0 10px; font-size: 14px; line-height: 1.7; color: rgba(255, 240, 235, .84); }
.account-delete-subscription:empty { display: none; }
.account-delete-field { display: grid; gap: 6px; margin-bottom: 6px; font-size: 14px; color: rgba(255, 240, 235, .9); }
.account-delete-field input { min-height: 44px; padding: 0 12px; border: 1px solid rgba(255, 201, 184, .38); border-radius: 8px; color: #fffdf3; background: rgba(20, 10, 8, .38); font: inherit; }
.account-delete-field input[aria-invalid="true"] { border-color: #ffb0a0; outline: 2px solid #ffb0a0; outline-offset: 1px; }
.account-delete-hint { font-size: 13px; }
.account-delete-message { font-weight: 800; color: #ffd9cf; }
.account-delete-message[hidden] { display: none; }
.account-delete-actions { display: grid; gap: 10px; margin-top: 12px; }
.account-legal { margin-top: 18px !important; text-align: center; font-size: 12px; }
.account-modal .auth-dialog, .checkout-modal .auth-dialog { width: min(500px, 100%); max-height: min(760px, calc(100svh - 32px)); overflow-y: auto; }
.account-secondary { border: 1px solid rgba(255,255,255,.2); color: #fffdf3; background: rgba(255,255,255,.08); }
.account-history { margin: 0 0 18px; color: rgba(255,253,243,.76); font-size: 12px; line-height: 1.5; }
.account-history h3 { margin: 0 0 8px; color: #fffdf3; font-size: 14px; }
.account-history ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.account-history li { display: grid; gap: 2px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.account-history li span { color: rgba(255,253,243,.68); }
.account-history a { color: #d9f580; font-weight: 900; }
.checkout-summary { display: grid; gap: 0; margin: 18px 0; }
.checkout-summary div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.checkout-summary dt { color: rgba(255,253,243,.7); }
.checkout-summary dd { margin: 0; text-align: right; font-weight: 900; }
.checkout-consents { display: grid; gap: 10px; }
.checkout-consents label { display: grid; grid-template-columns: 18px 1fr; gap: 8px; color: rgba(255,253,243,.82); font-size: 12px; line-height: 1.55; }
.checkout-consents input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--sun); }
.checkout-modal .auth-submit:disabled { opacity: .45; cursor: not-allowed; }
.site-footer { padding: 34px max(20px, calc((100% - 1160px) / 2)); color: rgba(255,255,255,.7); background: var(--deep); font-size: 13px; line-height: 1.7; }
.site-footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 14px 28px; }
.site-footer strong { display: block; color: #fffdf3; font-size: 16px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; }
.site-footer a { color: #fffdf3; font-weight: 800; }
.site-footer p { margin: 0; }
.legal-missing { color: #f0b5a5; font-weight: 900; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(12, 30, 24, 0.82) 0%, rgba(12, 30, 24, 0.52) 38%, rgba(12, 30, 24, 0.1) 72%),
    linear-gradient(180deg, rgba(12, 30, 24, 0.25) 0%, transparent 46%, rgba(247, 239, 217, 0.96) 100%);
}

.hero-content {
  width: min(560px, calc(100% - 40px));
  padding: clamp(140px, 17vh, 190px) 0 132px clamp(20px, 6vw, 90px);
  color: #fffdf3;
}

.eyebrow {
  margin: 0;
  color: var(--sun);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-hero {
  font-family: var(--serif);
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
  color: #fffdf3;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero h1,
.section-heading h2,
.preview-copy h2,
.newsletter-card h2 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(54px, 6.2vw, 86px);
  line-height: 1.08;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
  word-break: keep-all;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(255, 253, 243, 0.88);
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn,
.plan-button,
.email-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.plan-button:hover,
.email-form button:hover {
  transform: translateY(-1px);
}

.primary,
.primary-plan,
.email-form button {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.secondary {
  color: #fffdf3;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 253, 243, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  position: absolute;
  right: clamp(20px, 6vw, 92px);
  bottom: 72px;
  width: min(460px, calc(100% - 40px));
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fffdf3;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.46),
    0 1px 2px rgba(0, 0, 0, 0.55);
}

.hero-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.hero-card img {
  display: none;
}

.hero-card p {
  max-width: 34em;
  margin: 12px 0 0;
  color: rgba(255, 253, 243, 0.88);
  font-size: 16px;
  line-height: 1.65;
}

.hero-card-top p {
  margin: 0;
  color: rgba(237, 200, 95, 0.96);
  font-size: 12px;
  font-weight: 900;
}

.hero-card strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.12;
}

.audience-band,
.preview-section,
.diary-section,
.atlas-section,
.journey-section,
.pricing-section,
.testimonial-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.audience-band {
  padding: 76px 0 52px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading h2,
.preview-copy h2,
.newsletter-card h2 {
  color: var(--ink);
  font-size: clamp(32px, 5vw, 54px);
  word-break: keep-all;
  text-wrap: balance;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.audience-grid article,
.price-card,
.quote-card,
.newsletter-card,
.journey-list li {
  border: 1px solid rgba(23, 42, 34, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 248, 234, 0.78);
  box-shadow: 0 18px 50px rgba(16, 34, 27, 0.08);
}

.audience-grid article {
  padding: 24px;
}

.audience-grid span,
.journey-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--sun);
  font-weight: 900;
}

.audience-grid h3,
.journey-list h3 {
  margin: 18px 0 0;
  font-size: 22px;
}

.audience-grid p,
.journey-list p,
.preview-copy p,
.plan-note,
.price-card li {
  color: var(--soft-ink);
  line-height: 1.7;
}

.preview-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 76px 0;
}

.preview-copy p {
  margin: 20px 0 0;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--leaf);
}

.phone-stack {
  position: relative;
  min-height: 520px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 10px solid #fff8ea;
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.phone-main {
  right: 0;
  top: 0;
  z-index: 2;
  width: min(360px, 70%);
}

.phone-back {
  left: 0;
  bottom: 24px;
  width: min(330px, 62%);
  transform: rotate(-5deg);
  opacity: 0.92;
}

.phone img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.phone-main div {
  padding: 18px;
}

.phone-main span {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
}

.phone-main strong {
  display: block;
  margin-top: 6px;
  font-size: 19px;
  line-height: 1.35;
}

.atlas-section {
  padding: 76px 0;
}

.atlas-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.atlas-search {
  flex: 1 1 240px;
}

.atlas-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(20, 40, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.9);
  color: var(--ink);
}

.atlas-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-btn,
.season-pill,
.encounter-btn {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(190, 238, 202, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(45, 111, 72, 0.34), rgba(16, 54, 39, 0.24)),
    rgba(34, 96, 61, 0.18);
  color: #f7fff6;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.filter-btn.active,
.season-pill.active,
.encounter-btn.active {
  color: #fffdf3;
  background:
    linear-gradient(145deg, rgba(61, 145, 87, 0.62), rgba(16, 54, 39, 0.42)),
    rgba(34, 96, 61, 0.32);
  border-color: rgba(237, 200, 95, 0.72);
}

.encounter-filters {
  width: 100%;
  margin-top: 4px;
}

.atlas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.atlas-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.atlas-more-wrap .secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 248, 234, 0.86);
}

.upload-cta {
  position: relative;
  cursor: pointer;
}

.upload-cta input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-cta.full {
  width: 100%;
}

.today-section {
  padding: 76px 0;
}

.today-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.today-stage {
  position: relative;
  grid-column: 1;
  overflow: hidden;
  height: clamp(420px, 48vw, 560px);
  min-height: 0;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(16, 34, 27, 0.16);
  background: var(--deep);
}

.today-scene {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.today-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(12, 18, 15, 0.18) 68%, rgba(12, 18, 15, 0.5) 100%);
  pointer-events: none;
}

.today-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fffdf3;
  border: 1px solid rgba(190, 238, 202, 0.24);
  background:
    linear-gradient(145deg, rgba(45, 111, 72, 0.42), rgba(16, 54, 39, 0.3)),
    rgba(34, 96, 61, 0.22);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px) saturate(1.2);
}

.diary-page {
  position: absolute;
  left: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 3;
  width: auto;
  max-width: 640px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fffdf3;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.44),
    0 1px 2px rgba(0, 0, 0, 0.54);
}

.diary-page p,
.diary-page h3 {
  margin: 0;
}

.diary-page p {
  color: rgba(237, 200, 95, 0.96);
  font-size: 12px;
  font-weight: 900;
}

.diary-page h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.25;
}

.diary-page span {
  display: block;
  max-width: 38em;
  margin-top: 12px;
  color: rgba(255, 253, 243, 0.88);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.68;
}

.season-toolbar {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(23, 42, 34, 0.08);
  border-radius: var(--radius);
  background: rgba(15, 42, 34, 0.08);
}

.today-stage .season-pills {
  display: none;
}

.today-side {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 18px;
  border: 1px solid rgba(20, 40, 32, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 252, 245, 0.82);
  box-shadow: 0 18px 40px rgba(16, 34, 27, 0.08);
}

.story-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 16px;
}

.diary-composer {
  margin: 4px 0 16px;
  padding: 14px;
  border: 1px solid rgba(20, 40, 32, 0.1);
  border-radius: var(--radius);
  background: rgba(247, 239, 217, 0.7);
}

.diary-composer label {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
}

.diary-composer textarea {
  width: 100%;
  resize: vertical;
  min-height: 104px;
  border: 1px solid rgba(20, 40, 32, 0.12);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 252, 245, 0.86);
  line-height: 1.6;
}

.diary-composer textarea:focus,
.email-form input:focus,
.atlas-search input:focus {
  outline: 3px solid rgba(237, 200, 95, 0.32);
  border-color: rgba(53, 120, 78, 0.38);
}

.diary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.diary-save {
  min-height: 42px;
  color: #fffdf3;
  background: var(--deep);
}

.diary-actions span {
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 800;
}

.story-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 4px);
  text-align: left;
  color: inherit;
  background: rgba(255, 255, 255, 0.55);
}

.story-card:hover {
  border-color: rgba(47, 125, 77, 0.28);
}

.story-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.story-card p {
  margin: 0;
  color: var(--muted, #5b6f66);
  font-size: 11px;
  font-weight: 800;
}

.story-card strong {
  display: block;
  margin-top: 2px;
  font-size: 17px;
}

.story-card span {
  display: -webkit-box;
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted, #5b6f66);
  font-size: 13px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.today-note {
  margin: 12px 0 0;
  color: var(--muted, #5b6f66);
  font-size: 13px;
  line-height: 1.55;
}

.diary-section {
  padding: 76px 0;
}

.diary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.diary-feature {
  overflow: hidden;
  border: 1px solid rgba(20, 40, 32, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 248, 234, 0.8);
  box-shadow: 0 18px 50px rgba(16, 34, 27, 0.08);
}

.diary-feature img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.diary-feature div,
.diary-feature.text-card {
  padding: 22px;
}

.diary-feature p {
  margin: 0;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
}

.diary-feature h3 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.25;
}

.diary-feature span {
  display: block;
  margin-top: 12px;
  color: var(--soft-ink);
  line-height: 1.65;
}

.diary-feature ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.diary-feature li {
  position: relative;
  padding-left: 24px;
  color: var(--soft-ink);
  line-height: 1.6;
}

.diary-feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
}

.diary-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fffdf3;
  background: var(--deep);
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.atlas-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: 0 18px 50px rgba(16, 34, 27, 0.14);
  cursor: pointer;
}

.atlas-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.atlas-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.atlas-card:hover img {
  transform: scale(1.04);
}

.atlas-card div {
  position: absolute;
  inset: auto 14px 14px;
  padding: 14px;
  border-radius: var(--radius);
  color: #fffdf3;
  background: rgba(15, 42, 34, 0.68);
  backdrop-filter: blur(12px);
}

.atlas-card p {
  margin: 0;
  color: rgba(255, 253, 243, 0.76);
  font-size: 12px;
  font-weight: 900;
}

.atlas-card h3 {
  margin: 4px 0 0;
  font-size: 25px;
}

.journey-section {
  padding: 76px 0;
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-list li {
  padding: 22px;
}

.pricing-section {
  padding: 76px 0;
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.7);
}

.billing-btn {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--soft-ink);
  background: transparent;
  font-weight: 900;
}

.billing-btn.active {
  color: #fffdf3;
  background: var(--deep);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  color: #fffdf3;
  background:
    linear-gradient(160deg, rgba(15, 42, 34, 0.96), rgba(53, 120, 78, 0.92)),
    var(--deep);
  transform: translateY(-10px);
}

.price-card.featured .plan-note,
.price-card.featured li {
  color: rgba(255, 253, 243, 0.78);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--sun);
  font-size: 12px;
  font-weight: 900;
}

.plan-name {
  margin: 0;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured .plan-name {
  color: var(--sun);
}

.price-card h3 {
  margin: 12px 0 0;
  font-size: 42px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sun);
}

.plan-button {
  width: 100%;
  color: #fffdf3;
  background: var(--deep);
}

.testimonial-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 18px;
  padding: 58px 0 96px;
}

.quote-card,
.newsletter-card {
  padding: clamp(24px, 4vw, 36px);
}

.newsletter-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 22px;
  border-radius: 6px;
  color: #fffdf3;
  background: #173d2c;
  font-weight: 800;
  text-decoration: none;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  color: #fffdf3;
  background:
    linear-gradient(rgba(15, 42, 34, 0.38), rgba(15, 42, 34, 0.72)),
    url("assets/sim-autumn.webp") center / cover;
}

.quote-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.35;
}

.quote-card span {
  margin-top: 24px;
  color: rgba(255, 253, 243, 0.72);
  font-weight: 800;
}

.email-form {
  margin-top: 24px;
}

.email-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 900;
}

.email-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.email-form input {
  min-height: 50px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 80;
  max-width: min(440px, calc(100% - 32px));
  padding: 13px 18px;
  border-radius: 999px;
  color: #fffdf3;
  background: rgba(15, 42, 34, 0.92);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.sales-lock-notice {
  max-width: 880px;
  margin: 18px 0 24px;
  padding: 14px 16px;
  border: 1px solid rgba(185, 129, 31, 0.28);
  border-radius: 6px;
  color: #6e4b09;
  background: #fff3c9;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.sales-lock-notice[data-ready="true"] {
  color: #215a38;
  border-color: rgba(53, 120, 78, 0.3);
  background: #e6f2df;
}

button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 960px) {
  .site-header {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -110px 20px 70px auto;
  }

  .preview-section,
  .testimonial-section {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .diary-grid,
  .pricing-grid,
  .journey-list {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .atlas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .today-grid {
    grid-template-columns: 1fr;
  }

  .today-stage,
  .season-toolbar,
  .today-side {
    grid-column: 1;
  }

  .today-side {
    grid-row: auto;
  }

  .today-stage {
    height: clamp(420px, 56vw, 520px);
  }

  .today-scene {
    height: 100%;
    min-height: 0;
  }

  .atlas-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding-left: 12px;
    gap: 8px;
  }

  .brand {
    gap: 7px;
    font-size: 14px;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .auth-summary {
    display: none;
  }

  .auth-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-content {
    width: min(100% - 40px, 390px);
    padding: 116px 0 132px 20px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions,
  .email-form div {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .btn,
  .email-form button {
    width: 100%;
  }

  .hero-card {
    width: calc(100% - 40px);
    margin: -104px auto 56px;
  }

  .audience-band,
  .preview-section,
  .diary-section,
  .atlas-section,
  .journey-section,
  .pricing-section,
  .testimonial-section {
    width: min(100% - 28px, 1160px);
    padding-block: 54px;
  }

  .phone-stack {
    min-height: 430px;
  }

  .phone-main {
    width: 78%;
  }

  .phone-back {
    width: 70%;
  }

  .phone img {
    height: 300px;
  }

  .atlas-grid {
    grid-template-columns: 1fr;
  }

  .atlas-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .today-stage {
    height: clamp(360px, 74vw, 500px);
  }

  .today-scene {
    height: 100%;
    min-height: 0;
  }

  .season-toolbar {
    padding: 8px;
  }

  .diary-page {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .diary-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .diary-save {
    width: 100%;
  }

  .diary-feature img {
    height: 220px;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-btn {
    padding: 0 10px;
    font-size: 13px;
  }
}

/* 2026-08 organic editorial direction — inspired by immersive portfolio pacing,
   translated into momentag's own night-garden identity. */
body {
  background:
    radial-gradient(circle at 12% 4%, rgba(86, 131, 83, 0.2), transparent 24rem),
    linear-gradient(180deg, #111b17 0 100svh, #edf0df 100svh, #fff8ea 100%);
}

.site-header {
  top: 0;
  width: 100%;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 64px);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(7, 14, 12, 0.7), transparent);
  box-shadow: none;
  backdrop-filter: none;
  transition: min-height 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(12, 25, 20, 0.82);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand-mark {
  border-radius: 50%;
}

.nav-links a {
  position: relative;
  padding-block: 7px;
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  min-height: 100svh;
  color: #f7f4e9;
  background: #0c1512;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle 250px at var(--pointer-x, 52%) var(--pointer-y, 42%), rgba(227, 218, 147, 0.16), rgba(91, 145, 94, 0.07) 38%, transparent 72%);
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.hero.is-awake::after { opacity: 1; }

.hero-art {
  z-index: -5;
  object-position: 62% center;
  filter: saturate(0.68) brightness(0.58) contrast(1.06);
  transform: scale(1.035);
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.garden-canvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.8;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 48% 40%, transparent 0 15%, rgba(6, 13, 11, 0.12) 52%, rgba(6, 13, 11, 0.58) 100%),
    linear-gradient(90deg, rgba(8, 17, 14, 0.72), rgba(8, 17, 14, 0.2) 55%, rgba(8, 17, 14, 0.48)),
    linear-gradient(180deg, rgba(7, 14, 12, 0.2) 62%, #111b17 100%);
}

.hero-frame {
  position: absolute;
  inset: 104px clamp(20px, 4vw, 64px) 34px;
  z-index: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-frame span {
  position: absolute;
  top: 0;
  padding-inline: 13px;
}

.hero-frame span:first-child { left: 0; }
.hero-frame span:last-child { right: 0; }

.hero-content {
  position: relative;
  z-index: 3;
  width: min(650px, calc(100% - 48px));
  margin-left: clamp(7vw, 18vw, 22vw);
  padding: clamp(160px, 20vh, 220px) 0 150px;
  transform: translate3d(var(--content-shift-x, 0), var(--content-shift-y, 0), 0);
  transition: transform 0.7s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.brand-hero {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--sans);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-hero span:last-child {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.hero h1 {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: clamp(56px, 7.1vw, 108px);
  font-weight: 200;
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.hero h1 span:last-child {
  margin-left: clamp(30px, 6vw, 92px);
  color: #e9d882;
}

.hero-lead {
  max-width: 470px;
  margin: 30px 0 0 clamp(30px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.85;
  word-break: keep-all;
}

.hero-rule {
  height: 1px;
  margin: 30px 0 0 clamp(30px, 6vw, 92px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.hero-rule span {
  display: block;
  width: 42%;
  height: 100%;
  background: #f2e9c7;
  transform-origin: left;
  animation: rule-drift 4.8s ease-in-out infinite alternate;
}

.hero-actions,
.trust-row {
  margin-left: clamp(30px, 6vw, 92px);
}

.hero-actions { margin-top: 24px; }

.hero .btn {
  min-height: 46px;
  border-radius: 0;
  padding-inline: 18px;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.hero .primary {
  color: #0e1e18;
  background: #e9d882;
  box-shadow: none;
}

.hero .secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(11, 25, 19, 0.16);
}

.trust-row { gap: 16px; margin-top: 22px; }

.trust-row span {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: none;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-card {
  right: clamp(28px, 6vw, 88px);
  bottom: 76px;
  width: min(330px, calc(100% - 48px));
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  transform: translate3d(var(--card-shift-x, 0), var(--card-shift-y, 0), 0);
  transition: transform 0.85s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.garden-response-hint {
  position: absolute;
  top: 116px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: translateX(-50%);
  transition: color 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.garden-response-hint span {
  width: 7px;
  height: 7px;
  border: 1px solid #e9d882;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(233, 216, 130, 0.5);
  animation: garden-hint-pulse 2s ease-out infinite;
}

.hero.is-awake .garden-response-hint {
  color: rgba(242, 233, 199, 0.88);
}

.hero.just-bloomed .garden-response-hint span {
  background: #e9d882;
  box-shadow: 0 0 22px rgba(233, 216, 130, 0.9);
}

.hero-card strong {
  font-family: var(--sans);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
}

.hero-card p {
  font-size: 12px;
  line-height: 1.75;
}

.hero-card-top p {
  color: #e9d882;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: clamp(20px, 4vw, 64px);
  bottom: 34px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.scroll-cue i {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: scroll-signal 2.2s ease-in-out infinite;
}

.audience-band {
  position: relative;
  padding-top: 118px;
}

.audience-band::before {
  content: "NIGHT GARDEN / 02";
  position: absolute;
  top: 62px;
  right: 0;
  color: rgba(23, 42, 34, 0.4);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-heading h2 {
  font-weight: 400;
  letter-spacing: -0.035em;
}

.audience-grid article,
.price-card,
.quote-card,
.newsletter-card,
.journey-list li {
  border-radius: 0;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.reveal-ready.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.audience-grid > :nth-child(2),
.journey-list > :nth-child(2),
.pricing-grid > :nth-child(2) { transition-delay: 0.08s; }

.audience-grid > :nth-child(3),
.journey-list > :nth-child(3),
.pricing-grid > :nth-child(3) { transition-delay: 0.16s; }

.journey-list > :nth-child(4) { transition-delay: 0.24s; }

@keyframes hero-breathe {
  from { transform: scale(1.035); }
  to { transform: scale(1.09) translate3d(-0.8%, -0.6%, 0); }
}

@keyframes rule-drift {
  from { transform: scaleX(0.38); opacity: 0.55; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes scroll-signal {
  0% { transform: translateX(-105%); }
  55%, 100% { transform: translateX(105%); }
}

@keyframes garden-hint-pulse {
  0% { box-shadow: 0 0 0 0 rgba(233, 216, 130, 0.48); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(233, 216, 130, 0); }
}

@media (max-width: 960px) {
  .hero-content {
    margin-left: clamp(28px, 10vw, 96px);
  }

  .hero-card {
    position: absolute;
    right: 28px;
    bottom: 74px;
    margin: 0;
  }
}

@media (max-width: 720px) {
  body {
    background: linear-gradient(180deg, #111b17 0 100svh, #edf0df 100svh, #fff8ea 100%);
  }

  .site-header {
    top: 0;
    width: 100%;
    min-height: 64px;
    padding: 10px 16px;
  }

  .hero-frame {
    inset: 82px 16px 22px;
  }

  .hero-frame span:last-child { display: none; }

  .garden-response-hint {
    top: auto;
    right: 24px;
    bottom: 27px;
    left: auto;
    max-width: 150px;
    justify-content: flex-end;
    text-align: right;
    transform: none;
  }

  .hero-content {
    width: calc(100% - 48px);
    margin-left: 24px;
    padding: 128px 0 260px;
  }

  .hero h1 {
    font-size: clamp(49px, 16vw, 72px);
    line-height: 0.92;
  }

  .hero h1 span:last-child {
    margin: 8px 0 0 18px;
  }

  .hero-lead,
  .hero-rule,
  .hero-actions,
  .trust-row {
    margin-left: 18px;
  }

  .hero-lead {
    max-width: 32em;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero .btn { width: auto; }

  .trust-row { display: none; }

  .hero-card {
    right: 24px;
    bottom: 76px;
    width: calc(100% - 72px);
  }

  .hero-card > p { display: none; }

  .scroll-cue {
    left: 24px;
    bottom: 28px;
  }

  .scroll-cue span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-art,
  .hero-rule span,
  .scroll-cue i::after,
  .garden-response-hint span { animation: none; }
  .reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
