/* Mobile hardening 2026-07-05: no horizontal pan (iOS), any-width embed guard */
html,body{overflow-x:hidden;overflow-x:clip;width:100%;overscroll-behavior-x:none}
iframe{max-width:100%!important}
/* menu cap: taller-than-viewport menus stay scrollable (2026-07-05) */
@media(max-width:820px){.nav-links{max-height:calc(100vh - 74px);max-height:calc(100dvh - 74px);overflow-y:auto;-webkit-overflow-scrolling:touch;overscroll-behavior:contain}}
/* ============================================================
   CONVAYRO - design system
   Editorial / premium. Forest green · terracotta · bone.
   Display: Fraunces. Body: Hanken Grotesk.
   ============================================================ */

:root {
  /* palette */
  --bg:        #F5F1E8;   /* warm bone / paper */
  --bg-2:      #EFE9DB;   /* slightly deeper paper for bands */
  --surface:   #FCFAF4;   /* cards */
  --ink:       #16201B;   /* near-black, green undertone */
  --ink-soft:  #2C3A33;
  --muted:     #5C6B62;   /* secondary text */
  --faint:     #8A968D;   /* tertiary / captions */
  --brand:     #133A30;   /* deep evergreen - primary */
  --brand-700: #0E2E26;
  --brand-900: #0A211B;   /* darkest - footer / cta band */
  --accent:    #C2613F;   /* terracotta / clay */
  --accent-700:#A84F30;
  --line:      rgba(22, 32, 27, 0.14);
  --line-soft: rgba(22, 32, 27, 0.08);
  --line-on-dark: rgba(245, 241, 232, 0.16);

  /* type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  /* scale */
  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 0.9vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 1.9vw, 3.1rem);
  --step-4:  clamp(2.7rem, 1.9rem + 3.6vw, 4.8rem);
  --step-5:  clamp(3.4rem, 2.2rem + 5.4vw, 6.4rem);

  /* layout */
  --maxw: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(10,33,27,.06), 0 2px 6px rgba(10,33,27,.05);
  --shadow-md: 0 8px 24px -10px rgba(10,33,27,.22), 0 2px 8px rgba(10,33,27,.06);
  --shadow-lg: 0 30px 60px -28px rgba(10,33,27,.36);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 88% -8%, rgba(19,58,48,.06), transparent 60%),
    radial-gradient(900px 520px at -5% 4%, rgba(194,97,63,.05), transparent 55%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
/* paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--brand); color: var(--bg); }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 460; line-height: 1.04; letter-spacing: -0.015em; color: var(--ink); font-optical-sizing: auto; }
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); line-height: 1.12; }
h4 { font-size: var(--step-1); line-height: 1.2; letter-spacing: -0.01em; }
p { text-wrap: pretty; }
strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

.serif { font-family: var(--display); }
.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); }
.muted { color: var(--muted); }

/* eyebrow / kicker */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--body); font-weight: 600;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-700);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--accent); display: inline-block;
}
.eyebrow.no-rule::before { display: none; }
.sec-index { font-family: var(--body); font-weight: 600; font-size: .74rem; letter-spacing: .16em; color: var(--faint); text-transform: uppercase; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 760px; }
main { position: relative; z-index: 2; }
section { position: relative; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.divider { border: 0; border-top: 1px solid var(--line); }
.stack > * + * { margin-top: 1.1rem; }
.eyebrow + h2, .eyebrow + h1 { margin-top: 1.1rem; }
.sec-head { max-width: 760px; }
.sec-head .lede { margin-top: 1.1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--body); font-weight: 650; font-size: 1.08rem; letter-spacing: .005em;
  padding: 1.02em 1.9em; border-radius: 999px;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  will-change: transform; line-height: 1;
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px -6px rgba(194,97,63,.55), var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--accent-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-on-dark { background: var(--bg); color: var(--brand-900); }
.btn-on-dark:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost-dark { border: 1.5px solid var(--line-on-dark); color: var(--bg); }
.btn-ghost-dark:hover { border-color: var(--bg); transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.textlink { color: var(--brand); font-weight: 600; border-bottom: 1.5px solid var(--accent); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.textlink:hover { color: var(--accent-700); }
.textlink .arrow { display: inline-block; transition: transform .3s var(--ease); }
.textlink:hover .arrow { transform: translateX(3px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 500; font-size: 1.4rem; letter-spacing: -0.02em; color: var(--ink); }
.brand .mark { width: 26px; height: 26px; flex: none; }
.brand b { font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-family: var(--body); font-weight: 500; font-size: .95rem; color: var(--ink-soft); position: relative; padding-block: .35rem; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--accent); transition: width .28s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: .8rem; }
/* Sign in: lives INSIDE .nav-links so it inherits the mobile menu. Putting it in
   .nav-cta would hit `.nav-cta .btn{display:none}` at 860px and vanish on mobile. */
.nav-links a.nav-signin { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: .42rem 1rem; font-size: .88rem; color: var(--ink); }
.nav-links a.nav-signin::after { display: none; }
.nav-links a.nav-signin:hover { border-color: var(--accent); color: var(--accent); }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: transform .3s var(--ease); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--brand); color: var(--bg); padding: .7rem 1.1rem; border-radius: 0 0 10px 0; z-index: 100; }
.skip-link:focus { left: 0; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin-top: 1.3rem; }
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero .lede { margin-top: 1.6rem; max-width: 30ch; }
.hero .btn-row { margin-top: 2.2rem; }
.hero-note { margin-top: 1.5rem; font-size: var(--step--1); color: var(--faint); display: flex; align-items: center; gap: .5rem; }
.hero-note svg { color: var(--brand); flex: none; }

/* conversation mock card */
.convo {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.convo::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 1px 0 rgba(255,255,255,.6); pointer-events: none; }
.convo-bar { display: flex; align-items: center; gap: .6rem; padding: .95rem 1.2rem; border-bottom: 1px solid var(--line-soft); background: linear-gradient(var(--bg-2), var(--surface)); }
.convo-bar .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--brand); color: var(--bg); display: grid; place-items: center; font-size: .8rem; }
.convo-bar .who { font-weight: 600; font-size: .92rem; }
.convo-bar .status { margin-left: auto; font-size: .72rem; color: var(--brand); display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }
.convo-bar .status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2f9e6b; box-shadow: 0 0 0 3px rgba(47,158,107,.18); }
.convo-body { padding: 1.3rem 1.2rem; display: flex; flex-direction: column; gap: .7rem; background:
  repeating-linear-gradient(0deg, transparent, transparent 27px, var(--line-soft) 27px, var(--line-soft) 28px); }
