/* =========================================================================
   CaptureRelay — capturerelay.app
   Design system + one-page landing styles. Dependency-free.
   Brand: red #D40B0F / #A6070A · ink #1C1C1C · surface #F7F5F4
   ========================================================================= */

:root {
  /* Brand */
  --red:        #D40B0F;
  --red-strong: #A6070A;
  --red-soft:   #F9E8E9;
  --ink:        #16130F;
  --ink-2:      #1C1C1C;

  /* A charcoal panel that stays dark in BOTH themes (security band, footer). */
  --panel-dark: #1C1C1C;
  --panel-dark-2: #141110;

  /* Neutrals */
  --bg:         #FFFFFF;
  --surface:    #F7F5F4;
  --surface-2:  #F1EDEB;
  --line:       #E7E0DD;
  --line-2:     #D8CFCB;
  --text:       #241F1C;
  --muted:      #6B615C;
  --muted-2:    #8B807A;

  /* Accents used in illustrations / status */
  --green:      #177245;
  --amber:      #B26A00;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
    "Liberation Mono", monospace;

  /* Rhythm */
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 40px);
  --radius: 16px;
  --radius-lg: 26px;
  --radius-sm: 10px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(22, 19, 15, .06), 0 2px 6px rgba(22, 19, 15, .05);
  --shadow-md: 0 10px 30px rgba(22, 19, 15, .09), 0 3px 8px rgba(22, 19, 15, .05);
  --shadow-lg: 0 30px 70px rgba(22, 19, 15, .16), 0 8px 20px rgba(22, 19, 15, .08);
  --shadow-red: 0 14px 30px rgba(212, 11, 15, .28);

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

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #0E0D0C;
    --surface:   #161413;
    --surface-2: #1D1A18;
    --line:      #2C2825;
    --line-2:    #3A342F;
    --text:      #F4EFEC;
    --muted:     #B8ADA6;
    --muted-2:   #8E837C;
    --ink:       #F4EFEC;
    --ink-2:     #F4EFEC;
    /* Panels stay dark; nudged slightly off the page bg so they read as raised. */
    --panel-dark: #1A1613;
    --panel-dark-2: #221D19;
    --red-soft:  #2A1516;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow-md: 0 12px 34px rgba(0,0,0,.5);
    --shadow-lg: 0 34px 80px rgba(0,0,0,.6);
  }
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--red); color: #fff; }

h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -.02em; margin: 0; font-weight: 800; color: var(--ink); }
p { margin: 0; }

/* ---------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 120px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red-strong);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }

.section-head { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { font-size: clamp(28px, 4.4vw, 44px); margin-top: 16px; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: clamp(16px, 2vw, 19px); }

.lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); }

/* --------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--red);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 16px; cursor: pointer;
  background: var(--btn-bg); color: #fff; box-shadow: var(--shadow-red);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  will-change: transform; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(212,11,15,.34); background: var(--red-strong); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  background: transparent; color: var(--ink); box-shadow: none; border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--line-2); transform: translateY(-2px); }
.btn--lg { padding: 17px 30px; font-size: 17px; }
.btn--block { width: 100%; }

/* Store badges (custom, on-brand) */
.store-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px 8px 12px; border-radius: 13px;
  background: var(--ink-2); color: #fff; border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: var(--shadow-sm);
}
@media (prefers-color-scheme: dark) { .store-badge { background: #000; border-color: var(--line-2); } }
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.store-badge svg { width: 22px; height: 22px; flex: none; fill: #fff; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge .sb-top { font-size: 10px; letter-spacing: .02em; opacity: .82; }
.store-badge .sb-bot { font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.store-badge[aria-disabled="true"] { opacity: .82; cursor: default; }
/* Coming-soon badges: shown but not yet clickable, with a caption below. */
.store-badge-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.store-badge.is-soon { cursor: default; }
.store-badge.is-soon:hover { transform: none; box-shadow: var(--shadow-sm); }
.store-soon { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--red-strong); }
.store-soon span { color: var(--muted); font-weight: 600; letter-spacing: .01em; text-transform: none; }
.store-badge .sb-soon {
  margin-left: 6px; font-size: 10px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 7px; border-radius: 999px;
  background: rgba(255,255,255,.14); align-self: center;
}

/* -------------------------------------------------------------- Chips/pills */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: var(--surface); border: 1px solid var(--line); color: var(--muted);
}
.pill svg { width: 15px; height: 15px; }
.pill--red { background: var(--red-soft); color: var(--red-strong); border-color: transparent; }

.badge-price {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-weight: 800; color: var(--ink);
}

/* ================================================================= HEADER */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 22px; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.nav__logo img { height: 30px; width: auto; }
.nav__logo .nav__logo-dark { display: none; }
@media (prefers-color-scheme: dark) {
  .nav__logo .nav__logo-light { display: none; }
  .nav__logo .nav__logo-dark { display: block; }
}
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 14px; border-radius: 999px; font-size: 15px; font-weight: 600; color: var(--muted);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: var(--surface); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; }

@media (max-width: 1280px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav { gap: 12px; }
  .nav__cta .btn { padding: 11px 16px; font-size: 15px; }
}
@media (max-width: 420px) {
  .nav__cta .btn { padding: 10px 14px; font-size: 14px; }
  .nav__logo img { height: 32px !important; }
}

/* ================================================================== HERO */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 72px); }
.hero__glow {
  position: absolute; inset: -30% -10% auto -10%; height: 680px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 60% at 20% 10%, rgba(212,11,15,.16), transparent 60%),
    radial-gradient(50% 50% at 90% 0%, rgba(212,11,15,.10), transparent 55%);
}
.hero .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.hero__title {
  font-size: clamp(34px, 5.6vw, 62px); line-height: 1.02; letter-spacing: -.03em; margin-top: 22px;
}
.hero__title .accent { color: var(--red); }
.hero__sub { margin-top: 22px; max-width: 540px; }
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__meta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.hero__meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--line-2); }
.hero__meta span { font-size: 14px; color: var(--muted); font-weight: 600; display: inline-flex; gap: 7px; align-items: center; }
.hero__meta svg { width: 16px; height: 16px; color: var(--green); }

