@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* -------------------------------------------------------------------------
   Tokens
   ------------------------------------------------------------------------- */
:root {
  --cream: #FBF4EA;
  --navy: #1B2A4A;
  --navy-soft: #26375c;
  --rose: #FBEFE9;
  --white: #FFFFFF;
  --line: #E1DACB;
  --text-muted: #5B5B54;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Century Gothic', sans-serif;
  --max: 1120px;
  --radius: 8px;              /* buttons & fields — rounded update July 2026 */
  --r-box: 14px;              /* cards & content boxes */
  --shadow-card: 0 1px 2px rgba(27,42,74,.04), 0 8px 24px rgba(27,42,74,.06);
  --header-h: 84px;

  /* Subtle paper/linen grain for cream surfaces — fine fractal noise,
     desaturated, alpha-scaled to ~18% (bumped up from the original 7% —
     that read as almost invisible). Tile is 200x200 with stitched edges
     so it repeats with no visible seam at any screen size. To adjust
     intensity: regenerate the data URI with a different feFuncA "slope"
     (try 0.10 for lighter, 0.25 for more pronounced). */
  --texture-cream: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMDAnIGhlaWdodD0nMjAwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC43NScgbnVtT2N0YXZlcz0nMycgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjxmZUNvbG9yTWF0cml4IHR5cGU9J3NhdHVyYXRlJyB2YWx1ZXM9JzAnLz48ZmVDb21wb25lbnRUcmFuc2Zlcj48ZmVGdW5jQSB0eXBlPSdsaW5lYXInIHNsb3BlPScwLjE4JyBpbnRlcmNlcHQ9JzAnLz48L2ZlQ29tcG9uZW50VHJhbnNmZXI+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzIwMCcgaGVpZ2h0PScyMDAnIGZpbHRlcj0ndXJsKCNuKScvPjwvc3ZnPgo=");
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Reusable cream-surface texture. Apply alongside any element that paints
   an opaque var(--cream) fill (body, section wrappers, cards…) — never on
   navy/white/rosé surfaces, so section contrast stays intact.
   Adjust intensity: swap --texture-cream for a version with a different
   feFuncA slope (0.10 lighter … 0.25 stronger). Adjust grain size: change
   the SVG's width/height/baseFrequency together with background-size below. */
body,
.bg-cream-texture,
.mobile-nav,
.page-content,
.area-card,
.principle-card {
  background-color: var(--cream);
  background-image: var(--texture-cream);
  background-repeat: repeat;
  background-size: 200px 200px;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.65;
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(34px, 5.2vw, 58px); line-height: 1.12; text-transform: uppercase; letter-spacing: 0.03em; }
h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.25; }
h3 { font-size: 20px; }
h4 { font-size: 17px; margin-bottom: 8px; }

p { margin: 0 0 16px; color: var(--text-muted); }
p.lede { font-size: 18px; line-height: 1.7; color: var(--text-muted); max-width: 620px; }

.text-center { text-align: center; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; margin-right: 0; text-align: left; }

section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.divider {
  width: 64px;
  height: 1px;
  background: var(--line);
  margin: 0 auto;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--navy-soft); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 11px; }

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
}
.header-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(251, 244, 234, 0.92);
  background-image: var(--texture-cream);
  background-repeat: repeat;
  background-size: 200px 200px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.edge-curve {
  display: block;
  width: min(1120px, calc(100% - 48px));
  height: 14px;
  margin: 0 auto;
}
.edge-curve path {
  fill: none;
  stroke: var(--line);
  stroke-width: 1.5px;
  vector-effect: non-scaling-stroke;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-image: url('../images/reset-logo-v2.png');
  background-repeat: no-repeat;
  background-size: 109.2px 109.2px;
  background-position: -31.9px -11.8px;
}
.logo-word {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a:not(.btn) {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.nav-links a:not(.btn):hover { opacity: 1; }

.lang-switch { position: relative; }
.lang-switch-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.lang-switch-toggle:hover,
.lang-switch-toggle:focus-visible { opacity: 1; }
.lang-switch-toggle:focus-visible { outline: 1px solid var(--navy); outline-offset: 3px; }
.lang-switch-toggle::-moz-focus-inner { border: 0; }
.lang-switch-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 130px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  padding: 6px 0;
  z-index: 50;
}
.lang-switch.open .lang-switch-menu { display: block; }
.lang-switch-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--navy);
  opacity: 0.75;
  white-space: nowrap;
}
.lang-switch-menu a:hover { opacity: 1; background: var(--rose); }
.lang-switch-menu a.active { opacity: 1; font-weight: 600; }