.bubble { max-width: 84%; padding: .7rem .95rem; border-radius: 16px; font-size: .92rem; line-height: 1.45; box-shadow: var(--shadow-sm); }
.bubble.them { align-self: flex-start; background: #fff; border: 1px solid var(--line-soft); border-bottom-left-radius: 5px; }
.bubble.us { align-self: flex-end; background: var(--brand); color: #EAF1EC; border-bottom-right-radius: 5px; }
.bubble .t { display: block; font-size: .66rem; letter-spacing: .04em; text-transform: uppercase; opacity: .6; margin-bottom: .25rem; font-weight: 600; }
.convo-foot { padding: .85rem 1.2rem; border-top: 1px solid var(--line-soft); font-size: .74rem; color: var(--faint); display: flex; align-items: center; gap: .5rem; }
.convo-foot svg { flex: none; color: var(--accent); }

/* floating tag on hero card */
.convo-wrap { position: relative; }
.convo-flag { position: absolute; right: -14px; top: 22px; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .5rem .8rem; border-radius: 10px; box-shadow: var(--shadow-md); transform: rotate(2.5deg); }

/* ---------- logo strip / integrations ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip-inner { display: flex; align-items: center; gap: 2.2rem; padding-block: 1.4rem; flex-wrap: wrap; }
.strip-label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { font-size: .85rem; font-weight: 600; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem; background: var(--surface); }

/* ---------- problem section ---------- */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.cost-list { margin-top: 1.6rem; }
.cost-list li { display: flex; gap: .85rem; padding: 1rem 0; border-top: 1px solid var(--line); align-items: baseline; }
.cost-list li:last-child { border-bottom: 1px solid var(--line); }
.cost-list .n { font-family: var(--display); font-size: 1.3rem; color: var(--accent); flex: none; width: 1.7em; }
.cost-list p { font-size: 1rem; }
.cost-list strong { display: block; }

/* ---------- services ---------- */
.cards { display: grid; gap: 1.1rem; }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.55rem; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--accent); transition: width .35s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--brand) 30%, var(--line)); }
.card:hover::before { width: 100%; }
.card .ic { width: 44px; height: 44px; border-radius: 11px; background: color-mix(in srgb, var(--brand) 10%, var(--surface)); color: var(--brand); display: grid; place-items: center; margin-bottom: 1.1rem; }
.card .ic svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.4rem; }
.card h4 { font-size: 1.22rem; margin-bottom: .1rem; }
.card p { margin-top: .55rem; color: var(--muted); font-size: .98rem; line-height: 1.55; }
.card .card-link { margin-top: auto; padding-top: 1.1rem; font-weight: 600; font-size: .9rem; color: var(--brand); display: inline-flex; align-items: center; gap: .4rem; }
.card .card-tag { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); font-weight: 700; margin-bottom: .7rem; }

