/* Kessa — marketing homepage + legal pages (deploys to the kessa-home Netlify site only).
   Plain CSS, no build step. v2 identity: Lane B "warm berry" (chosen July 19, 2026).
   Brand tokens:
   berry #7E2F52 · coral #F2917D · cocoa ink #2E242B · rose grey #6B5E64 · linen #FAF6F1 · blush #F5EBE6
   Base is white; sections breathe via barely-there warm tint bands. Headlines stay ink;
   color goes to accents, CTAs and data elements. Design law: no red — ever.
   Page copy is locked to docs/homepage-spec.md + the approved new-strings list
   (Jul 19, 2026) — words change there first; pricing + about copy is locked to
   the 2026-07-27 brief (same rule). Legal page words are attorney-approved
   and never change here. */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("fonts/general-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("fonts/general-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("fonts/general-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Literata";
  src: url("fonts/literata-italic-600.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #2E242B;
  --ink-80: rgba(46, 36, 43, .82);
  --mist: #6B5E64;
  --berry: #7E2F52;
  --berry-deep: #682744;
  --coral: #F2917D;
  --linen: #FAF6F1;
  --blush: #F5EBE6;
  --hairline: rgba(46, 36, 43, .14);
  --radius: 16px;
  --font-display: "Bricolage Grotesque", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "General Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Literata", Georgia, serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; background: #FFFFFF; }

body {
  background: #FFFFFF;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  font-weight: 400;
}

a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--berry); }

:focus-visible { outline: 2px solid var(--berry); outline-offset: 3px; border-radius: 6px; }

strong, b { font-weight: 600; }
p + p { margin-top: 1rem; }

.shellwrap { max-width: 71.25rem; margin: 0 auto; padding: 0 1.5rem; }

/* ===== Scroll reveals ===== */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* ===== Nav ===== */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.375rem 0; }
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -.01em;
  text-decoration: none;
}
.nav-right { display: flex; align-items: center; gap: 1.375rem; }
.nav-signin {
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  padding: .625rem .25rem;
}
.nav-signin:hover { color: var(--berry); text-decoration: underline; text-underline-offset: 3px; }
.nav-link {
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  padding: .625rem .25rem;
}
.nav-link:hover { color: var(--berry); text-decoration: underline; text-underline-offset: 3px; }
.nav-cta {
  display: inline-block;
  background: var(--berry);
  color: #fff;
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1.2;
  text-decoration: none;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--berry-deep); color: #fff; transform: translateY(-1px); }

@media (max-width: 479px) {
  /* Phones: the nav CTA hides — each page's own CTA sits below; links tighten up. */
  .nav .nav-cta { display: none; }
  .nav-right { gap: .875rem; }
}

