/* ============================================================
   Naturpay — the embeddable checkout for developers
   Dark warm industrial DA · prefix wv-
   Fonts: Big Shoulders Display (display) · Familjen Grotesk (body) · Red Hat Mono (code)
   ============================================================ */

:root {
  /* palette — warm dark */
  --bg:        #16120f;   /* warm black */
  --bg-2:      #1c1714;   /* slightly raised */
  --surface:   #241d18;   /* card surface */
  --surface-2: #2c241d;   /* raised card */
  --line:      #3a2f26;   /* hairline */
  --line-2:    #4a3b2e;   /* stronger hairline */
  --bone:      #efe7da;   /* bone text */
  --bone-dim:  #c3b6a4;   /* secondary text */
  --bone-mute: #8f8474;   /* tertiary / labels */
  --rust:      #c2410c;   /* primary accent */
  --rust-lit:  #e2570f;   /* hover / brighter rust */
  --amber:     #e0a458;   /* soft amber, sparing */
  --amber-dim: #b9863f;
  --good:      #6fae7a;   /* muted green for status dots only */

  --radius:   4px;        /* marked, square-ish edges */
  --radius-lg: 8px;
  --shell: 1200px;

  --mono: "Red Hat Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --body: "Familjen Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --disp: "Big Shoulders Display", "Familjen Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--rust); color: #fff; }

.wv-shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 28px; }

/* ---------- display type ---------- */
h1, h2, h3 { font-family: var(--disp); font-weight: 700; line-height: 1.02; letter-spacing: 0.01em; text-transform: uppercase; margin: 0; }
h1 { font-size: clamp(2.7rem, 6vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.18rem; letter-spacing: 0.02em; }
h1 em, h2 em { font-style: normal; color: var(--rust); }
p { margin: 0 0 1rem; }

.wv-eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--amber);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.wv-eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--rust); display: inline-block; }

.wv-lede { font-size: 1.16rem; color: var(--bone-dim); max-width: 56ch; }
.wv-section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.wv-section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.wv-head-block { max-width: 62ch; margin-bottom: 3rem; }

/* ---------- buttons ---------- */
.wv-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.78rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer; transition: all .16s ease;
  white-space: nowrap;
}
.wv-btn--solid { background: var(--rust); color: #fff; border-color: var(--rust); }
.wv-btn--solid:hover { background: var(--rust-lit); border-color: var(--rust-lit); transform: translateY(-1px); }
.wv-btn--ghost { background: transparent; color: var(--bone); border-color: var(--line-2); }
.wv-btn--ghost:hover { border-color: var(--rust); color: var(--rust); }
.wv-btn--lg { padding: 0.95rem 1.7rem; font-size: 1rem; }
.wv-btn--sm { padding: 0.55rem 1rem; font-size: 0.84rem; }
.wv-btn--wide { width: 100%; justify-content: center; }
.wv-btn svg { width: 16px; height: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.wv-head { position: sticky; top: 0; z-index: 60; background: rgba(22,18,15,0.7); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, background .2s; }
.wv-head.is-stuck { border-bottom-color: var(--line); background: rgba(22,18,15,0.94); }
.wv-head__bar { display: flex; align-items: center; gap: 1.6rem; height: 70px; }

.wv-logo { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--disp); font-weight: 700; font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.03em; }
.wv-logo em { font-style: normal; color: var(--rust); }
.wv-logo__mark { width: 26px; height: 26px; flex: none; }

.wv-nav { display: flex; gap: 0.85rem; margin-left: 0.5rem; }
.wv-nav a { font-family: var(--mono); font-size: 0.78rem; white-space: nowrap; color: var(--bone-dim); letter-spacing: 0.01em; transition: color .15s; position: relative; padding: 0.2rem 0; }
.wv-nav a:hover { color: var(--bone); }
.wv-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--rust); transition: width .18s; }
.wv-nav a:hover::after { width: 100%; }

