:root {
  --ink: #102a2e;
  --ink-deep: #071c20;
  --ivory: #f6f0e5;
  --paper: #fffaf2;
  --coral: #f36f56;
  --coral-dark: #d95743;
  --sage: #78a98b;
  --gold: #d8ad61;
  --text: #173238;
  --muted: #647277;
  --line: rgba(16, 42, 46, .15);
  --radius: 28px;
  --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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; }
.skip-link { position: fixed; z-index: 200; left: 16px; top: -80px; padding: 12px 18px; background: var(--ivory); color: var(--ink); border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; transition: background .3s, box-shadow .3s; }
.site-header.is-scrolled { background: rgba(7, 28, 32, .88); box-shadow: 0 10px 40px rgba(0, 0, 0, .13); backdrop-filter: blur(18px); }
.nav-wrap { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ivory); font-family: "Fraunces", serif; font-size: 23px; font-weight: 700; letter-spacing: -.02em; }
.brand img { border-radius: 12px; }
.navigation { display: flex; align-items: center; gap: 34px; color: rgba(255,255,255,.83); font-size: 14px; font-weight: 600; }
.navigation > a:not(.button) { position: relative; padding-block: 10px; }
.navigation > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 1px; background: var(--coral); transition: right .25s; }
.navigation > a:hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 12px; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 6px 0; background: white; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border: 0; border-radius: 999px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-coral { color: #fff; background: var(--coral); box-shadow: 0 12px 30px rgba(243, 111, 86, .24); }
.button-coral:hover { background: var(--coral-dark); box-shadow: 0 16px 36px rgba(243, 111, 86, .32); }
.button-small { min-height: 42px; padding-inline: 19px; }
.button-block { width: 100%; }

.hero { position: relative; min-height: 820px; height: min(920px, 100svh); overflow: hidden; background: var(--ink-deep); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,28,32,.26), transparent 56%); pointer-events: none; }
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-top: 74px; }
.hero-copy { width: min(600px, 47vw); color: var(--ivory); }
.eyebrow, .section-kicker { margin: 0 0 22px; color: var(--coral); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; color: var(--gold); }
.eyebrow span { width: 24px; height: 1px; margin-right: 10px; background: currentColor; }
h1, h2 { margin: 0; font-family: "Fraunces", Georgia, serif; font-weight: 600; letter-spacing: -.045em; line-height: .98; }
h1 { font-size: clamp(58px, 6.25vw, 94px); }
h1 em, h2 em { color: var(--coral); font-weight: inherit; }
.hero-lead { max-width: 570px; margin: 30px 0; color: rgba(246,240,229,.8); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.text-link { padding: 12px 0; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.4); }
.text-link span { display: inline-block; margin-left: 6px; transition: transform .2s; }
.text-link:hover span { transform: translate(3px, 3px); }
.hero-promise { display: flex; gap: 12px 26px; flex-wrap: wrap; margin-top: 36px; color: rgba(255,255,255,.65); font-size: 12px; }
.hero-promise span { position: relative; }
.hero-promise span:not(:first-child)::before { content: "•"; position: absolute; left: -15px; color: var(--sage); }
.scroll-cue { position: absolute; z-index: 3; bottom: 28px; left: 50%; width: 34px; height: 52px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; }
.scroll-cue span { position: absolute; top: 10px; left: 15px; width: 2px; height: 9px; background: white; border-radius: 2px; animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translateY(0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translateY(18px); } }