.nav-toggle {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { display: block; height: 1px; width: 100%; background: var(--navy); }

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.mobile-nav a.active { font-weight: 600; opacity: 1; }
.mobile-nav.open { display: flex; }

/* Language switcher nested inside the mobile menu: same trigger pattern as
   desktop, but the menu opens inline (static position) instead of floating,
   so it stays in the natural stacking order of the mobile-nav list. */
.mobile-nav .lang-switch {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .lang-switch-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 24px;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--navy);
  opacity: 0.75;
}
.mobile-nav .lang-switch.open .lang-switch-toggle { opacity: 1; }
.mobile-nav .lang-switch-menu {
  display: none;
  position: static;
  transform: none;
  width: 100%;
  min-width: 0;
  border: none;
  background: rgba(27, 42, 74, 0.04);
  padding: 0;
}
.mobile-nav .lang-switch.open .lang-switch-menu { display: block; }
.mobile-nav .lang-switch-menu a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 24px 14px 40px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.mobile-nav .lang-switch-menu a:last-child { border-bottom: none; }

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

.header-intro:not(.header-ready) .container,
.header-intro:not(.header-ready) .edge-curve {
  pointer-events: none;
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 56px 0;
}
.hero .eyebrow { margin-bottom: 20px; }
.hero h1 {
  margin-bottom: 22px;
  /* App-signature serif treatment ("become her." energy): the big hero moment
     is italic sentence case — uppercase tracking stays reserved for small
     titles, where Cormorant holds its weight. */
  text-transform: none;
  font-style: italic;
  letter-spacing: 0;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.18;
}
.hero .lede { margin: 0 auto 40px; }
.hero-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.compass-section { background: var(--rose); }
.compass-cta { display: flex; justify-content: center; margin-top: 32px; }
.compass-note { display: block; margin-top: 16px; font-size: 12px; color: var(--text-muted); text-align: center; font-style: italic; }

/* -------------------------------------------------------------------------
   Intro logo — animates from centered/huge into the compact header logo
   ------------------------------------------------------------------------- */
.intro-spacer {
  height: 78vh;
  height: 78svh;
}

.intro-logo-float {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  pointer-events: none;
  will-change: transform, opacity;
  opacity: 1;
  transform: translate(50vw, 50vh) translate(-50%, -50%);
}
.intro-logo-float .intro-logo-img { width: min(380px, 62vw); }

.page-content {
  position: relative;
  padding-top: var(--header-h);
}

/* -------------------------------------------------------------------------
   Numbered principles
   ------------------------------------------------------------------------- */
.principles { max-width: 720px; margin: 0 auto; }
.principle-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.principle-row:first-child { border-top: 1px solid var(--line); }

.badge-number {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.principle-row p { margin: 0; }

/* -------------------------------------------------------------------------
   Lebensbereiche cards
   ------------------------------------------------------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-box);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.area-card {
  padding: 32px 22px;
  text-align: left;
}
.area-card .area-number {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--navy);
  opacity: 0.5;
  margin-bottom: 18px;
}
.area-card h4 { font-size: 15px; letter-spacing: 0.02em; }
.area-card p { font-size: 14px; margin: 0; }

@media (max-width: 960px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .areas-grid { grid-template-columns: 1fr; }
}

.areas-closing {
  max-width: 620px;
  margin: 48px auto 0;
  text-align: center;
  font-style: italic;
}

/* -------------------------------------------------------------------------
   Five Principles — expandable cards
   ------------------------------------------------------------------------- */
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 652px;
  margin: 0 auto;
}

.principle-card {
  appearance: none;
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--r-box);
  box-shadow: var(--shadow-card);
  width: 190px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.principle-card:hover,
.principle-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(27, 42, 74, 0.08);
  background: var(--rose);
  outline: none;
}