.wv-head__act { margin-left: auto; display: flex; align-items: center; gap: 0.7rem; }
.wv-login { font-family: var(--mono); font-size: 0.86rem; color: var(--bone-dim); white-space: nowrap; }
.wv-login:hover { color: var(--bone); }

/* language selector */
.wv-lang { position: relative; }
.wv-lang__btn { display: inline-flex; align-items: center; gap: 0.4rem; background: transparent; border: 1px solid var(--line-2); color: var(--bone-dim); border-radius: var(--radius); padding: 0.42rem 0.6rem; font-family: var(--mono); font-size: 0.78rem; cursor: pointer; transition: border-color .15s, color .15s; }
.wv-lang__btn:hover { border-color: var(--rust); color: var(--bone); }
.wv-lang__btn svg { width: 14px; height: 14px; }
.wv-lang__chev { transition: transform .18s; }
.wv-lang.open .wv-lang__chev { transform: rotate(180deg); }
.wv-lang__menu { position: absolute; top: calc(100% + 6px); right: 0; min-width: 148px; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 5px; display: none; flex-direction: column; gap: 1px; z-index: 80; box-shadow: 0 18px 40px rgba(0,0,0,.5); }
.wv-lang.open .wv-lang__menu { display: flex; }
.wv-lang--up .wv-lang__menu { top: auto; bottom: calc(100% + 6px); }
.wv-lang__menu button { text-align: left; background: transparent; border: 0; color: var(--bone-dim); font-family: var(--mono); font-size: 0.82rem; padding: 0.5rem 0.7rem; border-radius: 3px; cursor: pointer; }
.wv-lang__menu button:hover { background: var(--surface); color: var(--bone); }
.wv-lang__menu button.is-on { color: var(--rust); }

.wv-burger { display: none; flex-direction: column; gap: 5px; background: transparent; border: 0; cursor: pointer; padding: 6px; margin-left: 0.4rem; }
.wv-burger span { width: 24px; height: 2px; background: var(--bone); transition: .2s; }