/* ===== Buttons ===== */
.cta {
  display: inline-block;
  background: var(--berry);
  color: #fff;
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.2;
  text-decoration: none;
  padding: 1.0625rem 2.125rem;
  border-radius: 999px;
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.cta:hover {
  background: var(--berry-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(126, 47, 82, .24);
}

/* ===== Hero ===== */
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; padding: 4rem 0 6.5rem; }

.l { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.go .l { opacity: 1; transform: none; }
.l1 { transition-delay: .05s } .l2 { transition-delay: .17s } .l3 { transition-delay: .29s }
.l4 { transition-delay: .41s } .l5 { transition-delay: .5s } .l6 { transition-delay: .28s }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 4.6vw, 4.125rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.subhead { margin-top: 1.375rem; max-width: 32rem; font-size: 1.1875rem; color: var(--mist); }

.chiplabel { margin-top: 2.25rem; font-size: .9375rem; font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: .875rem; }
.chip {
  display: inline-flex; align-items: center; min-height: 46px;
  border: 1px solid var(--hairline); border-radius: 999px;
  background: #fff; padding: .625rem 1.125rem;
  font-size: .9688rem; font-weight: 500; text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.chip:hover { border-color: var(--berry); background: var(--linen); transform: translateY(-1px); color: var(--ink); }

.ctarow { margin-top: 1.75rem; }
.microline { margin-top: 1rem; font-size: .8438rem; color: var(--mist); }

/* ===== Phone mockup (coded — matches the app's redesign tokens) ===== */
.stagearea { position: relative; display: flex; justify-content: center; }
.disc {
  position: absolute; width: min(520px, 90vw); height: min(520px, 90vw); border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, var(--linen) 0%, rgba(242, 145, 125, .16) 58%, rgba(255, 255, 255, 0) 72%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0;
}
.phone {
  position: relative; z-index: 1; width: 300px; background: #fff;
  border: 1px solid var(--hairline); border-radius: 44px;
  padding: 1.375rem 1.25rem 1.25rem;
  box-shadow: 0 30px 70px rgba(46, 36, 43, .16);
}
.appbar { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .875rem; }
.appbar .mark { font-family: var(--font-display); font-weight: 700; font-size: .9375rem; }
.phone h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.375rem; letter-spacing: -.015em; margin-bottom: .875rem; }

.arcwrap { position: relative; width: 176px; margin: 0 auto; }
.arc { display: block; width: 176px; height: 176px; }
.arc .track { stroke: var(--blush); stroke-width: 10; fill: none; stroke-linecap: round; }
.arc .fill {
  stroke: var(--berry); stroke-width: 10; fill: none; stroke-linecap: round;
  stroke-dasharray: 329.9; stroke-dashoffset: 329.9;
  transition: stroke-dashoffset 1.6s var(--ease) .7s;
}
.go .arc .fill { stroke-dashoffset: 143.9; }
.arcnum { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.arcnum .big { font-family: var(--font-display); font-weight: 700; font-size: 2.5rem; line-height: 1; }
.arcnum .of { font-size: .875rem; color: var(--mist); margin-top: .25rem; }
.togo { text-align: center; font-size: .875rem; color: var(--mist); margin: .625rem 0 1.125rem; }

.pchips { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1rem; }
.pchip { border: 1px solid var(--hairline); border-radius: 999px; background: #fff; padding: .5rem .875rem; font-size: .8125rem; font-weight: 500; }
.prow {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--linen); border-radius: 14px; padding: .6875rem .875rem;
  font-size: .875rem; font-weight: 500; margin-bottom: 1rem; min-height: 44px; gap: .75rem;
}
.pswitch { width: 38px; height: 22px; border-radius: 999px; background: var(--hairline); position: relative; flex: none; }
.pswitch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(46, 36, 43, .24); }
.pswitch.on { background: var(--berry); }
.pswitch.on::after { left: 19px; }
.pbtn {
  display: block; width: 100%; text-align: center; background: var(--berry); color: #fff;
  border: 0; border-radius: 999px; padding: .875rem; font-family: var(--font-body);
  font-weight: 600; font-size: .9375rem; cursor: pointer; transition: background .2s ease;
}
.pbtn:hover { background: var(--berry-deep); }

/* ===== Section scaffolding ===== */
.section { padding: 6rem 0; }
.band { background: var(--linen); }
.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.section .sectionlede { margin-top: 1rem; color: var(--mist); max-width: 38rem; }

/* ===== Stat (the one cleared number — the editorial serif moment) ===== */
.statsec { text-align: center; }
.statsec .inner { max-width: 46rem; margin: 0 auto; }
.stat-figure {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(5rem, 13vw, 8.5rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--berry);
  margin-bottom: 1.5rem;
}
.statsec h2 { margin-bottom: 1.5rem; }
.statsec p { font-size: 1.1875rem; color: var(--ink-80); text-align: left; }
.statsec .hl { font-family: var(--font-serif); font-style: italic; color: var(--berry); }
.note {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.125rem 1.25rem;
  margin-top: 1.75rem;
  font-size: .9375rem;
  line-height: 1.6;
  text-align: left;
}

/* ===== Feature clusters ===== */
.clusterintro { padding-bottom: 0; }
.cluster { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; padding: 4.5rem 0; }
.cluster:first-of-type { padding-top: 3.5rem; }
.cluster.flip .ctext { order: 2; }
.cluster.flip .cvisual { order: 1; }
.ctext h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  line-height: 1.15;
  letter-spacing: -.018em;
  text-wrap: balance;
}
.ctext p { margin-top: 1rem; font-size: 1.125rem; color: var(--mist); max-width: 30rem; }

.cvisual { position: relative; display: flex; justify-content: center; }
.uicard {
  width: min(360px, 100%);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.375rem 1.25rem;
  box-shadow: 0 24px 56px rgba(46, 36, 43, .12);
}
.uicard .utitle { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; letter-spacing: -.012em; margin-bottom: .875rem; }
.urow {
  display: flex; justify-content: space-between; align-items: center; gap: .75rem;
  border-top: 1px solid var(--hairline); padding: .75rem .125rem; font-size: .9063rem; min-height: 44px;
}
.urow:first-of-type { border-top: 0; padding-top: 0; }
.urow .g { font-weight: 600; white-space: nowrap; }
.usearch {
  display: flex; align-items: center; gap: .625rem;
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: .6875rem 1rem; color: var(--mist); font-size: .9063rem; margin-bottom: .75rem;
}
.usearch::before { content: ""; width: 14px; height: 14px; border: 2px solid var(--mist); border-radius: 50%; box-shadow: 4px 5px 0 -3px var(--mist); flex: none; }
.uaction {
  display: block; width: 100%; text-align: center; background: var(--berry); color: #fff;
  border: 0; border-radius: 999px; padding: .8125rem; font-weight: 600; font-size: .9063rem; margin-top: .875rem;
}
.ubadge {
  display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--berry); margin-bottom: .5rem;
}
.ubig { font-family: var(--font-display); font-weight: 700; font-size: 1.875rem; letter-spacing: -.02em; margin-bottom: .375rem; }
.uline { color: var(--mist); font-size: .9375rem; }
.uchips { display: flex; flex-wrap: wrap; gap: .5rem; }
.uchips .pchip.sel { border-color: var(--berry); background: var(--linen); }
.ucardline { margin-top: .875rem; background: var(--linen); border-radius: 12px; padding: .75rem .875rem; font-size: .9063rem; }