/* feature list (checklist) */
.checks { display: grid; gap: .85rem; margin-top: 1.5rem; }
.checks.cols-2 { grid-template-columns: 1fr 1fr; gap: .85rem 2rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; line-height: 1.5; }
.checks .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); display: grid; place-items: center; margin-top: .12rem; }
.checks .tick svg { width: 13px; height: 13px; }

/* ---------- process / steps ---------- */
.steps { counter-reset: step; display: grid; gap: 0; margin-top: 2rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; padding: 1.8rem 0; border-top: 1px solid var(--line); position: relative; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step .num { counter-increment: step; font-family: var(--display); font-size: clamp(2.2rem,5vw,3.4rem); color: var(--brand); line-height: .9; opacity: .9; }
.step .num::before { content: "0" counter(step); }
.step h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.step p { color: var(--muted); max-width: 56ch; }
.step .when { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-700); font-weight: 700; margin-bottom: .35rem; }

/* ---------- compliance band / seal ---------- */
.band-dark { background: var(--brand-900); color: #E7EEE8; position: relative; overflow: hidden; }
.band-dark::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(700px 360px at 85% 10%, rgba(194,97,63,.16), transparent 60%), radial-gradient(620px 420px at 6% 100%, rgba(255,255,255,.05), transparent 55%); }
.band-dark .eyebrow { color: #E59A78; }
.band-dark .eyebrow::before { background: var(--accent); }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .lede, .band-dark p { color: #C7D2CA; }
.band-dark .sec-index { color: rgba(231,238,232,.5); }

.seal { width: 168px; height: 168px; flex: none; }
.compliance-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.principle { display: grid; gap: 1rem; margin-top: 1.6rem; }
.principle li { display: flex; gap: .9rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line-on-dark); }
.principle .pdot { flex: none; width: 30px; height: 30px; border-radius: 8px; background: rgba(194,97,63,.18); color: #E59A78; display: grid; place-items: center; }
.principle h4 { color: #fff; font-size: 1.12rem; margin-bottom: .2rem; }
.principle p { font-size: .92rem; color: #B9C5BC; }

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split.flip > :first-child { order: 2; }
.media-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-md); }

/* spec rows */
.specs { border-top: 1px solid var(--line); margin-top: 1.4rem; }
.specs .row { display: grid; grid-template-columns: 200px 1fr; gap: 1.4rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.specs dt { font-weight: 600; color: var(--ink); font-size: .92rem; }
.specs dd { color: var(--muted); font-size: .96rem; }

/* ---------- big stat / pull ---------- */
.pull { font-family: var(--display); font-size: var(--step-3); line-height: 1.18; letter-spacing: -.02em; max-width: 22ch; }
.pull .accent { color: var(--accent); }

/* ---------- cta band ---------- */
.cta-band { background: var(--brand); color: var(--bg); border-radius: var(--radius-lg); padding: clamp(2.4rem,5vw,4rem); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band::before { content:""; position:absolute; inset:0; opacity:.6; background: radial-gradient(600px 340px at 80% -10%, rgba(194,97,63,.28), transparent 60%), radial-gradient(520px 360px at 10% 120%, rgba(255,255,255,.08), transparent 55%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band .lede { color: #CBD7CE; max-width: 50ch; margin: 1.2rem auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ---------- breadcrumb ---------- */
.crumbs { padding-block: 1.4rem 0; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .82rem; color: var(--faint); }
.crumbs li { display: inline-flex; align-items: center; gap: .5rem; }
.crumbs li:not(:last-child)::after { content: "/"; color: var(--line); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }
.crumbs [aria-current] { color: var(--ink); }

/* page hero (inner) */
.page-hero { padding-top: clamp(1.5rem,4vw,2.5rem); padding-bottom: clamp(2rem,5vw,3.5rem); }
.page-hero h1 { font-size: var(--step-4); max-width: 16ch; margin-top: 1.1rem; }
.page-hero .lede { margin-top: 1.4rem; max-width: 60ch; }

/* ---------- FAQ ---------- */
.faq { margin-top: 2rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.35rem 3rem 1.35rem 0; position: relative; font-family: var(--display); font-size: var(--step-1); letter-spacing: -.01em; color: var(--ink); transition: color .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary::after { content: ""; position: absolute; right: 2px; top: 1.7rem; width: 16px; height: 16px; background: var(--accent); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .answer { padding: 0 3rem 1.5rem 0; color: var(--muted); }
.faq .answer p + p { margin-top: .8rem; }

/* ---------- prose (legal / long form) ---------- */
.prose { max-width: 720px; }
.prose h2 { font-size: var(--step-2); margin-top: 2.6rem; margin-bottom: .9rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8rem; margin-bottom: .6rem; }
.prose p { margin-top: 1rem; color: var(--ink-soft); }
.prose ul { margin-top: 1rem; display: grid; gap: .6rem; }
.prose ul li { position: relative; padding-left: 1.4rem; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 2px; background: var(--accent); }
.prose a { color: var(--brand); border-bottom: 1.5px solid var(--accent); }
.prose strong { color: var(--ink); }

/* ---------- forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.form { display: grid; gap: 1.05rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow-md); }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .88rem; color: var(--ink); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 10px;
  padding: .8rem .9rem; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(19,58,48,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.form .btn { width: 100%; }
.form .fineprint { font-size: .78rem; color: var(--faint); line-height: 1.5; }
.hp { position: absolute; left: -9999px; }
.contact-side .stack > * + * { margin-top: 1.4rem; }
.contact-method { display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-method .ic { flex: none; width: 38px; height: 38px; border-radius: 10px; background: color-mix(in srgb, var(--brand) 10%, var(--surface)); color: var(--brand); display: grid; place-items: center; }
.contact-method h4 { font-size: 1.05rem; }
.contact-method p, .contact-method a { font-size: .94rem; color: var(--muted); }
.contact-method a:hover { color: var(--brand); }

/* note / callout */
.note { border-left: 3px solid var(--accent); background: var(--bg-2); border-radius: 0 12px 12px 0; padding: 1.1rem 1.3rem; font-size: .92rem; color: var(--ink-soft); }
.note strong { color: var(--ink); }

/* tag pill */
.pill { display: inline-flex; align-items: center; gap: .45rem; font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); background: color-mix(in srgb, var(--brand) 9%, var(--surface)); border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent); border-radius: 999px; padding: .35rem .8rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--brand-900); color: #C7D2CA; margin-top: clamp(3rem,7vw,6rem); position: relative; z-index: 2; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-block: clamp(3rem,5vw,4.5rem) clamp(2rem,4vw,3rem); }
.footer-brand .brand { color: #fff; }
.footer-brand .brand .mark path { stroke: #fff; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: .92rem; color: #A9B6AD; }
.footer-col h5 { font-family: var(--body); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: #8FA095; font-weight: 700; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .94rem; color: #C7D2CA; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-on-dark); padding-block: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .82rem; color: #8FA095; }
.footer-bottom .disclaimer { max-width: 60ch; }
.footer-cta-btn { margin-top: 1.5rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* hero load animation */
.hero .ld { opacity: 0; transform: translateY(16px); animation: rise .8s var(--ease) forwards; }
.hero .ld.l1 { animation-delay: .05s; }
.hero .ld.l2 { animation-delay: .15s; }
.hero .ld.l3 { animation-delay: .25s; }
.hero .ld.l4 { animation-delay: .35s; }
.hero .ld.l5 { animation-delay: .5s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero .ld { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .btn, .card, .nav-links a::after { transition: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .convo-wrap { max-width: 460px; }
  .hero .lede { max-width: 46ch; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: fixed; inset: 74px 0 auto 0; background: var(--bg);
    border-bottom: 1px solid var(--line); padding: 1rem var(--gutter) 1.6rem; z-index: 49;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav-links.open a::after { display: none; }
  .nav-links.open .btn { display: inline-flex; margin-top: 1rem; }
  .nav-links.open a.nav-signin { width: auto; margin-top: 1rem; padding: .6rem 1.2rem; border: 1px solid var(--line); }
  .problem-grid, .compliance-grid, .split, .contact-grid, .cards.cols-2, .cards.cols-3, .checks.cols-2 { grid-template-columns: 1fr; }
  .split.flip > :first-child { order: 0; }
  .specs .row { grid-template-columns: 1fr; gap: .3rem; }
  .field-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: .5rem; }
  .step .num { font-size: 2.4rem; }
}
@media (max-width: 520px) {
  .convo-flag { right: 6px; }
  .btn-row .btn { width: 100%; }
  .hero .btn-row { gap: .7rem; }
}

/* ---------- cookie consent ---------- */
.cookie-bar { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 80; max-width: 580px; margin-inline: auto; background: var(--brand-900); color: #E7EEE8; border: 1px solid var(--line-on-dark); border-radius: 16px; padding: 1.05rem 1.15rem; box-shadow: var(--shadow-lg); display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.cookie-bar p { font-size: .85rem; color: #C7D2CA; flex: 1; min-width: 210px; margin: 0; line-height: 1.45; }
.cookie-bar .cookie-actions { display: flex; gap: .55rem; }
.cookie-bar .btn { padding: .6em 1.15em; font-size: .85rem; }
.cookie-bar[hidden] { display: none; }
@media (max-width: 520px){ .cookie-bar{ left:.6rem; right:.6rem; bottom:.6rem; } .cookie-bar .cookie-actions{ width:100%; } .cookie-bar .cookie-actions .btn{ flex:1; } }