.wv-mobile { display: none; flex-direction: column; gap: 0.2rem; padding: 0.5rem 0 1rem; }
.wv-mobile a { font-family: var(--mono); font-size: 0.95rem; color: var(--bone-dim); padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.wv-mobile a:last-child { border: 0; margin-top: 0.6rem; }

/* ============================================================
   HERO
   ============================================================ */
.wv-hero { position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 7vw, 88px); overflow: hidden; }
.wv-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(680px 380px at 88% -8%, rgba(194,65,12,0.16), transparent 70%),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.18));
  pointer-events: none;
}
.wv-hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.wv-hero__pill { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--mono); font-size: 0.78rem; color: var(--bone-dim); background: var(--surface); border: 1px solid var(--line-2); border-radius: 999px; padding: 0.32rem 0.85rem 0.32rem 0.4rem; margin-bottom: 1.5rem; }
.wv-hero__pill b { background: var(--rust); color: #fff; font-family: var(--mono); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.18rem 0.5rem; border-radius: 999px; }
.wv-hero__copy h1 { margin-bottom: 1.4rem; }
.wv-hero__lede { font-size: 1.18rem; color: var(--bone-dim); max-width: 52ch; margin-bottom: 2rem; }
.wv-hero__cta { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2rem; }
.wv-hero__meta { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.wv-hero__meta span { font-family: var(--mono); font-size: 0.8rem; color: var(--bone-mute); display: inline-flex; align-items: center; gap: 0.45rem; }
.wv-hero__meta span::before { content: ""; width: 6px; height: 6px; background: var(--rust); border-radius: 1px; display: inline-block; }

/* hero visual: browser frame + embedded checkout + code snippet */
.wv-hero__viz { position: relative; }
.wv-browser { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.wv-browser__bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 0.9rem; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.wv-browser__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.wv-browser__url { margin-left: 0.6rem; flex: 1; font-family: var(--mono); font-size: 0.72rem; color: var(--bone-mute); background: var(--bg); border: 1px solid var(--line); border-radius: 3px; padding: 0.28rem 0.6rem; display: flex; align-items: center; gap: 0.4rem; }
.wv-browser__url svg { width: 11px; height: 11px; color: var(--good); }
.wv-browser__body { padding: 1.3rem; display: grid; grid-template-columns: 1fr; gap: 0.9rem; }

/* embedded checkout component mock */
.wv-co { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; }
.wv-co__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.9rem; }
.wv-co__lbl { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-mute); }
.wv-co__amt { font-family: var(--disp); font-size: 1.7rem; font-weight: 700; color: var(--bone); }
.wv-co__wallet { background: var(--bone); color: #16120f; text-align: center; font-family: var(--mono); font-weight: 500; font-size: 0.84rem; padding: 0.62rem; border-radius: 3px; margin-bottom: 0.7rem; }
.wv-co__or { text-align: center; font-family: var(--mono); font-size: 0.66rem; color: var(--bone-mute); letter-spacing: 0.1em; margin: 0.55rem 0; position: relative; }
.wv-co__field { background: var(--surface); border: 1px solid var(--line-2); border-radius: 3px; padding: 0.55rem 0.7rem; font-family: var(--mono); font-size: 0.78rem; color: var(--bone-dim); margin-bottom: 0.55rem; display: flex; align-items: center; gap: 0.5rem; }
.wv-co__field svg { width: 18px; height: 12px; flex: none; }
.wv-co__pay { background: var(--rust); color: #fff; text-align: center; font-family: var(--mono); font-weight: 500; font-size: 0.86rem; padding: 0.65rem; border-radius: 3px; margin-top: 0.3rem; }

.wv-snip { background: #0f0c0a; border: 1px solid var(--line); border-radius: var(--radius); padding: 0.9rem 1rem; font-family: var(--mono); font-size: 0.76rem; line-height: 1.7; overflow-x: auto; max-width: 100%; min-width: 0; }
.wv-snip pre { margin: 0; white-space: pre; }
.wv-snip .c-key { color: var(--amber); }
.wv-snip .c-str { color: #b7d6a8; }
.wv-snip .c-com { color: var(--bone-mute); }
.wv-snip .c-fn  { color: var(--rust-lit); }
.wv-snip .c-pl  { color: var(--bone-dim); }

.wv-hero__chip { position: absolute; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 0.55rem 0.8rem; display: flex; align-items: center; gap: 0.55rem; font-family: var(--mono); font-size: 0.74rem; box-shadow: 0 16px 36px rgba(0,0,0,0.45); z-index: 3; }
.wv-hero__chip small { display: block; color: var(--bone-mute); font-size: 0.66rem; }
.wv-hero__chip .dot { width: 8px; height: 8px; border-radius: 2px; flex: none; }
.wv-hero__chip--a { top: -14px; left: -18px; }
.wv-hero__chip--b { bottom: -16px; right: -14px; }

/* ============================================================
   LOGO STRIP
   ============================================================ */
.wv-strip { border-block: 1px solid var(--line); background: var(--bg-2); padding: 1.6rem 0; }
.wv-strip__row { display: flex; align-items: center; gap: 2.4rem; flex-wrap: wrap; justify-content: space-between; }
.wv-strip__lbl { font-family: var(--mono); font-size: 0.72rem; color: var(--bone-mute); letter-spacing: 0.14em; text-transform: uppercase; }
.wv-strip__names { display: flex; gap: 2rem; flex-wrap: wrap; }
.wv-strip__names span { font-family: var(--disp); font-weight: 600; font-size: 1.15rem; color: var(--bone-mute); text-transform: uppercase; letter-spacing: 0.04em; }

/* ============================================================
   GENERIC CARD GRIDS
   ============================================================ */
.wv-grid { display: grid; gap: 1.2rem; }
.wv-grid > * { min-width: 0; }
.wv-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wv-grid--4 { grid-template-columns: repeat(4, 1fr); }

.wv-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; transition: border-color .18s, transform .18s; position: relative; }
.wv-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.wv-card__ico { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-2); border-radius: var(--radius); color: var(--rust); margin-bottom: 1rem; }
.wv-card__ico svg { width: 19px; height: 19px; }
.wv-card h3 { margin-bottom: 0.55rem; color: var(--bone); }
.wv-card p { color: var(--bone-dim); font-size: 0.96rem; margin: 0; }
.wv-card__tag { display: inline-block; margin-top: 0.9rem; font-family: var(--mono); font-size: 0.7rem; color: var(--amber); border: 1px solid var(--line-2); border-radius: 3px; padding: 0.15rem 0.5rem; }

/* component-catalogue card (monospace label header) */
.wv-comp { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .18s, transform .18s; }
.wv-comp:hover { border-color: var(--rust); transform: translateY(-2px); }
.wv-comp__head { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 1rem; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.wv-comp__name { font-family: var(--mono); font-size: 0.8rem; color: var(--rust-lit); }
.wv-comp__tag { font-family: var(--mono); font-size: 0.66rem; color: var(--bone-mute); }
.wv-comp__body { padding: 1.2rem; }
.wv-comp__body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.wv-comp__body p { color: var(--bone-dim); font-size: 0.92rem; margin: 0; }

/* ============================================================
   CODE BLOCK (full) + integration sections
   ============================================================ */
.wv-codeblock { background: #0f0c0a; border: 1px solid var(--line-2); border-radius: var(--radius-lg); overflow: hidden; max-width: 100%; min-width: 0; }
.wv-codeblock__bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.55rem 0.9rem; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.wv-codeblock__tabs { display: flex; gap: 0.3rem; }
.wv-codeblock__tabs button { background: transparent; border: 1px solid transparent; color: var(--bone-mute); font-family: var(--mono); font-size: 0.74rem; padding: 0.3rem 0.7rem; border-radius: 3px; cursor: pointer; }
.wv-codeblock__tabs button.is-on { color: var(--bone); background: var(--surface); border-color: var(--line-2); }
.wv-codeblock__file { margin-left: auto; font-family: var(--mono); font-size: 0.7rem; color: var(--bone-mute); }
.wv-codeblock__panel { display: none; padding: 1.2rem 1.3rem; font-family: var(--mono); font-size: 0.82rem; line-height: 1.75; overflow-x: auto; }
.wv-codeblock__panel.is-on { display: block; }
.wv-codeblock__panel pre { margin: 0; white-space: pre; }
.wv-codeblock .c-key { color: var(--amber); }
.wv-codeblock .c-str { color: #b7d6a8; }
.wv-codeblock .c-com { color: var(--bone-mute); }
.wv-codeblock .c-fn  { color: var(--rust-lit); }
.wv-codeblock .c-pl  { color: var(--bone-dim); }
.wv-codeblock .c-num { color: var(--amber); }

.wv-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.6rem); align-items: center; }
.wv-split--rev .wv-split__viz { order: -1; }
/* grid/flex children must be allowed to shrink below content width so non-wrapping
   code blocks scroll internally instead of stretching the page */
.wv-split > *, .wv-hero__grid > * { min-width: 0; }
.wv-split__viz, .wv-hero__viz { min-width: 0; max-width: 100%; }

.wv-ulist { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.9rem; }
.wv-ulist li { display: flex; gap: 0.7rem; font-size: 0.98rem; color: var(--bone-dim); }
.wv-ulist li svg { width: 18px; height: 18px; flex: none; color: var(--rust); margin-top: 3px; }

/* ============================================================
   STATS
   ============================================================ */
.wv-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.wv-stat { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; background: var(--surface); }
.wv-stat__n { font-family: var(--disp); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--rust); line-height: 1; }
.wv-stat__l { font-family: var(--mono); font-size: 0.8rem; color: var(--bone); margin-top: 0.6rem; }
.wv-stat__d { font-size: 0.86rem; color: var(--bone-mute); margin-top: 0.35rem; }

/* ============================================================
   STEP RAIL
   ============================================================ */
.wv-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.wv-rail__item { border-top: 2px solid var(--line-2); padding-top: 1.1rem; position: relative; }
.wv-rail__item::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--mono); font-size: 0.78rem; color: var(--rust); display: block; margin-bottom: 0.6rem; }
.wv-rail__item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.wv-rail__item p { font-size: 0.92rem; color: var(--bone-dim); margin: 0; }
.wv-rail__tag { display: inline-block; margin-top: 0.7rem; font-family: var(--mono); font-size: 0.68rem; color: var(--amber); }

/* ============================================================
   TABS (industries / customization style)
   ============================================================ */
.wv-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2rem; border: 1px solid var(--line); border-radius: var(--radius); padding: 5px; background: var(--surface); width: fit-content; }
.wv-tabs button { background: transparent; border: 0; color: var(--bone-mute); font-family: var(--mono); font-size: 0.84rem; padding: 0.5rem 1rem; border-radius: 3px; cursor: pointer; transition: .15s; }
.wv-tabs button.is-on { background: var(--rust); color: #fff; }
.wv-panel { display: none; }
.wv-panel.is-on { display: block; animation: wv-fade .3s ease; }
@keyframes wv-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   QUOTE
   ============================================================ */
.wv-quote { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: center; border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.4rem); background: var(--surface); }
.wv-quote__q { font-family: var(--disp); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.25; text-transform: none; letter-spacing: 0; color: var(--bone); }
.wv-quote__n { font-family: var(--mono); font-size: 0.88rem; color: var(--bone); margin-top: 1.2rem; }
.wv-quote__r { font-size: 0.84rem; color: var(--bone-mute); }
.wv-quote__big { font-family: var(--disp); font-weight: 700; font-size: clamp(2.8rem, 6vw, 4rem); color: var(--rust); line-height: 1; }
.wv-quote__sm { font-size: 0.92rem; color: var(--bone-dim); margin-top: 0.6rem; }