.hero__visual { position: relative; display: flex; justify-content: center; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__meta { justify-content: center; }
  .hero .eyebrow { justify-content: center; }
  .hero__visual { margin-top: 10px; }
}

/* -------------------------------------------------------- Phone mockup */
.phone {
  position: relative; width: min(310px, 78vw); aspect-ratio: 305 / 620;
  border-radius: 46px; padding: 12px;
  background: linear-gradient(160deg, #2a2724, #111 60%);
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone::after { /* notch */
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 26px; border-radius: 999px; background: #0a0908; z-index: 3;
}
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: var(--surface); box-shadow: inset 0 0 0 1px rgba(0,0,0,.5);
}
.phone__screen img, .phone__screen svg { width: 100%; height: 100%; object-fit: cover; }
.phone--float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.phone-back {
  position: absolute; z-index: -1; top: 40px; left: 50%;
  transform: translateX(-40%) scale(.86) rotate(-6deg); filter: blur(.4px); opacity: .7;
}

/* floating stat cards around hero phone */
.float-card {
  position: absolute; z-index: 4; background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 14px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 14px;
}
.float-card small { display: block; font-size: 12px; font-weight: 600; color: var(--muted); }
.float-card .fc-ico {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none;
  background: var(--red-soft); color: var(--red-strong);
}
.float-card .fc-ico svg { width: 18px; height: 18px; }
.float-card--a { top: 16%; left: -8%; animation: floaty 7s ease-in-out infinite; }
.float-card--b { bottom: 14%; right: -10%; animation: floaty 6.5s ease-in-out .8s infinite; }
@media (max-width: 520px) { .float-card--a { left: -2%; } .float-card--b { right: -2%; } }

/* --------------------------------------------------------- Trust strip */
.trust { border-block: 1px solid var(--line); background: var(--surface); }
.trust__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-block: 32px; }
.trust__label { margin: 0; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); text-align: center; }
.trust__items { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px clamp(20px, 4vw, 40px); }
.trust__item { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--muted); font-size: 15px; }
.trust__item svg { width: 20px; height: 20px; color: var(--red); }

