:root {
  --deep: #173e32;
  --deepest: #0d2b23;
  --green: #2e6b56;
  --green-soft: #d9e9e1;
  --green-pale: #edf4f0;
  --clay: #d98d63;
  --sand: #eee4d6;
  --canvas: #f4f1e9;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #142720;
  --muted: #607068;
  --line: rgba(20, 39, 32, 0.14);
  --shadow: 0 28px 70px rgba(23, 62, 50, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid #7cae98; outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px; border-radius: 8px; background: white; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 64px, 1440px);
  min-height: 82px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.wordmark { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-size: 0.98rem; font-weight: 800; letter-spacing: -0.03em; }
.brand-mark { display: flex; align-items: flex-end; justify-content: center; gap: 2px; width: 31px; height: 31px; padding: 7px; border-radius: 10px 10px 10px 3px; background: linear-gradient(145deg, #9bc7b3, #df9c75); }
.brand-mark i { display: block; width: 3px; border-radius: 3px; background: var(--deepest); }
.brand-mark i:nth-child(1) { height: 7px; }.brand-mark i:nth-child(2) { height: 15px; }.brand-mark i:nth-child(3) { height: 10px; }
.site-header nav { display: flex; gap: 34px; color: #435b52; font-size: 0.82rem; font-weight: 700; }
.site-header nav a, footer nav a { transition: color 150ms ease; }
.site-header nav a:hover, footer nav a:hover { color: var(--green); }
.header-login { justify-self: end; display: inline-flex; align-items: center; gap: 13px; font-size: 0.83rem; font-weight: 800; }

.hero {
  display: grid;
  grid-template-columns: minmax(470px, 0.94fr) minmax(540px, 1.06fr);
  align-items: center;
  gap: clamp(52px, 5vw, 82px);
  width: min(100% - 64px, 1440px);
  min-height: 730px;
  margin: 0 auto;
  padding: 72px 0 86px;
}
.hero-copy { position: relative; z-index: 2; max-width: 650px; }
.overline { margin-bottom: 22px; color: var(--green); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.17em; text-transform: uppercase; }
.overline-light { color: #9bcab3; }
.hero h1 { margin-bottom: 28px; font-size: clamp(3.75rem, 4.65vw, 5.15rem); font-weight: 650; letter-spacing: -0.065em; line-height: 0.96; }
.hero h1 span { display: block; margin-top: 0.08em; color: var(--green); }
.hero-lede { max-width: 590px; margin-bottom: 34px; color: var(--muted); font-size: clamp(1.04rem, 1.4vw, 1.2rem); line-height: 1.68; }
.hero-actions { display: flex; align-items: center; gap: 12px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 28px; padding: 0 21px; border: 1px solid transparent; border-radius: 11px; font-size: 0.84rem; font-weight: 800; transition: transform 150ms ease, background 150ms ease, border-color 150ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--deep); color: white; box-shadow: 0 12px 26px rgba(23, 62, 50, 0.16); }
.button-primary:hover { background: var(--deepest); }
.button-secondary { border-color: var(--line); background: rgba(255, 255, 255, 0.38); color: var(--ink); }
.button-secondary:hover { border-color: rgba(23, 62, 50, 0.34); background: white; }
.button-light { background: white; color: var(--deep); }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 27px 0 0; padding: 0; color: #53665e; font-size: 0.72rem; list-style: none; }
.hero-assurances li { display: flex; align-items: center; gap: 9px; }
.hero-assurances li span { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 0.66rem; font-weight: 900; }

.hero-product { position: relative; display: grid; min-height: 575px; place-items: center; }
.hero-glow { position: absolute; width: 94%; height: 80%; border-radius: 48% 52% 42% 58%; background: linear-gradient(145deg, rgba(180, 215, 198, 0.72), rgba(217, 141, 99, 0.28)); filter: blur(2px); transform: rotate(-5deg); }
.landing-login { position: relative; z-index: 2; width: min(100%, 530px); scroll-margin-top: 28px; padding: clamp(28px, 4vw, 46px); border: 1px solid rgba(23, 62, 50, 0.15); border-radius: 24px; background: rgba(251, 250, 246, 0.97); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.landing-login header { margin-bottom: 28px; }
.login-kicker { display: block; margin-bottom: 13px; color: var(--green); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.landing-login h2 { margin-bottom: 12px; font-size: clamp(2rem, 3vw, 2.65rem); letter-spacing: -0.055em; line-height: 1; }
.landing-login header p { max-width: 420px; margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.55; }
.landing-login form { display: grid; grid-template-columns: 1fr; gap: 10px; }
.landing-login form > label:not(.check-option) { margin-top: 5px; font-size: 0.72rem; font-weight: 800; }
.landing-login input:not([type="checkbox"]) { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 10px; background: white; color: var(--ink); outline: none; transition: border-color 150ms ease, box-shadow 150ms ease; }
.landing-login input:not([type="checkbox"]):focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(46, 107, 86, 0.12); }
.login-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 6px 0 8px; }
.check-option { display: grid; grid-template-columns: auto 1fr; gap: 9px; align-items: start; padding: 11px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255, 255, 255, 0.56); cursor: pointer; }
.check-option input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--green); }
.check-option span { display: grid; gap: 3px; }
.check-option strong { font-size: 0.68rem; line-height: 1.25; }
.check-option small { color: var(--muted); font-size: 0.58rem; font-weight: 500; line-height: 1.35; }
.login-submit, .passkey-submit { min-height: 50px; border-radius: 10px; font-size: 0.78rem; font-weight: 800; cursor: pointer; transition: background 150ms ease, border-color 150ms ease, opacity 150ms ease; }
.login-submit { border: 1px solid var(--deep); background: var(--deep); color: white; }
.login-submit:hover { background: var(--deepest); }
.passkey-submit { border: 1px solid var(--line); background: white; color: var(--ink); }
.passkey-submit:hover { border-color: rgba(23, 62, 50, 0.36); }
.login-submit:disabled, .passkey-submit:disabled { cursor: wait; opacity: 0.62; }
.login-error { margin: 0 0 2px; padding: 10px 12px; border-radius: 9px; background: #f5ded5; color: #733d2b; font-size: 0.7rem; line-height: 1.45; }
.login-privacy { margin: 16px 0 0; color: var(--muted); font-size: 0.63rem; text-align: center; }
.dashboard-card { position: relative; z-index: 2; width: min(100%, 680px); overflow: hidden; border: 1px solid rgba(23, 62, 50, 0.14); border-radius: 24px; background: rgba(251, 250, 246, 0.98); box-shadow: var(--shadow); }
.dashboard-header { display: flex; align-items: center; justify-content: space-between; padding: 15px 19px; border-bottom: 1px solid var(--line); }
.dashboard-wordmark { display: flex; align-items: center; gap: 7px; font-size: 0.72rem; }
.brand-mark-small { width: 24px; height: 24px; padding: 5px; gap: 2px; border-radius: 8px 8px 8px 2px; }
.brand-mark-small i { width: 2px; }.brand-mark-small i:nth-child(1) { height: 5px; }.brand-mark-small i:nth-child(2) { height: 11px; }.brand-mark-small i:nth-child(3) { height: 7px; }
.demo-badge { padding: 6px 9px; border-radius: 999px; background: #eceee9; color: #68756f; font-size: 0.55rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.dashboard-content { padding: 28px; }
.dashboard-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.dashboard-title div { display: grid; gap: 4px; }
.dashboard-title span { color: var(--muted); font-size: 0.62rem; }
.dashboard-title h2 { margin: 0; font-size: 1.43rem; letter-spacing: -0.04em; }
.period-control { padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; background: white; }
.score-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.score-row article { display: grid; min-height: 105px; align-content: space-between; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.score-row article:first-child { border-color: rgba(46, 107, 86, 0.23); background: var(--green-soft); }
.score-row span, .score-row small { color: var(--muted); font-size: 0.59rem; }
.score-row strong { font-size: 1.65rem; letter-spacing: -0.04em; }
.chart-card { margin-top: 10px; padding: 15px 15px 10px; border-radius: 14px; background: var(--deep); color: white; }
.chart-head { display: flex; align-items: center; justify-content: space-between; }
.chart-head strong { font-size: 0.68rem; }.chart-head span { color: #9eb6ac; font-size: 0.54rem; }
.chart-area { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); align-items: end; gap: 10px; height: 112px; margin: 10px 0 4px; padding: 0 8px; }
.grid-line { position: absolute; z-index: 0; right: 0; left: 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }.line-one { top: 20%; }.line-two { top: 50%; }.line-three { top: 80%; }
.bar { position: relative; z-index: 1; justify-self: center; width: 60%; border-radius: 5px 5px 2px 2px; background: var(--clay); opacity: 0.84; }.b1{height:42%}.b2{height:74%}.b3{height:48%}.b4{height:82%}.b5{height:61%}.b6{height:40%}.b7{height:46%}
.energy-point { position: absolute; z-index: 2; width: 8px; height: 8px; border: 2px solid var(--deep); border-radius: 50%; background: #a4d3bc; }.p1{left:8%;top:39%}.p2{left:22%;top:56%}.p3{left:36%;top:31%}.p4{left:50%;top:64%}.p5{left:64%;top:44%}.p6{left:78%;top:25%}.p7{left:92%;top:34%}
.chart-days { display: grid; grid-template-columns: repeat(7, 1fr); color: #94aaa1; font-size: 0.5rem; text-align: center; }
.finding-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; margin-top: 10px; padding: 13px 14px; border: 1px solid #e2d5cc; border-radius: 12px; background: #f8eee7; }
.finding-label { padding: 5px 7px; border-radius: 6px; background: var(--clay); color: white; font-size: 0.54rem; font-weight: 850; text-transform: uppercase; }
.finding-card p { margin: 0; color: #5e4b40; font-size: 0.62rem; line-height: 1.4; }
.finding-link { color: #704b37; font-size: 0.56rem; font-weight: 800; white-space: nowrap; }

.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; padding: 0 max(32px, calc((100vw - 1440px) / 2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(251, 250, 246, 0.62); }
.proof-strip div { display: grid; gap: 5px; padding: 25px 32px; border-right: 1px solid var(--line); }.proof-strip div:first-child { padding-left: 0; }.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { font-size: 0.78rem; }.proof-strip span { color: var(--muted); font-size: 0.69rem; line-height: 1.45; }

.section { width: min(100% - 64px, 1320px); margin: 0 auto; padding: 132px 0; }
.section-heading { max-width: 850px; margin-bottom: 60px; }
.section-heading h2, .access-copy h2, .privacy-heading h2, .final-cta h2 { margin-bottom: 24px; font-size: clamp(3.1rem, 5vw, 5.4rem); font-weight: 630; letter-spacing: -0.065em; line-height: 0.98; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); font-size: 1rem; line-height: 1.68; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.feature-card { display: flex; min-height: 510px; flex-direction: column; overflow: hidden; padding: 25px; border: 1px solid var(--line); border-radius: 20px; }
.feature-green { background: var(--green-pale); }.feature-dark { background: var(--deep); color: white; }.feature-sand { background: var(--sand); }
.feature-preview { height: 255px; margin-bottom: 30px; border-radius: 15px; }
.feature-index { margin-bottom: 12px; color: var(--green); font-size: 0.65rem; font-weight: 850; }.feature-dark .feature-index { color: #9bcab3; }
.feature-card h3 { margin-bottom: 13px; font-size: 1.45rem; letter-spacing: -0.04em; }.feature-card > p:last-child { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.62; }.feature-dark > p:last-child { color: #b9cac2; }
.capture-preview { display: grid; align-content: center; gap: 22px; padding: 28px; background: rgba(255, 255, 255, 0.76); box-shadow: 0 16px 32px rgba(23, 62, 50, 0.08); }
.capture-preview > div:first-child { display: grid; gap: 3px; }.capture-preview span { color: var(--muted); font-size: 0.62rem; }.capture-preview strong { font-size: 1.1rem; }
.scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }.scale i { height: 34px; border: 1px solid var(--line); border-radius: 8px; background: white; }.scale i.selected { border-color: var(--green); background: var(--green); }
.capture-preview .preview-action { width: max-content; padding: 9px 11px; border-radius: 8px; background: var(--deep); color: white; font-weight: 750; }
.pattern-preview { display: grid; align-content: center; padding: 28px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.05); }
.pattern-axis { display: grid; grid-template-columns: repeat(5, 1fr); color: #98aea4; font-size: 0.58rem; text-align: center; }.pattern-bars { display: grid; grid-template-columns: repeat(5, 1fr); align-items: end; gap: 12px; height: 135px; margin: 12px 0 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }.pattern-bars i { width: 72%; justify-self: center; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--clay), #9bcab3); }.pattern-bars i:nth-child(1){height:35%}.pattern-bars i:nth-child(2){height:79%}.pattern-bars i:nth-child(3){height:47%}.pattern-bars i:nth-child(4){height:86%}.pattern-bars i:nth-child(5){height:55%}
.pattern-note { display: flex; align-items: center; gap: 7px; color: #c6d4ce; font-size: 0.58rem; }.pattern-note span { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }
.report-preview { display: flex; flex-direction: column; padding: 31px; background: white; box-shadow: 0 18px 34px rgba(92, 65, 49, 0.1); transform: rotate(-1.5deg); }.report-kicker { color: var(--green); font-size: 0.59rem; font-weight: 800; text-transform: uppercase; }.report-preview strong { margin: 8px 0 25px; font-size: 1.16rem; }.report-preview i { width: 100%; height: 6px; margin-bottom: 11px; border-radius: 6px; background: #dfe3df; }.report-preview i:nth-of-type(2){width:81%}.report-preview i:nth-of-type(3){width:63%}.report-status { width: max-content; margin-top: auto; padding: 7px 9px; border-radius: 7px; background: var(--green-soft); color: var(--green); font-size: 0.58rem; font-weight: 800; }

.access-section { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(60px, 8vw, 130px); align-items: center; padding: 132px max(32px, calc((100vw - 1320px) / 2)); background: var(--deepest); color: white; }
.access-copy { max-width: 560px; }.access-copy > p:not(.overline) { margin-bottom: 33px; color: #b9cac2; line-height: 1.72; }
.access-panel { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 21px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2); }
.access-panel > header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }.access-panel > header div { display: grid; gap: 4px; }.access-panel > header span { color: var(--muted); font-size: 0.64rem; }.access-panel > header strong { font-size: 1rem; }
.demo-badge-dark { background: var(--deep); color: white !important; }
.access-entry { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 13px 15px; align-items: center; padding: 21px 24px; border-bottom: 1px solid var(--line); }
.access-avatar { display: grid; width: 41px; height: 41px; place-items: center; border-radius: 12px; background: var(--green-soft); color: var(--green); font-size: 0.68rem; font-weight: 850; }.access-avatar-clay { background: #f2dfd3; color: #8b5438; }
.access-details { display: grid; gap: 4px; }.access-details strong { font-size: 0.82rem; }.access-details span { overflow: hidden; color: var(--muted); font-size: 0.65rem; text-overflow: ellipsis; white-space: nowrap; }
.access-state { padding: 6px 8px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-size: 0.58rem; font-weight: 800; }.access-state-time { background: #eee9df; color: #755a48; }
.access-stop { grid-column: 2 / -1; width: max-content; color: #89503a; font-size: 0.61rem; font-weight: 800; }
.access-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 24px; background: #f0eee8; color: var(--muted); font-size: 0.62rem; }.access-foot span:last-child { color: var(--deep); font-weight: 800; }

.compact-heading { max-width: 920px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.audience-grid article { min-height: 270px; padding: 30px 32px 30px 0; border-right: 1px solid var(--line); }.audience-grid article + article { padding-left: 32px; }.audience-grid article:last-child { border-right: 0; }
.audience-grid article > span { color: var(--green); font-size: 0.67rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }.audience-grid h3 { margin: 58px 0 14px; font-size: 1.55rem; line-height: 1.1; letter-spacing: -0.04em; }.audience-grid p { color: var(--muted); font-size: 0.85rem; line-height: 1.62; }

.privacy-section { padding: 132px max(32px, calc((100vw - 1320px) / 2)); background: var(--deep); color: white; }
.privacy-heading { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px 100px; align-items: end; margin-bottom: 65px; }.privacy-heading .overline { grid-column: 1 / -1; margin-bottom: -10px; }.privacy-heading h2 { margin: 0; }.privacy-heading > p:last-child { max-width: 610px; margin: 0; color: #bdccc5; line-height: 1.72; }
.privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255, 255, 255, 0.16); }
.privacy-grid article { display: grid; grid-template-columns: 44px 1fr; gap: 20px; min-height: 190px; padding: 30px 30px 30px 0; border-right: 1px solid rgba(255, 255, 255, 0.16); border-bottom: 1px solid rgba(255, 255, 255, 0.16); }.privacy-grid article:nth-child(even) { padding-left: 30px; border-right: 0; }
.privacy-number { color: #91c5ac; font-size: 0.66rem; font-weight: 850; }.privacy-grid h3 { margin-bottom: 11px; font-size: 1.18rem; }.privacy-grid h3 small { margin-left: 7px; padding: 5px 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); color: #b8ccc2; font-size: 0.52rem; font-weight: 800; text-transform: uppercase; }.privacy-grid p { max-width: 470px; margin: 0; color: #b9cac2; font-size: 0.84rem; line-height: 1.62; }

.final-cta { display: grid; min-height: 630px; place-items: center; align-content: center; padding: 100px 32px; text-align: center; }.final-cta h2 { margin-bottom: 20px; font-size: clamp(4rem, 7.2vw, 7.4rem); }.final-cta > p:not(.overline) { margin-bottom: 32px; color: var(--muted); }.final-actions { justify-content: center; }

footer { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 26px; width: min(100% - 64px, 1440px); margin: 0 auto; padding: 36px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.72rem; } footer p { margin: 0; text-align: center; } footer nav { display: flex; gap: 20px; } footer small { grid-column: 1 / -1; color: #7c8882; }

@media (max-width: 1160px) {
  .site-header { grid-template-columns: 1fr auto; }.site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 72px; }.hero-copy { max-width: 780px; }.hero-product { min-height: 570px; }.landing-login { width: min(92%, 620px); }.dashboard-card { width: min(92%, 760px); }
  .feature-grid { grid-template-columns: 1fr; }.feature-card { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 350px; gap: 0 36px; }.feature-preview { grid-row: 1 / 4; height: 300px; margin: 0; }.feature-index { align-self: end; }.feature-card h3 { align-self: end; }
  .access-section { gap: 50px; }
}

@media (max-width: 820px) {
  .site-header, .hero, .section, footer { width: min(100% - 36px, 1320px); }.site-header { min-height: 72px; }
  .hero { min-height: auto; padding: 64px 0 78px; }.hero h1 { font-size: clamp(3.4rem, 11.5vw, 5.1rem); }.hero-product { min-height: 520px; }.landing-login, .dashboard-card { width: 100%; }.dashboard-content { padding: 20px; }
  .proof-strip { grid-template-columns: 1fr; padding: 0 18px; }.proof-strip div { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }.proof-strip div:last-child { border-bottom: 0; }
  .section { padding: 94px 0; }.section-heading h2, .access-copy h2, .privacy-heading h2 { font-size: clamp(2.8rem, 11vw, 4.4rem); }
  .feature-card { display: flex; min-height: 510px; }.feature-preview { height: 270px; margin-bottom: 28px; }
  .access-section { grid-template-columns: 1fr; padding: 94px 22px; }.access-copy { max-width: 680px; }
  .audience-grid { grid-template-columns: 1fr; }.audience-grid article, .audience-grid article + article { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }.audience-grid h3 { margin-top: 30px; }
  .privacy-section { padding: 94px 22px; }.privacy-heading { grid-template-columns: 1fr; gap: 20px; }.privacy-heading .overline { grid-column: auto; margin-bottom: 0; }.privacy-grid { grid-template-columns: 1fr; }.privacy-grid article, .privacy-grid article:nth-child(even) { min-height: 0; padding: 26px 0; border-right: 0; }
  footer { grid-template-columns: 1fr; } footer p { text-align: left; } footer small { grid-column: auto; }
}

@media (max-width: 560px) {
  .site-header { width: calc(100% - 28px); }.header-login { font-size: 0.74rem; }.header-login span { display: none; }
  .hero { width: calc(100% - 28px); }.hero h1 { font-size: clamp(3rem, 14.2vw, 4.3rem); }.hero h1 br { display: none; }.hero-actions { align-items: stretch; flex-direction: column; }.button { width: 100%; }.hero-assurances { display: grid; margin-top: 24px; }
  .hero-product { min-height: 545px; }.hero-glow { width: 100%; height: 70%; }.landing-login { padding: 25px 20px; border-radius: 17px; }.landing-login header { margin-bottom: 22px; }.login-options { grid-template-columns: 1fr; }.dashboard-card { border-radius: 17px; }.dashboard-header { padding: 11px 13px; }.dashboard-content { padding: 13px; }.dashboard-title { align-items: flex-start; flex-direction: column; gap: 10px; }.score-row { grid-template-columns: 1fr 1fr; }.score-row article:last-child { display: none; }.score-row article { min-height: 88px; }.chart-area { height: 88px; }.finding-card { grid-template-columns: auto 1fr; }.finding-link { display: none; }
  .section { width: calc(100% - 28px); }.section-heading { margin-bottom: 42px; }.feature-card { min-height: 480px; padding: 20px; }.feature-preview { height: 250px; }.capture-preview, .pattern-preview, .report-preview { padding: 22px; }
  .access-panel > header, .access-entry, .access-foot { padding-right: 16px; padding-left: 16px; }.access-entry { grid-template-columns: auto minmax(0, 1fr); }.access-state { grid-column: 2; width: max-content; }.access-stop { grid-column: 2; }.access-foot { align-items: flex-start; flex-direction: column; }
  .privacy-grid article { grid-template-columns: 32px 1fr; gap: 12px; }.privacy-grid h3 small { display: inline-block; margin-top: 7px; margin-left: 0; }
  .final-cta { min-height: 560px; padding: 80px 18px; }.final-cta h2 { font-size: clamp(3.5rem, 16vw, 5rem); }.final-actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