/* ============================================================
   FAQ
   ============================================================ */
.wv-faq { display: grid; gap: 0; max-width: 860px; }
.wv-faq__item { border-top: 1px solid var(--line); padding: 1.5rem 0; }
.wv-faq__item:last-child { border-bottom: 1px solid var(--line); }
.wv-faq__q { font-family: var(--disp); font-weight: 600; font-size: 1.2rem; color: var(--bone); margin-bottom: 0.6rem; text-transform: none; letter-spacing: 0; }
.wv-faq__a { color: var(--bone-dim); font-size: 0.98rem; margin: 0; }

/* ============================================================
   CTA BAND
   ============================================================ */
.wv-cta { text-align: center; }
.wv-cta__box { border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: clamp(2.6rem, 5vw, 4.4rem) 1.5rem; background: linear-gradient(180deg, var(--surface), var(--bg-2)); position: relative; overflow: hidden; }
.wv-cta__box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 240px at 50% -20%, rgba(194,65,12,0.18), transparent 70%); pointer-events: none; }
.wv-cta h2 { margin-bottom: 1rem; }
.wv-cta p { color: var(--bone-dim); max-width: 56ch; margin: 0 auto 2rem; }
.wv-cta__row { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PRICING
   ============================================================ */
.wv-ptoggle { display: inline-flex; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 4px; background: var(--surface); margin-bottom: 2.6rem; }
.wv-ptoggle button { background: transparent; border: 0; color: var(--bone-mute); font-family: var(--mono); font-size: 0.82rem; padding: 0.5rem 1.1rem; border-radius: 3px; cursor: pointer; }
.wv-ptoggle button.is-on { background: var(--rust); color: #fff; }

.wv-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.wv-tier { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; background: var(--surface); display: flex; flex-direction: column; }
.wv-tier--pop { border-color: var(--rust); box-shadow: 0 0 0 1px var(--rust); }
.wv-tier__pop { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rust); margin-bottom: 0.7rem; }
.wv-tier__n { font-family: var(--disp); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; }
.wv-tier__price { font-family: var(--disp); font-weight: 700; font-size: 2.8rem; color: var(--bone); margin: 0.5rem 0 0.1rem; line-height: 1; }
.wv-tier__unit { font-family: var(--mono); font-size: 0.78rem; color: var(--bone-mute); }
.wv-tier__sub { font-family: var(--mono); font-size: 0.76rem; color: var(--amber); margin: 0.4rem 0 1rem; }
.wv-tier__d { font-size: 0.92rem; color: var(--bone-dim); margin-bottom: 1.2rem; }
.wv-tier__list { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: 0.65rem; }
.wv-tier__list li { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--bone-dim); }
.wv-tier__list li svg { width: 16px; height: 16px; color: var(--rust); flex: none; margin-top: 3px; }
.wv-tier .wv-btn { margin-top: auto; }

