/* ===================================================================
   VEERO — Editorial redesign system
   Floating nav · ghost outline type · asymmetric sections ·
   progress rings · expandable pill widgets · organic blobs
   =================================================================== */

:root {
  /* Palette — warm paper, ink, brand navy, coral accent */
  --paper:      #EEEBE3;   /* warm greige page */
  --paper-2:    #E7E3D8;   /* slightly deeper band */
  --card:       #FBFAF6;   /* warm card surface */
  --ink:        #1B1A16;   /* warm near-black */
  --ink-soft:   #5B564C;   /* muted body */
  --ink-faint:  rgba(27,26,22,0.14);
  --navy:       #16294A;   /* deep brand anchor */
  --navy-2:     #0E1D38;
  --accent:     #E2603F;   /* coral (user choice) */
  --accent-d:   #C24A2C;
  --on-navy:    #EDEAE2;
  --on-navy-soft: rgba(237,234,226,0.66);

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --wrap: 1240px;
  --r: 16px;
  --r-pill: 999px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, image-slot { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ---------- Type ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.serif { font-family: var(--serif); }
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.kicker {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); line-height: 1.55; }
.kk-abbr { display: none; }
p { margin: 0 0 1em; text-wrap: pretty; }
.muted { color: var(--ink-soft); }

/* Ghost outline type (TaskVirtual flourish) */
.ghost {
  font-family: var(--serif);
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(27,26,22,0.16);
  letter-spacing: -0.02em;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.ghost--navy { -webkit-text-stroke-color: rgba(237,234,226,0.22); }
.ghost--accent { -webkit-text-stroke-color: rgba(226,96,63,0.45); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(226,96,63,0.30); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--navy); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid var(--ink-faint); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--on-navy { background: var(--on-navy); color: var(--navy); }
.btn--on-navy:hover { background: #fff; transform: translateY(-2px); }
.btn .arrow {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.22);
  margin: -6px -10px -6px 0;
  transition: transform .2s ease;
}
.btn--ghost .arrow, .btn--on-navy .arrow { background: rgba(0,0,0,0.08); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   FLOATING NAV
   ============================================================ */
.fnav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  max-width: calc(var(--wrap) + 56px);
  margin: 0 auto;
  transition: padding .28s ease;
}
.fnav.is-stuck { padding-top: 12px; padding-bottom: 12px; }
.fnav__logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--serif); font-weight: 600; font-size: 23px;
  letter-spacing: -0.02em; color: var(--ink);
  padding: 8px 4px;
}
.fnav__logo .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(226,96,63,0.18); }
/* Logo gets a light frosted pill so it stays legible over dark sections on scroll */
.fnav > .fnav__logo {
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  background: rgba(251,250,246,0.48);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 6px 20px rgba(20,30,55,0.07);
  border-radius: var(--r-pill);
  padding: 8px 18px 8px 15px;
}
.fnav__bar {
  margin: 0 auto;
  display: flex; align-items: center; gap: 2px;
  background: rgba(251,250,246,0.72);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 34px rgba(20,30,55,0.10);
  border-radius: var(--r-pill);
  padding: 6px;
}
.fnav__bar a {
  font-weight: 500; font-size: 15px;
  padding: 9px 16px; border-radius: var(--r-pill);
  color: var(--ink-soft);
  transition: background .15s ease, color .15s ease;
  position: relative;
}
.fnav__bar a:hover { color: var(--ink); background: rgba(27,26,22,0.05); }
.fnav__bar a.is-active { color: var(--ink); background: var(--card); box-shadow: 0 1px 3px rgba(20,30,55,0.10); }
.fnav__right { display: flex; align-items: center; gap: 10px; }
.fnav__burger { display: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--card); box-shadow: 0 6px 18px rgba(20,30,55,0.12);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.fnav__burger span { width: 18px; height: 1.8px; background: var(--ink); transition: transform .2s, opacity .2s; }
.fnav__burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.8px) rotate(45deg); }
.fnav__burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.fnav__burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.8px) rotate(-45deg); }

.fnav__sheet {
  position: fixed; inset: 0; z-index: 199;
  background: var(--paper);
  padding: 96px 28px max(40px, env(safe-area-inset-bottom)); 
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-100%); transition: transform .35s cubic-bezier(.4,0,.1,1);
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.fnav__sheet.is-open { transform: translateY(0); visibility: visible; }
.fnav__sheet a { font-family: var(--serif); font-size: clamp(22px, 6vw, 30px); padding: clamp(9px, 2.4vw, 12px) 0; border-bottom: 1px solid var(--ink-faint); }
.fnav__sheet .btn { margin-top: 18px; justify-content: center; flex: none; }
/* Short viewports (most phones): keep every item reachable */
@media (max-height: 720px){
  .fnav__sheet { padding-top: 84px; gap: 0; }
  .fnav__sheet a { font-size: 20px; padding: 8px 0; }
  .fnav__sheet .btn { margin-top: 12px; }
}
@media (max-width: 940px){
  .fnav__bar { display: none; }
  .fnav__burger { display: flex; }
  .fnav__right .btn--show { display: none; }
}

