/* =========================================================================
   ViA-Nous — marketing site
   Palette: Electric Blue #1C60FF · Black · White · Cream · Electric Yellow
   Voice: senior engineer talking to a peer. Calm, editorial, human.
   ========================================================================= */

:root {
  --blue: #1c60ff;
  --blue-ink: #0b3ad6;
  --yellow: #fff600;
  --ink: #050505;
  --paper: #ffffff;
  --cream: #f5f2ea;
  --cream-deep: #efeadd;
  --line: rgba(5, 5, 5, 0.12);
  --line-soft: rgba(5, 5, 5, 0.07);
  --muted: #56534c;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-hand: "Caveat", cursive;

  --wrap: 1160px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --shadow: 0 1px 2px rgba(5, 5, 5, 0.04), 0 18px 40px -24px rgba(5, 5, 5, 0.28);
  --shadow-lift: 0 2px 4px rgba(5, 5, 5, 0.05), 0 40px 70px -34px rgba(5, 5, 5, 0.4);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 420;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: clamp(16px, 1.05vw + 12px, 18px);
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
h2 { font-size: clamp(30px, 4.4vw, 54px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.025em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.mono { font-family: var(--font-mono); font-weight: 600; letter-spacing: -0.02em; }

/* highlight swipe */
.mark {
  background: var(--yellow);
  padding: 0.02em 0.14em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.blue { color: var(--blue); }

/* ---------- layout ---------- */
.wrap { position: relative; z-index: 1; width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.hero-grid { position: relative; z-index: 1; }
section { position: relative; }
.pad { padding-block: clamp(72px, 11vw, 148px); }
.pad-sm { padding-block: clamp(56px, 8vw, 100px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.lede { font-size: clamp(18px, 1.5vw, 21px); color: #2c2a26; max-width: 54ch; }

/* ---------- scattered silhouette texture ---------- */
.vn-ghost {
  position: absolute;
  color: var(--ink);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  animation: float 14s ease-in-out infinite;
}
.vn-ghost svg { display: block; width: 100%; height: auto; }
/* larger watermark — sits behind headings, partially cropped */
.vn-ghost.wm { opacity: 0.05; }
.vn-ghost.faint { opacity: 0.035; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, -8deg)); }
  50% { transform: translateY(-14px) rotate(calc(var(--rot, -8deg) + 2deg)); }
}
/* keep cropped silhouettes from bleeding into neighbouring sections */
.clip { overflow: hidden; }
.dark .vn-ghost { color: #fff; opacity: 0.055; }
.footer { position: relative; }
.footer .vn-ghost { color: #fff; opacity: 0.05; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px var(--gutter);
  transition: padding 0.3s ease;
}
.nav-inner {
  width: 100%;
  max-width: var(--wrap);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 9px 9px 9px 14px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled .nav-inner { box-shadow: var(--shadow-lift); }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; font-size: 19px; }
.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  background: var(--ink); color: var(--paper);
  border-radius: 9px;
}
.brand-mark svg { width: 20px; height: auto; }
.brand span { line-height: 0.9; }
.brand small { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 9.5px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; white-space: nowrap; }
/* the name IS the logo — render brand mentions as the wordmark */
.brand-logo { display: block; height: 25px; width: auto; aspect-ratio: 538 / 84; flex: none; color: var(--ink); }
.wordmark { display: inline-block; height: 0.72em; width: auto; vertical-align: -0.02em; color: currentColor; margin: 0 0.08em; }
.cta-short { display: none; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 20px; }
.nav-cta { margin-left: auto; }
.nav-links a { padding: 9px 15px; border-radius: 999px; font-size: 15px; font-weight: 500; color: #33302b; transition: background 0.2s ease, color 0.2s ease; }
.nav-links a:hover { background: var(--cream-deep); color: var(--ink); }
.nav-menu {
  display: none;
  flex: none;
  width: 40px; height: 40px;
  border: none; background: transparent;
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s ease;
}
.nav-menu:hover { background: var(--cream-deep); }
.nav-menu span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu-panel {
  display: none;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
  max-width: var(--wrap);
}
.nav-menu-panel.open { display: flex; }
.nav-menu-panel a { padding: 13px 16px; border-radius: 14px; font-size: 16px; font-weight: 500; color: #33302b; transition: background 0.2s ease, color 0.2s ease; }
.nav-menu-panel a:hover { background: var(--cream-deep); color: var(--ink); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -12px rgba(28, 96, 255, 0.8); }
.btn-primary:hover { background: var(--blue-ink); box-shadow: 0 16px 30px -12px rgba(28, 96, 255, 0.85); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1c1c1c; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: rgba(5,5,5,0.04); border-color: rgba(5,5,5,0.25); }
.btn .arr { transition: transform 0.2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { padding-top: clamp(130px, 17vw, 190px); padding-bottom: clamp(60px, 8vw, 100px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(42px, 6.6vw, 88px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.96; }
.hero .lede { margin-top: 26px; font-size: clamp(18px, 1.6vw, 22px); }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { margin-top: 22px; font-family: var(--font-mono); font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 0 rgba(28,96,255,0.5); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(28,96,255,0.45); } 70% { box-shadow: 0 0 0 9px rgba(28,96,255,0); } 100% { box-shadow: 0 0 0 0 rgba(28,96,255,0); } }

/* hero visual — layered photo frame + stat cards */
.hero-visual { position: relative; }
.photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--ink);
  isolation: isolate;
}
.photo::after {
  content: attr(data-cap);
  position: absolute;
  left: 14px; bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  background: rgba(5,5,5,0.5);
  backdrop-filter: blur(4px);
  padding: 5px 10px;
  border-radius: 8px;
  z-index: 3;
  max-width: 80%;
}
.hero-photo { aspect-ratio: 4 / 5; }
.photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }

.float-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 18px;
  box-shadow: var(--shadow-lift);
  z-index: 4;
}
.float-card .stat { font-family: var(--font-mono); font-weight: 700; font-size: 26px; letter-spacing: -0.03em; line-height: 1; }
.float-card .lbl { font-size: 12.5px; color: var(--muted); margin-top: 5px; max-width: 22ch; }
.fc-seat { right: -18px; top: 30px; }
.fc-tz { left: -26px; bottom: 40px; animation: float 16s ease-in-out infinite; }
.fc-tz .stat { color: var(--blue); }

/* =========================================================================
   MARQUEE / values strip
   ========================================================================= */
.strip { border-block: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.marquee { display: flex; gap: 0; width: max-content; animation: scroll 42s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; gap: 22px; padding: 18px 22px; font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2vw, 26px); letter-spacing: -0.02em; white-space: nowrap; }
.marquee span::after { content: ""; width: 9px; height: 9px; background: var(--blue); border-radius: 2px; transform: rotate(45deg); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =========================================================================
   UNDERSTANDING (dark section)
   ========================================================================= */
.dark { background: var(--ink); color: #f3f1ea; }
.dark .eyebrow { color: rgba(255,255,255,0.55); }
.dark .lede { color: rgba(255,255,255,0.72); }
.dark .vn-ghost { color: #fff; opacity: 0.045; }
.understand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: end; }
.understand h2 { font-size: clamp(30px, 4.6vw, 58px); }
.understand h2 em { font-style: normal; color: var(--blue); display: block; margin-top: 0.2em; }
.pain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.pain-list li { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); font-size: 17px; color: rgba(255,255,255,0.82); }
.pain-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.pain-list .n { font-family: var(--font-mono); font-size: 13px; color: var(--blue); padding-top: 3px; }

/* =========================================================================
   STATISTICS + notebook
   ========================================================================= */
.stats-head { max-width: 62ch; margin-bottom: clamp(40px, 6vw, 68px); }
.stat-flow { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2.2vw, 26px); align-items: start; }
.stat-block { grid-column: span 6; padding: 6px 0; }
.stat-block.big { grid-column: span 6; }
.stat-num { font-family: var(--font-mono); font-weight: 700; font-size: clamp(52px, 8vw, 104px); letter-spacing: -0.05em; line-height: 0.86; }
.stat-num.blue { color: var(--blue); }
.stat-desc { margin-top: 16px; font-size: 17px; max-width: 40ch; color: #2c2a26; }
.stat-src { margin-top: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

.notebook {
  grid-column: span 12;
  position: relative;
  background:
    linear-gradient(var(--cream) 0 0) padding-box,
    repeating-linear-gradient(transparent, transparent 31px, rgba(28,96,255,0.14) 31px, rgba(28,96,255,0.14) 32px);
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 30px 30px 58px;
  box-shadow: var(--shadow);
  margin-top: 14px;
}
.notebook::before { /* margin rule */
  content: ""; position: absolute; left: 40px; top: 0; bottom: 0; width: 1px; background: rgba(255,0,80,0.25);
}
.notebook .tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.notebook p { font-family: var(--font-hand); font-size: clamp(24px, 3vw, 34px); line-height: 1.25; margin-top: 6px; color: #17150f; }

.stat-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }

/* =========================================================================
   FAIR DEAL — signature
   ========================================================================= */
.deal { background: var(--cream-deep); overflow: hidden; }
.deal-head { text-align: center; max-width: 40ch; margin-inline: auto; margin-bottom: clamp(44px, 6vw, 72px); }
.deal-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(14px, 2.5vw, 40px); align-items: stretch; position: relative; z-index: 1; }
.deal-card {
  position: relative;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(28, 96, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 96, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  background-position: -1px -1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 38px) clamp(24px, 3vw, 38px) clamp(24px, 3vw, 38px) clamp(34px, 4vw, 52px);
  box-shadow: var(--shadow);
}
/* red margin rule, like a ruled notebook page */
.deal-card::before {
  content: "";
  position: absolute;
  top: 14px; bottom: 14px;
  left: clamp(24px, 3vw, 40px);
  width: 1.5px;
  background: rgba(255, 45, 85, 0.25);
  border-radius: 2px;
}
.card-badge {
  position: absolute;
  top: -30px;
  right: -22px;
  width: 84px;
  color: var(--ink);
  transform: rotate(12deg);
  transform-origin: center;
  filter: drop-shadow(0 7px 9px rgba(5, 5, 5, 0.28));
  z-index: 3;
  animation: pin-wobble 7s ease-in-out infinite;
}
.card-badge svg { display: block; width: 100%; height: auto; }
@keyframes pin-wobble {
  0%, 100% { transform: rotate(11deg); }
  50% { transform: rotate(8deg) translateY(-2px); }
}
.deal-card h3 { display: flex; align-items: baseline; gap: 12px; }
.deal-card h3 .kicker { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.deal-card ul { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 0; }
.deal-card li { display: flex; gap: 13px; padding: 13px 0; border-top: 1px solid var(--line-soft); font-size: 16px; }
.deal-card li:first-child { border-top: none; }
.deal-card li svg { flex: none; margin-top: 3px; color: var(--blue); }
.deal-card.you { border-top: 4px solid var(--blue); }
.deal-card.us { border-top: 4px solid var(--ink); }
.deal-card.us li svg { color: var(--ink); }

.exchange { display: grid; place-items: center; align-content: center; gap: 10px; min-width: 104px; }
.exch-arrows { width: 104px; height: auto; overflow: visible; }
.exch-arrows path { fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ea-r, .head-r { stroke: var(--blue); }
.ea-l, .head-l { stroke: var(--ink); }
/* hand-inked flow — dashes travel along each stroke, both directions */
.ea { stroke-dasharray: 11 8; animation: ink-flow 3.4s linear infinite; }
.ea-l { animation-direction: reverse; }
@keyframes ink-flow { to { stroke-dashoffset: -38; } }
.exchange .fair {
  font-family: var(--font-hand);
  font-size: 24px;
  color: #17150f;
  transform: rotate(-4deg);
  line-height: 1;
}

.sticker {
  font-family: var(--font-hand);
  font-size: 25px;
  color: var(--ink);
  background: var(--yellow);
  padding: 12px 20px 14px;
  border-radius: 4px;
  box-shadow: 0 14px 26px -14px rgba(5,5,5,0.5);
  display: inline-block;
  transform: rotate(-3deg);
  position: relative;
}
.sticker::before { content: ""; position: absolute; top: -9px; left: 50%; transform: translateX(-50%) rotate(6deg); width: 46px; height: 16px; background: rgba(255,255,255,0.45); border: 1px solid rgba(5,5,5,0.08); border-radius: 2px; }
.deal-sticker { text-align: center; margin-top: clamp(40px, 5vw, 60px); }
.deal-sticker .sticker { animation: float 9s ease-in-out infinite; }

/* ---------- Fair Deal — scrapbook ---------- */
.scrap {
  display: grid;
  grid-template-columns: 1fr clamp(210px, 23vw, 300px) 1fr;
  gap: clamp(16px, 2.6vw, 40px);
  align-items: start;
  position: relative;
  z-index: 1;
  margin-top: clamp(28px, 4vw, 44px);
}
.scrap-col { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 26px); padding-top: 30px; }
.scrap-mid { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 8px; width: 100%; }
.scrap-mid .scrap-card { width: 100%; }

.scrap-tag { font-family: var(--font-hand); font-size: 22px; color: var(--muted); transform: rotate(var(--r, 0deg)); }
.scrap-col.left .scrap-tag { align-self: flex-start; margin-left: 8px; }
.scrap-col.right .scrap-tag { align-self: flex-end; margin-right: 8px; }

.scrap-card {
  position: relative;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(28, 96, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 96, 255, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 19px 21px;
  box-shadow: var(--shadow);
  transform: rotate(var(--r, 0deg)) translateX(var(--x, 0));
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
.scrap-card:hover { transform: rotate(0deg) translate(0, -4px); box-shadow: var(--shadow-lift); z-index: 6; }
.scrap-card p { font-size: 15.5px; color: #2c2a26; }
.scrap-card p b { color: var(--ink); font-weight: 700; }
.scrap-card .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 1.9vw, 23px); letter-spacing: -0.02em; line-height: 1.14; color: var(--ink); }
.scrap-card mark { background: var(--yellow); color: var(--ink); padding: 0 0.12em; }
.scrap-card.lead.you { border-top: 4px solid var(--blue); }
.scrap-card.lead.us { border-top: 4px solid var(--ink); }

/* washi tape accents */
.tape { position: absolute; top: -9px; left: 50%; transform: translateX(-50%) rotate(-4deg); width: 66px; height: 19px; background: rgba(255,255,255,0.55); border: 1px solid rgba(5,5,5,0.07); box-shadow: 0 1px 2px rgba(5,5,5,0.06); }
.tape.amber { background: rgba(255,246,0,0.5); border-color: rgba(5,5,5,0.05); }
.scrap-col.right .tape { left: auto; right: 16px; transform: rotate(5deg); }

.price-xl { font-family: var(--font-mono); font-weight: 700; font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.045em; line-height: 0.95; color: var(--ink); }
.price-xl small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 500; letter-spacing: 0; margin-top: 7px; }

.mid-stamp { width: 58px; height: 38px; line-height: 0; color: var(--ink); transform: rotate(-8deg); filter: drop-shadow(0 6px 8px rgba(5,5,5,0.25)); }
.mid-stamp svg { display: block; width: 100%; height: 100%; }
.scrap-mid .exch-arrows { width: 104px; height: auto; overflow: visible; }
.scrap-mid .fair { font-family: var(--font-hand); font-size: 24px; color: #17150f; transform: rotate(-4deg); line-height: 1; }

.scrap-card.note { background: var(--ink); border-color: var(--ink); background-image: none; }
.scrap-card.note p { color: rgba(255,255,255,0.82); font-size: 15px; margin-top: 8px; }
.scrap-card.note p b { color: #fff; }
.scrap-card.note .note-kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
.scrap-card.note .tape { background: rgba(255,246,0,0.5); border-color: rgba(255,255,255,0.15); }

.stamp-corner { position: absolute; top: -20px; right: -16px; width: 56px; color: var(--ink); transform: rotate(12deg); filter: drop-shadow(0 6px 8px rgba(5,5,5,0.26)); z-index: 3; }
.stamp-corner svg { display: block; width: 100%; height: auto; }

.scrap-mid .sticker { animation: float 9s ease-in-out infinite; margin-top: 4px; }

@media (max-width: 860px) {
  .scrap { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; gap: 20px; }
  .scrap-col { padding-top: 0; }
  .scrap-mid { padding-block: 4px; gap: 8px; }
  /* logo tucks next to the exchange instead of floating alone */
  .scrap-mid .mid-stamp { align-self: center; margin-bottom: 2px; }
  /* arrows run vertically between the stacked clusters */
  .scrap-mid .exch-arrows { transform: rotate(90deg); margin: 26px 0; }
  .scrap-col.right .scrap-tag { align-self: flex-start; margin-left: 8px; margin-right: 0; }
  .scrap-card { transform: rotate(var(--r, 0deg)); }
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.svc-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(20px, 3vw, 30px); }
.svc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
  background: var(--paper);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.svc.feature { background: var(--ink); color: #f3f1ea; }
.svc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.svc h3 { font-size: clamp(24px, 2.6vw, 32px); }
.price { font-family: var(--font-mono); font-weight: 700; letter-spacing: -0.03em; text-align: right; line-height: 1; }
.price b { font-size: clamp(26px, 3vw, 36px); display: block; }
.price small { font-size: 13px; color: var(--muted); font-weight: 500; }
.svc.feature .price small { color: rgba(255,255,255,0.6); }
.svc.feature .price b { color: var(--yellow); }
.svc p.desc { margin-top: 16px; font-size: 16px; color: #3a372f; }
.svc.feature p.desc { color: rgba(255,255,255,0.72); }
.svc-cap { margin-top: 18px; padding: 14px 16px; border-radius: 12px; background: rgba(28,96,255,0.18); border: 1px solid rgba(28,96,255,0.45); font-size: 14.5px; line-height: 1.45; color: rgba(255,255,255,0.82); }
.svc-cap b { color: #fff; font-weight: 700; }
.svc-tags { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 11px; }
.svc-tags li { display: flex; gap: 11px; font-size: 15.5px; align-items: flex-start; }
.svc-tags li svg { flex: none; margin-top: 3px; color: var(--blue); }
.svc.feature .svc-tags li svg { color: var(--yellow); }
.svc .foot { margin-top: auto; padding-top: 26px; }
.svc .when { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.svc.feature .when { color: rgba(255,255,255,0.5); }

/* =========================================================================
   PROCESS
   ========================================================================= */
.process { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 30px); counter-reset: step; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--ink); }
.step .num { font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: var(--blue); }
.step h3 { font-size: clamp(19px, 1.9vw, 23px); margin-top: 12px; }
.step p { margin-top: 10px; font-size: 15.5px; color: #3a372f; }
.step .human { margin-top: 14px; font-family: var(--font-hand); font-size: 19px; color: var(--muted); }

/* =========================================================================
   TEAM
   ========================================================================= */
.team { background: var(--paper); }
.team-head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: clamp(36px, 5vw, 56px); }
.team-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 1fr; gap: clamp(14px, 1.8vw, 20px); }
.tm { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--ink); }
.tm img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; display: block; z-index: 1; }
.tm-anchor { grid-column: span 6; grid-row: span 2; aspect-ratio: 1 / 1; }
.tm-p { grid-column: span 3; aspect-ratio: 1 / 1.12; }
.tm-strip { grid-column: span 6; aspect-ratio: 2 / 1; }
.tm .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 15px; background: linear-gradient(transparent, rgba(5,5,5,0.82)); color: #fff; z-index: 2; }
.tm .cap .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.tm .cap .name { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-top: 2px; }
.tm .moment { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-hand); font-size: 20px; color: #fff; max-width: 70%; line-height: 1.15; text-shadow: 0 1px 12px rgba(0,0,0,0.6); }
.ai-note { margin-top: 26px; font-family: var(--font-hand); font-size: clamp(20px, 2.1vw, 25px); line-height: 1.35; color: var(--muted); max-width: 62ch; transform: rotate(-0.6deg); }
.ai-note::before { content: "✳ "; color: var(--blue); }
.hero-ai-note { margin-top: 14px; font-family: var(--font-hand); font-size: 16px; line-height: 1.25; color: var(--muted); text-align: right; transform: rotate(-0.5deg); }
.hero-ai-note::before { content: "✳ "; color: var(--blue); }

/* =========================================================================
   REASSURANCE
   ========================================================================= */
.reassure { background: var(--cream-deep); }
.reassure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 34px); }
.rz { display: flex; flex-direction: column; gap: 12px; }
.rz .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  transform: rotate(var(--r, 0deg));
  box-shadow: 0 6px 14px -10px rgba(5,5,5,0.5);
}
.rz .ic svg { width: 26px; height: auto; display: block; }
.rz h3 { font-size: 20px; }
.rz p { font-size: 15.5px; color: #3a372f; }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.cta { background: var(--blue); color: #fff; text-align: center; overflow: hidden; }
.cta .vn-ghost { color: #fff; opacity: 0.09; }
.cta h2 { font-size: clamp(34px, 5.6vw, 72px); letter-spacing: -0.04em; max-width: 18ch; margin-inline: auto; }
.cta p { margin-top: 20px; font-size: clamp(17px, 1.5vw, 20px); color: rgba(255,255,255,0.85); max-width: 46ch; margin-inline: auto; }
.cta-btns { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary { background: #fff; color: var(--blue); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.5); }
.cta .btn-primary:hover { background: var(--yellow); color: var(--ink); }
.cta .btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; padding-block: clamp(56px, 7vw, 84px); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand-mark { background: #fff; color: var(--ink); }
.footer .brand-logo { height: 30px; width: auto; aspect-ratio: 538 / 84; color: #fff; }
.footer p { font-size: 15px; max-width: 34ch; }
.footer h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a { font-size: 15px; color: rgba(255,255,255,0.72); transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.45); }

/* =========================================================================
   IMAGE PLACEHOLDER (until real documentary photos land)
   ========================================================================= */
.ph {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 25% 15%, rgba(28,96,255,0.55), transparent 60%),
    linear-gradient(150deg, #101010, #232323 60%, #0c0c0c);
  display: grid; place-items: center;
}
.ph::before { /* grain */
  content: ""; position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ph svg.gmark { width: 42%; max-width: 150px; color: rgba(255,255,255,0.14); position: relative; z-index: 1; }
.ph.alt { background: radial-gradient(120% 90% at 75% 20%, rgba(255,246,0,0.28), transparent 55%), linear-gradient(150deg, #1a1a1a, #2c2c2c 60%, #101010); }
.ph.blue { background: radial-gradient(130% 100% at 30% 10%, rgba(28,96,255,0.9), transparent 62%), linear-gradient(150deg, #0b2ea0, #1c60ff 70%, #0a2478); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; margin-top: 12px; }
  .understand-grid { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .stat-cols { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .reassure-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-mosaic { grid-template-columns: repeat(6, 1fr); }
  .tm-anchor { grid-column: span 6; grid-row: span 1; aspect-ratio: 16/10; }
  .tm-p { grid-column: span 3; }
  .tm-strip { grid-column: span 6; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-menu { display: flex; }
  .nav-cta .cta-full { display: none; }
  .cta-short { display: inline; }
  .nav-cta { padding: 11px 18px; font-size: 14.5px; }
  .brand small { font-size: 9px; }
  .deal-grid { grid-template-columns: 1fr; }
  .exchange { transform: rotate(90deg); margin-block: 6px; }
  .stat-block, .stat-block.big { grid-column: span 12; }
  .float-card { display: none; }
  .team-head { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
}