.wv-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.wv-table th, .wv-table td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); }
.wv-table th { font-family: var(--mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bone-mute); font-weight: 500; }
.wv-table td:not(:first-child) { text-align: center; }
.wv-table td.yes { color: var(--rust); }
.wv-table tr:hover { background: var(--surface); }
.wv-table__wrap { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }

/* ============================================================
   AUTH (signin)
   ============================================================ */
.wv-auth { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 70px); }
.wv-auth__form { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 6vw, 5rem); max-width: 520px; margin: 0 auto; width: 100%; }
.wv-auth__aside { background: var(--bg-2); border-left: 1px solid var(--line); padding: clamp(2rem, 6vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
.wv-auth__aside h2 { margin-bottom: 1.4rem; }

/* ============================================================
   FORMS
   ============================================================ */
.wv-field { margin-bottom: 1.1rem; }
.wv-field label { display: block; font-family: var(--mono); font-size: 0.78rem; color: var(--bone-dim); margin-bottom: 0.4rem; }
.wv-field input, .wv-field select, .wv-field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius);
  color: var(--bone); font-family: var(--body); font-size: 0.98rem; padding: 0.7rem 0.85rem;
}
.wv-field input::placeholder, .wv-field textarea::placeholder { color: var(--bone-mute); }
.wv-field input:focus, .wv-field select:focus, .wv-field textarea:focus { outline: none; border-color: var(--rust); }
.wv-field textarea { min-height: 110px; resize: vertical; }
.wv-form-note { font-size: 0.82rem; color: var(--bone-mute); margin-top: 0.8rem; }
.wv-form-done { background: rgba(111,174,122,0.1); border: 1px solid var(--good); border-radius: var(--radius); padding: 1rem 1.1rem; color: var(--bone); font-size: 0.95rem; margin-bottom: 1.2rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.wv-form-done svg { width: 18px; height: 18px; color: var(--good); flex: none; margin-top: 2px; }
.wv-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.wv-contact-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.wv-contact-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; background: var(--surface); margin-bottom: 1rem; }
.wv-contact-card h3 { font-size: 1rem; margin-bottom: 0.5rem; text-transform: none; letter-spacing: 0; }
.wv-contact-card p { font-size: 0.92rem; color: var(--bone-dim); margin: 0; }
.wv-contact-card a { color: var(--amber); }