/* ============================================================
   SECTIONS / rhythm
   ============================================================ */
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section--pad-t0 { padding-top: 0; }
.band-navy { background: var(--navy); color: var(--on-navy); }
.band-navy h1, .band-navy h2, .band-navy h3 { color: var(--on-navy); }
.band-navy .lead, .band-navy .muted { color: var(--on-navy-soft); }
.band-paper2 { background: var(--paper-2); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 132px; overflow: clip; }
.hero__ghost {
  position: absolute; top: 126px; left: -2vw; right: -2vw;
  font-size: clamp(72px, 17vw, 300px);
  text-align: center; z-index: 0;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px); align-items: start;
  padding-top: clamp(24px, 4vw, 54px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero__copy { max-width: 620px; }
.hero__copy .display { margin: 22px 0 26px; }
.hero__copy .display em { font-style: italic; color: var(--accent); }
.hero__lead { max-width: 500px; margin-bottom: 32px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__proof { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 40px; height: 40px; border-radius: 50%; margin-right: -12px;
  border: 2.5px solid var(--paper); display: grid; place-items: center;
  font-weight: 700; font-size: 12.5px; color: #fff;
}
.hero__proof small { font-size: 14px; color: var(--ink-soft); line-height: 1.35; max-width: 230px; }

.hero__media { position: relative; min-height: 472px; display: grid; place-items: center; }
.hero__orb {
  position: absolute; right: 0; z-index: 0;
  width: min(440px, 94%); aspect-ratio: 1 / 1.04;
  background: var(--accent); opacity: .92;
  border-radius: 49% 51% 43% 57% / 53% 44% 56% 47%;
}
.hero__orb::after {
  content: ""; position: absolute; inset: -9%;
  border: 1.5px solid var(--ink-faint);
  border-radius: 52% 48% 47% 53% / 48% 52% 48% 52%;
}
.hero__pcard {
  position: relative; z-index: 2;
  background: var(--card); border-radius: 22px; padding: 26px 28px;
  width: min(330px, 86%);
  box-shadow: 0 26px 64px rgba(20,30,55,.20);
}
.hero__pcard .hero__avatars { margin-bottom: 16px; }
.hero__rating { display: flex; align-items: baseline; gap: 10px; }
.hero__rating b { font-family: var(--serif); font-weight: 500; font-size: 34px; line-height: 1; }
.hero__rating .stars { color: var(--accent); letter-spacing: 2px; font-size: 15px; }
.hero__pcard small { display: block; color: var(--ink-soft); font-size: 13px; margin-top: 6px; }
.hero__pcard hr { border: 0; border-top: 1px solid var(--ink-faint); margin: 18px 0; }
.hero__pcard-foot { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--ink-soft); }
.hero__pcard-foot b { color: var(--ink); font-family: var(--serif); font-size: 17px; }
.hero__chip {
  position: absolute; z-index: 3; left: 0; bottom: 6%;
  background: var(--ink); color: var(--paper);
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 17px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600;
  box-shadow: 0 16px 36px rgba(20,30,55,.22);
}
.hero__chip svg { width: 17px; height: 17px; color: var(--accent); }
/* Phones: drop the large clamp() floor so the ghost word always fits the viewport */
@media (max-width: 700px){
  .hero__ghost { font-size: 16vw; top: 150px; }
  .kk-full { display: none; }
  .kk-abbr { display: inline; }
  .cta__ghost { font-size: 15vw; left: -2vw; right: -2vw; text-align: center; }
}
@media (max-width: 880px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin: 8px auto 0; width: 100%; }
  .hero__chip { left: 4%; }
}

/* ============================================================
   STATS — progress rings
   ============================================================ */