/* ------------------------------------------------------------- Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.feature__ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(150deg, var(--red), var(--red-strong)); color: #fff; box-shadow: var(--shadow-red);
}
.feature__ico svg { width: 23px; height: 23px; }
.feature h3 { font-size: 20px; margin-bottom: 9px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* --------------------------------------------------------- How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
}
.step__n {
  counter-increment: step; display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 18px;
  background: var(--ink-2); color: #fff; font-weight: 800; font-size: 18px;
}
.step__n::before { content: counter(step, decimal-leading-zero); }
@media (prefers-color-scheme: dark) { .step__n { background: var(--red); } }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15.5px; }
.step__arrow { position: absolute; top: 44px; right: -16px; color: var(--line-2); z-index: 2; }
@media (max-width: 820px) { .step__arrow { display: none; } }

/* --------------------------------------------------------- Showcase rows */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 72px); align-items: center; }
.showcase + .showcase { margin-top: clamp(56px, 8vw, 104px); }
.showcase--flip .showcase__media { order: -1; }
@media (max-width: 860px) {
  .showcase, .showcase--flip { grid-template-columns: 1fr; }
  .showcase--flip .showcase__media { order: 0; }
}
.showcase h2 { font-size: clamp(26px, 3.6vw, 38px); margin-top: 16px; }
.showcase p.lead { margin-top: 18px; }
.showcase__list { margin-top: 24px; display: grid; gap: 14px; }
.showcase__list li { display: flex; gap: 13px; align-items: flex-start; list-style: none; }
.showcase__list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 999px; display: grid; place-items: center; margin-top: 1px;
  background: var(--red-soft); color: var(--red-strong);
}
.showcase__list .tick svg { width: 14px; height: 14px; }
.showcase__list b { color: var(--ink); font-weight: 700; }
.showcase__list span { color: var(--muted); }
.showcase__media { position: relative; }

/* framed illustration panel */
.panel {
  border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-md);
}
.panel img, .panel svg { width: 100%; height: auto; display: block; }
.panel--pad { padding: 22px; }

/* --------------------------------------------------------- Use cases */
.usecases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 960px) { .usecases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usecases { grid-template-columns: 1fr; } }
.usecase {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--bg); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.usecase:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usecase__img { aspect-ratio: 16/11; position: relative; }
.usecase__img img, .usecase__img svg { width: 100%; height: 100%; object-fit: cover; }
.usecase__tag {
  position: absolute; top: 12px; left: 12px; padding: 5px 11px; border-radius: 999px;
  background: rgba(0,0,0,.62); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .03em;
  backdrop-filter: blur(4px);
}
.usecase__body { padding: 20px; }
.usecase__body h3 { font-size: 18px; margin-bottom: 7px; }
.usecase__body p { color: var(--muted); font-size: 14.5px; }

/* --------------------------------------------------------- Security band */
.security { background: var(--panel-dark); color: #EFE9E6; overflow: hidden; position: relative; }
.security::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 85% 10%, rgba(212,11,15,.22), transparent 60%);
}
.security .container { position: relative; z-index: 1; }
.security h2 { color: #fff; }
.security .section-head p { color: #C7BDB7; }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .security-grid { grid-template-columns: 1fr; } }
.sec-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 24px;
}
.sec-card__ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(212,11,15,.16); color: #FF6b6f; }
.sec-card__ico svg { width: 21px; height: 21px; }
.sec-card h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.sec-card p { color: #B9AFA9; font-size: 14.5px; }
.sec-note { margin-top: 26px; font-size: 14px; color: #A99F99; text-align: center; }
.sec-note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------- Plugin block */
.plugin { }
.plugin__card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px);
}
@media (max-width: 820px) { .plugin__card { grid-template-columns: 1fr; } }
.plugin__flow { display: grid; gap: 14px; }
.flow-node {
  display: flex; align-items: center; gap: 14px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px; box-shadow: var(--shadow-sm);
}
.flow-node .fn-ico { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red-strong); }
.flow-node .fn-ico svg { width: 20px; height: 20px; }
.flow-node b { display: block; font-size: 15.5px; color: var(--ink); }
.flow-node small { color: var(--muted); font-size: 13px; }
.flow-arrow { display: grid; place-items: center; color: var(--line-2); }