/* ============================================================
   LEGAL
   ============================================================ */
.wv-legal { display: grid; grid-template-columns: 240px 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.wv-legal__toc { position: sticky; top: 92px; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.2rem; background: var(--surface); }
.wv-legal__toc span { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--bone-mute); display: block; margin-bottom: 0.8rem; }
.wv-legal__toc a { display: block; font-size: 0.88rem; color: var(--bone-dim); padding: 0.32rem 0; }
.wv-legal__toc a:hover { color: var(--rust); }
.wv-legal__body { max-width: 70ch; }
.wv-legal__body h2 { font-size: 1.4rem; margin: 2.2rem 0 0.8rem; }
.wv-legal__body h2:first-child { margin-top: 0; }
.wv-legal__body p, .wv-legal__body li { color: var(--bone-dim); font-size: 0.98rem; }
.wv-legal__body a { color: var(--amber); }
.wv-legal__body ul { padding-left: 1.2rem; }
.wv-legal__body li { margin-bottom: 0.5rem; }
.wv-legal__meta { font-family: var(--mono); font-size: 0.78rem; color: var(--bone-mute); margin-bottom: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.wv-foot { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; }
.wv-foot__top { display: grid; grid-template-columns: 1.5fr 2.5fr; gap: 3rem; margin-bottom: 3rem; }
.wv-foot__brand .wv-logo { margin-bottom: 1rem; }
.wv-foot__blurb { font-size: 0.94rem; color: var(--bone-mute); max-width: 40ch; }
.wv-foot__links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.wv-foot__grp { display: flex; flex-direction: column; gap: 0.6rem; }
.wv-foot__grph { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bone-mute); margin-bottom: 0.3rem; }
.wv-foot__grp a { font-size: 0.9rem; color: var(--bone-dim); }
.wv-foot__grp a:hover { color: var(--rust); }
.wv-foot__base { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.wv-foot__copy { font-family: var(--mono); font-size: 0.78rem; color: var(--bone-mute); }
.wv-foot__chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.wv-foot__badge { font-family: var(--mono); font-size: 0.68rem; color: var(--bone-mute); border: 1px solid var(--line); border-radius: 3px; padding: 0.22rem 0.5rem; }
.wv-foot__base .wv-lang { margin-left: auto; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-rise] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-rise].is-in { opacity: 1; transform: none; }
[data-rise][data-delay="1"] { transition-delay: .08s; }
[data-rise][data-delay="2"] { transition-delay: .16s; }
[data-rise][data-delay="3"] { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .wv-hero__grid { grid-template-columns: 1fr; }
  .wv-hero__viz { max-width: 460px; margin: 0 auto; }
  .wv-split, .wv-quote, .wv-auth, .wv-foot__top, .wv-contact-grid { grid-template-columns: 1fr; }
  .wv-legal { grid-template-columns: 1fr; }
  .wv-legal__toc { position: static; }
  .wv-split--rev .wv-split__viz { order: 0; }
  .wv-auth__aside { border-left: 0; border-top: 1px solid var(--line); }
  .wv-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .wv-stats { grid-template-columns: repeat(2, 1fr); }
  .wv-rail { grid-template-columns: repeat(2, 1fr); }
  .wv-tiers { grid-template-columns: 1fr; max-width: 460px; }
  .wv-quote__big { font-size: 3rem; }
}

@media (max-width: 1180px) {
  .wv-nav, .wv-head__act .wv-login, .wv-head__act .wv-btn { display: none; }
  .wv-head__act { margin-left: auto; }
  .wv-burger { display: flex; }
}
@media (max-width: 768px) {
  .wv-nav, .wv-head__act .wv-login, .wv-head__act .wv-btn { display: none; }
  .wv-head__act { margin-left: auto; }
  .wv-burger { display: flex; }
  .wv-mobile.is-open { display: flex; }
  body.nav-open { overflow: hidden; }
  .wv-foot__base { flex-direction: column; align-items: flex-start; }
  .wv-foot__base .wv-lang { margin-left: 0; }
}

@media (max-width: 600px) {
  .wv-shell { padding: 0 18px; }
  body { font-size: 16px; }
  .wv-grid--2, .wv-grid--3, .wv-grid--4, .wv-stats, .wv-rail { grid-template-columns: 1fr; }
  .wv-foot__links { grid-template-columns: repeat(2, 1fr); }
  .wv-hero__chip--a { left: 4px; }
  .wv-hero__chip--b { right: 4px; }
  .wv-table__wrap { overflow-x: auto; }
  .wv-table { min-width: 520px; }
}