.stats__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; margin-bottom: 56px; }
.stats__head h2 { font-size: clamp(28px, 3.4vw, 44px); max-width: 620px; }
.rings { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.ring { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ring__dial { position: relative; width: 168px; height: 168px; }
.ring__dial svg { width: 100%; height: 100%; transform: rotate(-90deg); --circ: 465; }
.ring__track { fill: none; stroke: rgba(237,234,226,0.18); stroke-width: 11; }
.ring__bar { fill: none; stroke: var(--accent); stroke-width: 11; stroke-linecap: round;
  stroke-dasharray: var(--circ); stroke-dashoffset: var(--circ); transition: stroke-dashoffset 1.4s cubic-bezier(.3,.8,.3,1); }
.ring__val { position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-size: 44px; font-weight: 500; letter-spacing: -0.01em; color: #FFFFFF; }
.ring__label { margin-top: 22px; font-family: var(--serif); font-weight: 500; font-size: 23px;
  color: #FFFFFF; letter-spacing: -0.01em; line-height: 1.1; white-space: nowrap; position: relative; display: inline-block;
  opacity: 0; transform: translateY(12px);
  transition: opacity .55s ease .35s, transform .6s cubic-bezier(.2,.7,.2,1) .35s; }
.ring__label::after { content: ""; position: absolute; left: 50%; bottom: -10px; height: 3px; width: 52px;
  border-radius: 3px; background: var(--accent); transform: translateX(-50%) scaleX(0); transform-origin: center;
  transition: transform .7s cubic-bezier(.3,.85,.3,1) .55s; }
.ring.is-shown .ring__label { opacity: 1; transform: none; }
.ring.is-shown .ring__label::after { transform: translateX(-50%) scaleX(1); }
.ring__sub { font-family: var(--sans); font-size: 14px; line-height: 1.45; color: rgba(237,234,226,0.78);
  margin-top: 18px; max-width: 210px; opacity: 0; transition: opacity .6s ease .7s; }
.ring.is-shown .ring__sub { opacity: 1; }
.ring__dial { transition: transform .3s ease; }
.ring:hover .ring__dial { transform: translateY(-4px) scale(1.03); }
@media (max-width: 860px){ .rings { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }
@media (max-width: 420px){ .rings { grid-template-columns: 1fr; } }

/* ============================================================
   SOLUTIONS — image + expandable pill accordion
   ============================================================ */
.sol__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.sol__media { align-self: center; }
.sol__panel {
  position: relative; background: var(--card); border: 1px solid var(--ink-faint);
  border-radius: 24px; padding: 32px 32px 30px; overflow: hidden;
}
.sol__panel::before {
  content: ""; position: absolute; width: 62%; height: 56%; right: -12%; top: -14%;
  background: rgba(226,96,63,0.10); border-radius: 50%;
}
.sol__panel-label { position: relative; font-weight: 600; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.sol__panel h3 { position: relative; font-family: var(--serif); font-weight: 500; font-size: 25px; margin: 12px 0 22px; line-height: 1.15; }
.sol__list { position: relative; list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.sol__list li { display: flex; align-items: flex-start; gap: 13px; font-size: 16.5px; font-weight: 600; }
.sol__list .tick { width: 27px; height: 27px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; background: rgba(226,96,63,0.12); color: var(--accent); display: grid; place-items: center; }
.sol__list .tick svg { width: 16px; height: 16px; }
.sol__list small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 13.5px; margin-top: 2px; }
.sol__intro { margin-bottom: 30px; }
.sol__intro h2 { font-size: clamp(30px, 3.6vw, 48px); margin: 16px 0 14px; }

/* Full-width "Every Veero professional" benefits strip */
.sol__benefits { margin-top: clamp(40px, 5vw, 76px); }
.sol__panel--wide { padding: clamp(28px, 3vw, 42px) clamp(28px, 3.4vw, 48px); }
.sol__panel--wide .sol__panel-head { position: relative; max-width: 560px; margin-bottom: clamp(24px, 3vw, 36px); }
.sol__panel--wide .sol__panel-head h3 { margin: 10px 0 0; font-size: clamp(22px, 2.4vw, 28px); }
.sol__panel--wide .sol__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 2.4vw, 36px); }
.sol__panel--wide .sol__list li { font-size: 16px; }
@media (max-width: 880px){ .sol__panel--wide .sol__list { grid-template-columns: 1fr 1fr; gap: 24px 28px; } }
@media (max-width: 520px){ .sol__panel--wide .sol__list { grid-template-columns: 1fr; } }

.acc { display: flex; flex-direction: column; gap: 10px; }
.acc__group { border-radius: var(--r-pill); }
.acc__head {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-radius: var(--r-pill);
  background: var(--card); border: 1px solid transparent;
  text-align: left; transition: background .2s, box-shadow .2s;
}
.acc__group.is-open > .acc__head { background: rgba(226,96,63,0.12); }
.acc__head:hover { box-shadow: 0 6px 18px rgba(20,30,55,0.08); }
.acc__ico { width: 30px; height: 30px; display: grid; place-items: center; color: var(--accent); flex-shrink: 0; }
.acc__ico svg { width: 22px; height: 22px; }
.acc__title { font-family: var(--serif); font-size: 21px; font-weight: 500; flex: 1; }
.acc__chev { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(27,26,22,0.06); transition: transform .3s, background .2s; }
.acc__chev svg { width: 16px; height: 16px; }
.acc__group.is-open .acc__chev { transform: rotate(90deg); background: var(--accent); color: #fff; }

.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s cubic-bezier(.4,0,.1,1); }
.acc__group.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel-inner { overflow: hidden; }
.acc__items { padding: 8px 0 10px 26px; display: flex; flex-direction: column; gap: 8px; }
.acc__item {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 20px; border-radius: var(--r-pill);
  border: 1px solid var(--ink-faint); background: transparent;
  transition: border-color .18s, background .18s, transform .18s;
  position: relative;
}
.acc__item::before {
  content: ""; position: absolute; left: -16px; top: 50%;
  width: 12px; height: 12px; border-left: 1.5px solid var(--ink-faint);
  border-bottom: 1.5px solid var(--ink-faint); transform: translateY(-90%);
}
.acc__item:hover { border-color: var(--ink); background: var(--card); transform: translateX(3px); }
.acc__item-ico { width: 24px; height: 24px; color: var(--ink-soft); }
.acc__item-ico svg { width: 20px; height: 20px; }
.acc__item strong { font-weight: 600; font-size: 16px; flex: 1; }
.acc__item-arrow { color: var(--ink-soft); transition: transform .18s; }
.acc__item:hover .acc__item-arrow { transform: translateX(3px); color: var(--accent); }
.sol__media .sol__art { display: none; }
@media (max-width: 860px){
  .sol__grid { grid-template-columns: 1fr; }
  .sol__media { position: static; }
}

/* ============================================================
   STEPS — how it works (asymmetric, ghost numerals)
   ============================================================ */
.steps__head { max-width: 640px; margin-bottom: 64px; }
.steps__head h2 { font-size: clamp(30px, 3.8vw, 50px); margin-top: 16px; }
.step {
  display: grid; grid-template-columns: 200px 1fr auto; gap: 36px; align-items: center;
  padding: 40px 0; border-top: 1px solid rgba(237,234,226,0.16);
}
.step:last-child { border-bottom: 1px solid rgba(237,234,226,0.16); }
.step__n { font-family: var(--serif); font-size: clamp(64px, 8vw, 112px); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1.4px rgba(237,234,226,0.4); }
.step.is-on .step__n { -webkit-text-stroke-color: var(--accent); color: transparent; }
.step__body h3 { font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 10px; }
.step__body p { color: var(--on-navy-soft); margin: 0; max-width: 560px; }
.step__tag { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap; }
@media (max-width: 760px){
  .step { grid-template-columns: 1fr; gap: 10px; padding: 30px 0; }
  .step__tag { order: -1; }
}

/* ============================================================
   WHY — editorial offset cards
   ============================================================ */
.why__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.why__lead { grid-column: span 5; align-self: center; padding-right: 20px; }
.why__lead h2 { font-size: clamp(30px, 3.6vw, 48px); margin: 16px 0 18px; }
.why__cards { grid-column: span 7; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wcard {
  background: var(--card); border-radius: 20px; padding: 30px 28px;
  border: 1px solid var(--ink-faint);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wcard:nth-child(even) { transform: translateY(26px); }
.wcard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,30,55,0.10); }
.wcard:nth-child(even):hover { transform: translateY(22px); }
.wcard__ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(226,96,63,0.12); color: var(--accent); margin-bottom: 18px; }
.wcard__ico svg { width: 24px; height: 24px; }
.wcard h3 { font-size: 20px; margin-bottom: 8px; }
.wcard p { font-size: 15px; color: var(--ink-soft); margin: 0; }
@media (max-width: 880px){
  .why__lead, .why__cards { grid-column: 1 / -1; }
  .wcard:nth-child(even) { transform: none; }
  .wcard:nth-child(even):hover { transform: translateY(-4px); }
}
@media (max-width: 520px){ .why__cards { grid-template-columns: 1fr; } }

/* ============================================================
   BRANDS — the Veero Group
   ============================================================ */
.brands__grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 20px; }
.bcard { background: var(--card); border-radius: 22px; padding: 34px 30px; border: 1px solid var(--ink-faint);
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.bcard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,30,55,0.10); }
.bcard__logo { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: var(--navy); color: var(--on-navy); font-family: var(--serif); font-weight: 600; font-size: 22px; margin-bottom: 20px; }
.bcard h3 { font-size: 24px; margin-bottom: 4px; }
.bcard__url { font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 14px; }
.bcard p { font-size: 15px; color: var(--ink-soft); flex: 1; }
.bcard .link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--ink); margin-top: 10px; transition: gap .18s; }
.bcard .link:hover { gap: 12px; color: var(--accent); }
.bcard--soon { background: transparent; border-style: dashed; align-items: flex-start; justify-content: center; }
.bcard--soon .bcard__logo { background: transparent; border: 1.5px dashed var(--ink-faint); color: var(--ink-soft); }
@media (max-width: 860px){ .brands__grid { grid-template-columns: 1fr; max-width: 460px; } }