.floatchip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(46, 36, 43, .14);
  padding: .625rem 1rem;
  font-size: .8438rem;
  font-weight: 500;
}
.floatchip.tl { top: 6%; left: 0; }
.floatchip.br { bottom: 8%; right: 0; }

/* ===== Made for her ===== */
.mfh { display: grid; grid-template-columns: .95fr 1.05fr; gap: 4.5rem; align-items: center; }
.mfh .mtext p { margin-top: 1.125rem; font-size: 1.1875rem; color: var(--mist); max-width: 30rem; }

/* Photography (approved Jul 19 — QA-gated; aspirational lifestyle, never member/testimonial) */
.photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 24px 56px rgba(46, 36, 43, .14);
}
.photo.p1, .photo.p2 { max-width: 26rem; justify-self: center; }

/* ===== How it works ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.75rem; }
.step {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.5rem;
}
.step::before { content: ""; display: block; width: 12px; height: 12px; border-radius: 50%; background: var(--coral); margin-bottom: 1.125rem; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -.012em; margin-bottom: .5rem; }
.step p { color: var(--mist); font-size: 1rem; }

/* ===== Trust ===== */
.trustgrid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4.5rem; align-items: center; }
.trustgrid .lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  line-height: 1.15;
  letter-spacing: -.018em;
  text-wrap: balance;
}
.trustgrid p:not(.lead) { margin-top: 1.125rem; font-size: 1.125rem; color: var(--mist); max-width: 30rem; }

/* ===== FAQ ===== */
.faq { max-width: 46rem; }
.faq h2 { margin-bottom: 2rem; }
.faq details { border-top: 1px solid var(--hairline); }
.faq details:last-of-type { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem .25rem;
  font-weight: 600; font-size: 1.0625rem; min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 10px; height: 10px;
  border-right: 2px solid var(--berry); border-bottom: 2px solid var(--berry);
  transform: rotate(45deg); transition: transform .25s var(--ease); margin-right: .25rem;
}
.faq details[open] summary::after { transform: rotate(225deg); }
.faq details p { padding: 0 .25rem 1.25rem; color: var(--mist); max-width: 40rem; }

/* ===== Final CTA ===== */
.finale { text-align: center; }
.finale .inner { max-width: 46rem; margin: 0 auto; }
.finale .chips { justify-content: center; }
.finale .chiplabel { margin-top: 0; }
.finale .ctarow { margin-top: 2rem; }

/* ===== Footer ===== */
footer { border-top: 1px solid var(--hairline); font-size: .9375rem; color: var(--mist); }
.footer-inner { padding: 3rem 0 4rem; }
.footer-links a { color: var(--ink); }
.footer-disclaimer { margin-top: 1.5rem; background: var(--linen); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 1.125rem 1.25rem; font-size: .9063rem; line-height: 1.6; }
.footer-meta { margin-top: 1.5rem; }
.footer-meta p + p { margin-top: .25rem; }

/* ===== Legal pages (/terms, /privacy, /refund) ===== */
.wrap { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem 1rem; }
.legal { padding: 3rem 0 4rem; }
.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 7vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -.02em;
}
/* Legal page body — layout only; the words are attorney-approved and never change here. */
.legal-updated { margin-top: 1rem; color: var(--mist); }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3125rem, 5vw, 1.5rem);
  letter-spacing: -.012em;
  margin-top: 2.75rem;
  margin-bottom: .875rem;
}
.legal ul { margin-top: 1rem; padding-left: 1.375rem; }
.legal li + li { margin-top: .625rem; }
.legal p + ul, .legal ul + p { margin-top: 1rem; }

/* ===== Pricing (locked strings from the 2026-07-27 brief; words change there first) ===== */
.pricing-head { max-width: 46rem; }
.pricing-head h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -.022em;
  text-wrap: balance;
}
.pricing-anchor { margin-top: 1.25rem; font-size: 1.1875rem; color: var(--ink-80); }