/* --------------------------------------------------------- Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 860px; margin-inline: auto; }
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }
.price-card {
  position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
}
.price-card--feature { border-color: var(--red); box-shadow: var(--shadow-md); }
.price-card__flag {
  position: absolute; top: -13px; left: 30px; padding: 5px 13px; border-radius: 999px;
  background: var(--red); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .04em; box-shadow: var(--shadow-red);
}
.price-card h3 { font-size: 20px; }
.price-card .amt { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 4px; }
.price-card .amt .n { font-size: 46px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.price-card .amt .u { color: var(--muted); font-weight: 600; }
.price-card .sub { color: var(--muted); font-size: 14.5px; }
.price-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: 15px; }
.price-list .tick { flex: none; width: 22px; height: 22px; border-radius: 999px; display: grid; place-items: center;
  background: var(--red-soft); color: var(--red-strong); margin-top: 1px; }
.price-list .tick svg { width: 13px; height: 13px; }

/* --------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 4px; display: flex; align-items: center; gap: 16px;
  font-weight: 700; font-size: 18px; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .q { flex: 1; }
.faq__item summary .chev {
  flex: none; width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center;
  border: 1px solid var(--line-2); color: var(--muted); transition: transform .3s var(--ease), background .2s, color .2s;
}
.faq__item[open] summary .chev { transform: rotate(45deg); background: var(--red); color: #fff; border-color: var(--red); }
.faq__item summary .chev svg { width: 14px; height: 14px; }
.faq__answer { padding: 0 4px 24px; color: var(--muted); font-size: 16px; max-width: 68ch; }
.faq__answer a { color: var(--red-strong); text-decoration: underline; text-underline-offset: 2px; }

/* --------------------------------------------------------- Contact / CTA */
.contact { background: var(--surface); border-top: 1px solid var(--line); }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__aside h2 { font-size: clamp(26px, 3.6vw, 40px); margin-top: 14px; }
.contact__aside p { color: var(--muted); margin-top: 16px; }
.contact__points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 16px; }
.contact__points li { display: flex; gap: 13px; align-items: flex-start; }
.contact__points .ci { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--bg); border: 1px solid var(--line); color: var(--red-strong); }
.contact__points .ci svg { width: 18px; height: 18px; }
.contact__points b { display: block; color: var(--ink); }
.contact__points span { color: var(--muted); font-size: 14.5px; }

.form-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; color: var(--ink); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line-2);
  background: var(--surface); color: var(--text); font-size: 16px; font-family: inherit;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: var(--bg);
  box-shadow: 0 0 0 4px var(--red-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
/* honeypot — visually removed but present for bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.form-consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--red); flex: none; }
.form-consent a { color: var(--red-strong); text-decoration: underline; text-underline-offset: 2px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-size: 14.5px; font-weight: 600; display: none; }
.form-status.is-ok { display: block; background: color-mix(in srgb, var(--green) 12%, transparent); color: var(--green); border: 1px solid color-mix(in srgb, var(--green) 30%, transparent); }
.form-status.is-err { display: block; background: var(--red-soft); color: var(--red-strong); border: 1px solid color-mix(in srgb, var(--red) 30%, transparent); }
.form-privacy { font-size: 12.5px; color: var(--muted-2); margin-top: 14px; text-align: center; display: inline-flex; gap: 7px; align-items: center; justify-content: center; width: 100%; }
.form-privacy svg { width: 14px; height: 14px; color: var(--green); }

/* --------------------------------------------------------- Footer */
.site-footer { background: var(--panel-dark); color: #C7BDB7; padding-block: clamp(48px, 6vw, 72px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { text-align: center; }
.footer-brand img { margin: 0 auto 18px; }
.footer-brand p { color: #A99F99; font-size: 14.5px; max-width: 34ch; margin-inline: auto; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: #B9AFA9; font-size: 15px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col .footer-soon { display: block; color: #B9AFA9; font-size: 15px; padding: 6px 0; }
.footer-col .footer-soon em { font-style: normal; font-size: 12px; color: #8A7F77; margin-left: 6px; }
.footer-badges { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 13.5px; color: #94897F;
}
.footer-bottom a { color: #B9AFA9; }
.footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------- Reveal anim */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --------------------------------------------------------- Mobile menu */
.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg); align-items: center; justify-content: center; cursor: pointer; color: var(--ink);
}
.nav__toggle svg { width: 22px; height: 22px; }
@media (max-width: 1280px) { .nav__toggle { display: inline-flex; } }
.mobile-menu {
  position: fixed; inset: 72px 0 auto 0; z-index: 55; background: var(--bg);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.mobile-menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { display: block; padding: 15px var(--gutter); font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin: 16px var(--gutter); width: calc(100% - 2*var(--gutter)); }

/* --------------------------------------------------------- Utility */
.text-center { text-align: center; }
.mt-cta { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.legal-page { max-width: 780px; }
.legal-page h1 { font-size: clamp(30px, 5vw, 44px); }
.legal-page h2 { font-size: 22px; margin-top: 36px; margin-bottom: 10px; }
.legal-page p, .legal-page li { color: var(--muted); margin-top: 14px; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--red-strong); text-decoration: underline; text-underline-offset: 2px; }
.legal-meta { color: var(--muted-2); font-size: 14px; margin-top: 8px; }