/* ============================================================
   TESTIMONIAL — large quote
   ============================================================ */
.quote2 { max-width: 940px; margin: 0 auto; text-align: center; }
.quote2 .kicker { justify-content: center; }
.quote2__mark { font-family: var(--serif); font-size: 110px; line-height: .5; color: var(--accent); height: 58px; margin-top: 18px; }
.quote2__big {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(27px, 3.7vw, 46px); line-height: 1.14; letter-spacing: -0.015em;
  margin: 0;
}
.quote2__big .mark { color: var(--accent); }
.quote2__by { margin-top: 38px; display: inline-flex; align-items: center; gap: 14px; }
.quote2__av { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 15px; background: var(--accent); flex-shrink: 0; }
.quote2__by .who { text-align: left; }
.quote2__by strong { display: block; font-size: 16px; color: var(--on-navy); }
.quote2__by .who span { font-size: 14px; color: var(--on-navy-soft); }
.quote__dots { display: flex; gap: 8px; justify-content: center; margin-top: 26px; }
.quote__dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(237,234,226,0.28); cursor: pointer; transition: background .2s, transform .2s; }
.quote__dots i.on { background: var(--accent); transform: scale(1.25); }

/* ============================================================
   CONTACT CTA — ghost word + form + blob photo
   ============================================================ */