.principle-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--navy);
  transition: transform 0.25s ease, color 0.25s ease;
}
.principle-icon svg { width: 100%; height: 100%; display: block; }
.principle-card:hover .principle-icon,
.principle-card:focus-visible .principle-icon {
  color: var(--text-muted);
}
.principle-card[aria-expanded="true"] .principle-icon { transform: scale(1.08); }

.principle-name {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 6px;
}
.principle-descriptor {
  font-size: 12.5px;
  color: var(--text-muted);
}
.principle-detail {
  display: block;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.principle-card[aria-expanded="true"] .principle-detail {
  max-height: 140px;
  opacity: 1;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .principles-grid { gap: 12px; }
  .principle-card { width: 100%; max-width: 360px; padding: 20px; }
  .principle-icon { width: 2rem; height: 2rem; }
}

/* -------------------------------------------------------------------------
   Freebie / capture section
   ------------------------------------------------------------------------- */
.capture-section { background: var(--navy); color: var(--rose); }
.capture-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .capture-wrap { grid-template-columns: 1fr; gap: 44px; }
}

.capture-section .eyebrow { color: var(--rose); opacity: 0.7; }
.capture-section h2 { color: var(--white); }
.capture-section p { color: rgba(251, 239, 233, 0.82); }

.planner-mock {
  width: 204px;
  height: 297px;
  max-width: 100%;
  background: #FBF1EA;
  border: 1.2px solid #1F3864;
  margin: 0 auto;
  padding: 27px 20px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.planner-mock .planner-mock-text {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  line-height: 1.15;
  color: #1F3864;
  text-transform: none;
  font-style: normal;
  text-align: center;
}
.planner-mock .planner-mock-rows {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.planner-mock .planner-mock-row {
  display: flex;
  align-items: center;
  gap: 11px;
}
.planner-mock .dot {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1.1px solid #1F3864;
  flex-shrink: 0;
}
.planner-mock .planner-mock-row span:last-child {
  height: 1px; flex: 1; background: #1F3864;
}
.planner-mock .planner-mock-ornament {
  margin-top: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.planner-mock .planner-mock-ornament .dash {
  width: 12px; height: 1px; background: #1F3864;
}
.planner-mock .planner-mock-ornament .diamond {
  width: 4px; height: 4px; background: #1F3864; transform: rotate(45deg);
}

.capture-form { margin-top: 32px; }
.field-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.field {
  flex: 1;
  min-width: 200px;
  padding: 14px 16px;
  background: rgba(251, 239, 233, 0.06);
  border: 1px solid rgba(251, 239, 233, 0.35);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
}
.field::placeholder { color: rgba(251, 239, 233, 0.55); }
.field:focus { outline: none; border-color: var(--rose); }

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 6px;
}
.consent-row input[type="checkbox"] {
  margin-top: 3px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--rose);
}
.consent-row label {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(251, 239, 233, 0.75);
}
.consent-row label a { text-decoration: underline; }

.form-fineprint {
  font-size: 12px;
  color: rgba(251, 239, 233, 0.6);
  margin: 14px 0 0;
}
.form-privacy-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  text-decoration: underline;
  color: rgba(251, 239, 233, 0.75);
}

.confirm-state {
  display: none;
  padding: 28px 0 0;
}
.confirm-state.show { display: block; }
.confirm-state .badge-number { background: var(--rose); color: var(--navy); margin-bottom: 16px; }
.confirm-state h3 { color: var(--white); }
.confirm-state p { color: rgba(251, 239, 233, 0.82); }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer { padding: 0 0 32px; }
.site-footer .edge-curve { margin: 0 auto 64px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.footer-claim {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--navy);
  opacity: 0.75;
  margin-bottom: 40px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--text-muted);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { text-decoration: underline; }

/* -------------------------------------------------------------------------
   Legal pages (Impressum / Datenschutz)
   ------------------------------------------------------------------------- */
.legal-page { padding: calc(var(--header-h) + 72px) 0 110px; }
.legal-page .container { max-width: 760px; }
.legal-page h1 {
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 6px;
}
.legal-page .muted { color: var(--text-muted); font-size: 14px; }
.legal-page .divider-left {
  width: 64px;
  height: 1px;
  background: var(--line);
  margin: 28px 0 32px;
}
.legal-page h3 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 17px;
  margin-top: 32px;
  margin-bottom: 4px;
}
.legal-page p { font-size: 15px; }