.plans { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.75rem; align-items: stretch; }
@media (min-width: 700px) { .plans { grid-template-columns: 1fr 1fr; } }
.plan {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.875rem 1.625rem;
}
.plan-annual {
  border: 2px solid var(--berry);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--linen) 100%);
  box-shadow: 0 24px 56px rgba(46, 36, 43, .12);
}
.plan-name { font-size: .875rem; font-weight: 600; letter-spacing: .04em; color: var(--berry); }
.plan-price {
  margin-top: .625rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.plan-price .plan-per {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.0625rem;
  letter-spacing: 0;
  color: var(--mist);
}
.plan-save { margin-top: .375rem; font-size: .9375rem; font-weight: 600; color: var(--berry); }
.plan-terms { list-style: none; margin: 1.25rem 0 1.5rem; padding: 0; }
.plan-terms li { border-top: 1px solid var(--hairline); padding: .75rem 0; font-size: .9375rem; color: var(--ink-80); }
.plan-terms li:last-of-type { border-bottom: 1px solid var(--hairline); }
.plan-cta { margin-top: auto; text-align: center; }
.plan-cta-quiet {
  background: #fff;
  color: var(--berry);
  border: 2px solid var(--berry);
  padding: calc(1.0625rem - 2px) 2.125rem;
}
.plan-cta-quiet:hover {
  background: var(--linen);
  color: var(--berry-deep);
  border-color: var(--berry-deep);
  box-shadow: none;
}

/* The guarantee reads at body size, full width — never fine print. */
.guarantee {
  margin-top: 1.25rem;
  background: var(--linen);
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.5rem 1.625rem;
}

.included { margin-top: 3.5rem; max-width: 46rem; }
.included-lead { font-size: 1.125rem; font-weight: 600; }
.included-list { list-style: none; margin-top: 1rem; padding: 0; }
.included-list li { position: relative; padding: .5rem 0 .5rem 1.375rem; color: var(--ink-80); }
.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.notbuying { margin-top: 3.5rem; max-width: 46rem; }
/* h2 on the standalone page (h1-rooted), h3 inside the homepage section (h2-rooted) —
   same size either way; the level only serves the document outline. */
.notbuying h2,
.notbuying h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -.012em;
  margin-bottom: .75rem;
}
.notbuying p { color: var(--ink-80); }

/* ===== FAQ shown open (pricing page) — answers are served text, no disclosure ===== */
.faqopen { max-width: 46rem; }
.faqopen h2 { margin-bottom: 1rem; }
.faqopen .qa { border-top: 1px solid var(--hairline); padding: 1.375rem 0; }
.faqopen .qa:last-of-type { border-bottom: 1px solid var(--hairline); padding-bottom: 1.75rem; }
.faqopen h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.0625rem; }
.faqopen .qa p { margin-top: .625rem; color: var(--mist); max-width: 40rem; }

/* ===== About ===== */
.about { padding: 3rem 0 4rem; }
.about .page-title { margin-bottom: 1.5rem; }
.about-photo {
  max-width: 20rem;
  aspect-ratio: 1000 / 1241;
  object-fit: cover;
  background: var(--blush);
  margin-bottom: 2.25rem;
}
.about p + p, .about p + ol, .about ol + p { margin-top: 1.25rem; }
.about ol { padding-left: 1.5rem; }
.about ol li + li { margin-top: .5rem; }
.fbn-note { margin-top: 3rem; font-size: .8438rem; color: var(--mist); }

/* ===== Not found (404) ===== */
.notfound { padding: 4.5rem 0 6rem; }
.notfound p { margin-top: 1rem; color: var(--mist); }
.notfound-links { list-style: none; margin-top: 1.75rem; padding: 0; }
.notfound-links li + li { margin-top: .625rem; }

/* ===== Responsive ===== */
@media (min-width: 640px) {
  body { font-size: 1.125rem; }
}

@media (max-width: 919px) {
  .hero { grid-template-columns: 1fr; gap: 3.5rem; padding: 2.5rem 0 4.5rem; }
  .stagearea { order: 2; }
  .disc { width: min(400px, 90vw); height: min(400px, 90vw); }
  .section { padding: 4rem 0; }
  .cluster { grid-template-columns: 1fr; gap: 2.25rem; padding: 3rem 0; }
  .cluster.flip .ctext { order: 1; }
  .cluster.flip .cvisual { order: 2; }
  .floatchip.tl { top: -4%; }
  .floatchip.br { bottom: -4%; }
  .mfh { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps { grid-template-columns: 1fr; }
  .trustgrid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== Reduced motion: everything lands settled ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .l, .rv { opacity: 1 !important; transform: none !important; }
  .arc .fill { stroke-dashoffset: 143.9 !important; }
}