.cta { position: relative; overflow: clip; }
.cta__ghost { position: absolute; right: 3vw; top: 40px; font-size: clamp(120px, 18vw, 280px); }
.cta__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.cta__form-head h2 { font-size: clamp(30px, 4vw, 52px); margin: 14px 0 10px; }
.cta__aside h2 { font-size: clamp(30px, 4vw, 52px); margin: 14px 0 12px; }
.cta__points { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.cta__points li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; font-weight: 600; color: var(--on-navy); }
.cta__points .ic { width: 42px; height: 42px; border-radius: 13px; background: rgba(237,234,226,0.1); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.cta__points .ic svg { width: 20px; height: 20px; }
.cta__points small { display: block; font-weight: 400; font-size: 13.5px; color: var(--on-navy-soft); margin-top: 2px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.form .full { grid-column: 1 / -1; }
.field input, .field textarea {
  width: 100%; padding: 16px 20px; border-radius: var(--r-pill);
  border: 1px solid rgba(237,234,226,0.2); background: rgba(237,234,226,0.06);
  color: var(--on-navy); font-family: var(--sans); font-size: 15.5px;
  transition: border-color .18s, background .18s;
}
.field textarea { border-radius: 22px; min-height: 116px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--on-navy-soft); }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--accent); background: rgba(237,234,226,0.1); }
@media (max-width: 760px){ .cta__grid { grid-template-columns: 1fr; } .form { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--navy-2); color: var(--on-navy-soft); padding: 80px 0 36px; }
.foot__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(237,234,226,0.12); }
.foot__brand .fnav__logo { color: var(--on-navy); padding: 0; margin-bottom: 16px; }
.foot__brand p { max-width: 300px; font-size: 15px; line-height: 1.6; }
.foot h4 { font-family: var(--sans); color: var(--on-navy); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 11px; }
.foot a { font-size: 15px; transition: color .15s; }
.foot a:hover { color: var(--accent); }
.foot__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13.5px; color: rgba(237,234,226,0.5); }
@media (max-width: 820px){ .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px){ .foot__top { grid-template-columns: 1fr; } }

/* ============================================================
   Scroll reveal
   ============================================================ */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.rv.in { opacity: 1; transform: none; }
.rv[data-d="1"]{ transition-delay: .08s; }
.rv[data-d="2"]{ transition-delay: .16s; }
.rv[data-d="3"]{ transition-delay: .24s; }
.rv[data-d="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .rv { opacity: 1; transform: none; }
  .ring__label, .ring__sub { opacity: 1; transform: none; transition: none; }
  .ring__label::after { transform: translateX(-50%) scaleX(1); transition: none; } }