/* -------------------------------------------------------------------------
   Coming Soon page — per design handoff (RESET Coming Soon.dc.html)
   ------------------------------------------------------------------------- */
@keyframes cs-fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cs-logo-in { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

/* Safety net: if the animation never plays or completes (reduced-motion
   preference, a browser that pauses animations in background/inactive tabs,
   a headless renderer, etc.) the logo and hero must never be stuck at their
   "from" state (opacity:0) — that would make the whole page look blank. */
@media (prefers-reduced-motion: reduce) {
  .coming-soon-logo-wrap, .coming-soon-hero { animation: none; opacity: 1; transform: none; }
}

.coming-soon-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 0 24px;
}

.coming-soon-logo-wrap {
  margin-top: min(9vh, 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: cs-logo-in 1.1s cubic-bezier(.22, 1, .36, 1) both;
}
.coming-soon-logo { width: min(72vw, 300px); height: auto; display: block; }

.coming-soon-hero {
  max-width: 820px;
  width: 100%;
  text-align: center;
  margin-top: 56px;
  animation: cs-fade-in 1s cubic-bezier(.22, 1, .36, 1) 0.15s both;
}
.coming-soon-hero .eyebrow { margin-bottom: 24px; }
.coming-soon-hero h1 { margin: 0; }
.coming-soon-kicker {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  max-width: 560px;
  margin: 28px auto 0;
}
.coming-soon-hero .lede {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
  margin: 14px auto 0;
}
.coming-soon-launch-date {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.coming-soon-launch-date span:not(.coming-soon-launch-text) { width: 32px; height: 1px; background: var(--line); }
.coming-soon-launch-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}

.coming-soon-divider { width: 64px; height: 1px; background: var(--line); margin: 52px 0 44px; }

.coming-soon-capture { max-width: 440px; width: 100%; margin-bottom: 60px; }

.coming-soon-gift {
  text-align: center;
  margin-bottom: 32px;
}
.coming-soon-gift .eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 1;
  margin-bottom: 10px;
}
.coming-soon-gift p {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.coming-soon-form { display: flex; flex-direction: column; gap: 14px; }
.coming-soon-form input[type="text"],
.coming-soon-form input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}
.coming-soon-form input:focus { border-color: var(--navy); }
.coming-soon-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 4px;
  cursor: pointer;
}
.coming-soon-consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--navy); flex-shrink: 0; }
.coming-soon-consent a { color: var(--navy); text-decoration: underline; }

.coming-soon-submit {
  margin-top: 10px;
  padding: 15px 20px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.coming-soon-submit:hover { background: var(--navy-soft); }

.coming-soon-error { font-size: 13px; color: var(--navy); opacity: 0.8; display: none; }
.coming-soon-error.show { display: block; }

.coming-soon-success {
  display: none;
  text-align: center;
  padding: 8px 0 0;
  background: transparent;
  animation: cs-fade-in 0.5s ease both;
}
.coming-soon-success.show { display: block; }
.coming-soon-success .thanks { font-family: var(--serif); font-size: 20px; margin-bottom: 8px; }
.coming-soon-success p { font-weight: 300; font-size: 15px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.coming-soon-success strong { font-weight: 500; color: var(--navy); }

.coming-soon-download {
  display: inline-block;
  margin-top: 24px;
  padding: 15px 28px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}
.coming-soon-download:hover { background: var(--navy-soft); }
.coming-soon-gift-note { margin-top: 10px !important; font-size: 12px !important; opacity: 0.75; }

.coming-soon-footer {
  width: 100%;
  max-width: var(--max);
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.coming-soon-footer .wordmark {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.coming-soon-footer .footer-claim {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.coming-soon-footer .footer-links { display: flex; gap: 20px; font-size: 12px; margin-top: 6px; }
.coming-soon-footer .footer-links a { color: var(--text-muted); transition: color 0.2s ease; }
.coming-soon-footer .footer-links a:hover { color: var(--navy); }
.coming-soon-footer .coming-soon-copyright { font-size: 11px; color: var(--text-muted); opacity: 0.7; margin-top: 6px; }