.section-ivory { background: var(--ivory); }
.manifest { padding: 135px 0 90px; }
.manifest-grid { display: grid; grid-template-columns: 180px 1fr 180px; gap: 52px; align-items: start; }
.manifest-copy h2, .section-heading h2, .pricing h2, .faq h2 { color: var(--ink); font-size: clamp(48px, 5vw, 76px); }
.manifest-copy p { max-width: 720px; margin: 34px 0 0; color: var(--muted); font-size: 20px; line-height: 1.75; }
.manifest-stamp { width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 18px; border: 1px solid var(--coral); border-radius: 50%; color: var(--coral); transform: rotate(8deg); }
.manifest-stamp span { font-family: "Fraunces", serif; font-size: 34px; }
.manifest-stamp small { margin-top: 3px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.solution { padding: 90px 0 140px; }
.section-heading { display: grid; grid-template-columns: 1.4fr .8fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.section-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 360px; overflow: hidden; padding: 28px; border-radius: var(--radius); color: var(--ink); }
.feature-card-large { grid-column: span 2; min-height: 450px; display: grid; grid-template-columns: 1fr 260px; align-items: end; gap: 32px; }
.feature-card-wide { grid-column: 1 / -1; min-height: 310px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-coral { background: var(--coral); color: #fff8f0; }
.feature-sage { background: var(--sage); }
.feature-navy { background: var(--ink); color: var(--ivory); }
.feature-cream { background: #e8dcc9; }
.feature-gold { background: var(--gold); }
.feature-index { position: absolute; top: 24px; right: 26px; opacity: .55; font-size: 12px; letter-spacing: .12em; }
.feature-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 62px; border: 1px solid currentColor; border-radius: 50%; font-size: 23px; }
.feature-card h3 { margin: 0 0 14px; font-family: "Fraunces", serif; font-size: 31px; letter-spacing: -.025em; }
.feature-card p { max-width: 470px; margin: 0; opacity: .8; line-height: 1.65; }
.feature-card-large .feature-icon, .feature-card-wide .feature-icon { margin-bottom: 26px; }
.mini-temperature { padding: 22px; color: var(--ink); background: rgba(255,255,255,.91); border-radius: 20px; box-shadow: 0 18px 60px rgba(72,29,23,.18); transform: rotate(2deg); }
.mini-temperature > div:first-child { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.mini-temperature strong { font-size: 32px; }
.temperature-line { position: relative; height: 44px; margin: 14px 0; border-bottom: 1px solid rgba(16,42,46,.14); }
.temperature-line::after { content: ""; position: absolute; inset: 18px 0 auto; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--sage) 0 77%, #e3ddd1 77%); }
.temperature-line i { position: absolute; z-index: 1; top: 13px; left: 75%; width: 13px; height: 13px; background: var(--sage); border: 3px solid white; border-radius: 50%; }
.mini-temperature small { color: #678074; }
.wide-card-copy { padding-left: 70px; }
.compliance-list { padding: 18px; background: rgba(255,255,255,.72); border-radius: 22px; }
.compliance-list div { display: flex; justify-content: space-between; gap: 30px; padding: 18px 16px; border-bottom: 1px solid rgba(16,42,46,.13); }
.compliance-list div:last-child { border: 0; }
.compliance-list b { color: #3e755a; font-size: 13px; }

.cockpit-section { padding: 140px 0; overflow: hidden; color: var(--ivory); background: var(--ink); }
.cockpit-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: center; }
.section-kicker-light { color: var(--gold); }
.cockpit-copy h2 { font-size: clamp(50px, 5vw, 78px); }
.cockpit-copy > p:not(.section-kicker) { margin: 28px 0 38px; color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.75; }
.cockpit-tabs { display: inline-flex; gap: 4px; padding: 5px; background: rgba(255,255,255,.07); border-radius: 999px; }
.cockpit-tabs button { padding: 10px 15px; border: 0; border-radius: 999px; color: rgba(255,255,255,.55); background: transparent; cursor: pointer; font-size: 12px; font-weight: 700; }
.cockpit-tabs button[aria-selected="true"] { color: var(--ink); background: var(--ivory); }
.dashboard { min-width: 680px; overflow: hidden; color: var(--ink); background: #f8f5ed; border: 8px solid rgba(255,255,255,.1); border-radius: 30px; box-shadow: 0 40px 100px rgba(0,0,0,.32); transform: rotate(1deg); }
.dashboard-topbar { height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; background: #fff; border-bottom: 1px solid rgba(16,42,46,.08); }
.dashboard-brand { display: flex; align-items: center; gap: 9px; font-family: "Fraunces", serif; }
.dashboard-brand img { border-radius: 9px; }
.dashboard-avatar { display: grid; place-items: center; width: 32px; height: 32px; color: white; background: var(--coral); border-radius: 50%; font-size: 10px; font-weight: 700; }
.dashboard-content { padding: 24px; }
.dashboard-greeting { display: flex; justify-content: space-between; align-items: center; }
.dashboard-greeting small, .metric-grid small, .pulse-card small { color: #738083; }
.dashboard-greeting h3 { margin: 5px 0 0; font-family: "Fraunces", serif; font-size: 25px; }
.status-pill { padding: 8px 12px; color: #4c765f; background: #dfede3; border-radius: 99px; font-size: 10px; font-weight: 700; }
.status-pill i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; background: #5c936f; border-radius: 50%; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin: 22px 0; }
.metric-grid > div { display: flex; flex-direction: column; padding: 15px; background: #fff; border: 1px solid rgba(16,42,46,.07); border-radius: 15px; }
.metric-grid strong { margin: 7px 0 2px; font-family: "Fraunces", serif; font-size: 27px; }
.metric-grid span { color: #5b8a70; font-size: 9px; }
.dashboard-bottom { display: grid; grid-template-columns: 1.25fr .75fr; gap: 12px; }
.action-list, .pulse-card { padding: 15px; background: white; border: 1px solid rgba(16,42,46,.07); border-radius: 15px; }
.action-list h4 { margin: 0 0 10px; font-size: 12px; }
.action-list > div { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-top: 1px solid rgba(16,42,46,.07); }
.action-list p { flex: 1; margin: 0; font-size: 10px; }
.action-list p small { display: block; margin-top: 3px; color: #859094; }
.action-list time { color: #859094; font-size: 8px; }
.action-check, .action-clock { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 8px; font-size: 10px; font-weight: 700; }
.action-check { color: #4d8265; background: #e0eee4; }
.action-clock { color: #c44e3c; background: #fde1db; }
.pulse-card svg { width: 100%; margin: 12px 0 0; }
.pulse-card strong { color: var(--coral); font-family: "Fraunces", serif; font-size: 22px; }

.automation { padding: 140px 0; }
.automation-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 0; margin: 0; list-style: none; }
.automation-flow li { min-height: 290px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; }
.automation-flow li > span { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 70px; color: var(--coral); border: 1px solid var(--coral); border-radius: 50%; font-size: 12px; font-weight: 700; }
.automation-flow h3 { margin: 0 0 12px; font-family: "Fraunces", serif; font-size: 28px; }
.automation-flow p { margin: 0; color: var(--muted); line-height: 1.6; }

.audience { padding: 80px 0; background: var(--coral); color: white; }
.audience .section-kicker { color: var(--ink); }
.audience-words { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.audience-words span { font-family: "Fraunces", serif; font-size: clamp(28px, 3vw, 48px); }
.audience-words i { width: 6px; height: 6px; background: var(--ink); border-radius: 50%; }

.pricing { padding: 140px 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 100px; align-items: center; }
.pricing-copy > p:not(.section-kicker) { max-width: 600px; margin-top: 30px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.price-card { padding: 38px; color: var(--ivory); background: var(--ink); border-radius: 30px; box-shadow: 0 30px 90px rgba(16,42,46,.2); }
.price-label { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.price { display: flex; align-items: end; gap: 16px; padding: 28px 0; margin: 12px 0 22px; border-bottom: 1px solid rgba(255,255,255,.13); }
.price strong { font-family: "Fraunces", serif; font-size: 58px; letter-spacing: -.04em; }
.price span { padding-bottom: 8px; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.4; }
.price-card > p { color: rgba(255,255,255,.6); line-height: 1.6; }
.price-card ul { padding: 16px 0; list-style: none; }
.price-card li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.price-card li::before { content: "✓"; margin-right: 10px; color: var(--sage); }
.price-card > small { display: block; margin-top: 14px; color: rgba(255,255,255,.42); text-align: center; line-height: 1.5; }

.faq { padding: 60px 0 150px; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.1fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 26px 48px 26px 0; cursor: pointer; list-style: none; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 21px; font-size: 24px; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 650px; margin: -4px 0 28px; color: var(--muted); line-height: 1.7; }

.closing { position: relative; overflow: hidden; padding: 140px 0; color: var(--ivory); background: var(--ink-deep); text-align: center; }
.closing-glow { position: absolute; top: -250px; left: 50%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(243,111,86,.2), transparent 67%); transform: translateX(-50%); }
.closing-inner { position: relative; }
.closing img { margin: 0 auto 24px; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,.32); }
.closing h2 { font-size: clamp(54px, 6vw, 88px); }
.closing > div p:not(.section-kicker):not(.form-message) { margin: 24px auto; color: rgba(255,255,255,.62); font-size: 18px; }
.waitlist { width: min(590px, 100%); display: flex; gap: 8px; margin: 32px auto 0; padding: 7px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; }
.waitlist input { min-width: 0; flex: 1; padding: 0 20px; color: white; background: transparent; border: 0; outline: 0; }
.waitlist input::placeholder { color: rgba(255,255,255,.42); }
.form-message { min-height: 24px; margin: 14px 0 0; color: var(--sage); font-size: 13px; }

.site-footer { padding: 50px 0; color: rgba(255,255,255,.54); background: #06171a; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 35px; align-items: center; }
.brand-light { color: var(--ivory); }
.footer-grid p, .footer-grid small { margin: 0; font-size: 12px; }
.footer-grid > div { display: flex; justify-content: flex-end; gap: 18px; font-size: 12px; }
.footer-grid small { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .navigation { position: fixed; inset: 72px 16px auto; display: none; flex-direction: column; align-items: stretch; padding: 24px; color: white; background: rgba(7,28,32,.98); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; }
  .navigation.is-open { display: flex; }
  .menu-toggle { display: block; }
  .hero { min-height: 850px; height: 100svh; }
  .hero-art { object-position: 62% center; opacity: .58; }
  .hero::after { background: linear-gradient(90deg, rgba(7,28,32,.92) 0, rgba(7,28,32,.66) 55%, rgba(7,28,32,.25)); }
  .hero-copy { width: min(630px, 92%); }
  .manifest-grid { grid-template-columns: 1fr; }
  .manifest-stamp { display: none; }
  .section-heading, .pricing-grid, .faq-grid, .cockpit-grid { grid-template-columns: 1fr; gap: 50px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-large, .feature-card-wide { grid-column: 1 / -1; }
  .dashboard { min-width: 0; }
  .automation-flow { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div { justify-content: flex-start; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 26px); --radius: 22px; }
  .nav-wrap { height: 72px; }
  .hero { min-height: 800px; }
  .hero-art { object-position: 68% center; }
  .hero-copy { width: 100%; padding-top: 20px; }
  h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .text-link { align-self: flex-start; }
  .hero-promise span:not(:first-child)::before { display: none; }
  .manifest, .solution, .automation, .pricing, .closing { padding-block: 90px; }
  .section-heading { margin-bottom: 44px; }
  .manifest-copy h2, .section-heading h2, .pricing h2, .faq h2, .cockpit-copy h2 { font-size: 44px; }
  .manifest-copy p { font-size: 17px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card-large, .feature-card-wide { grid-column: auto; min-height: 330px; display: block; }
  .feature-card-large { display: flex; flex-direction: column; justify-content: space-between; }
  .feature-card-wide { display: grid; grid-template-columns: 1fr; gap: 30px; }
  .wide-card-copy { padding-left: 0; }
  .mini-temperature { margin-top: 34px; }
  .dashboard { transform: none; }
  .dashboard-content { padding: 15px; }
  .metric-grid { grid-template-columns: 1fr; }
  .dashboard-bottom { grid-template-columns: 1fr; }
  .automation-flow { grid-template-columns: 1fr; }
  .automation-flow li { min-height: 220px; }
  .automation-flow li > span { margin-bottom: 45px; }
  .audience-words { justify-content: center; }
  .audience-words i { display: none; }
  .price-card { padding: 27px; }
  .price { align-items: flex-start; flex-direction: column; }
  .price strong { font-size: 49px; }
  .faq { padding-bottom: 100px; }
  .waitlist { flex-direction: column; padding: 8px; border-radius: 18px; }
  .waitlist input { min-height: 52px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
