:root {
  --bg: #FAFAF7;
  --bg-2: #F2F0EA;
  --ink: #0E0E0E;
  --ink-2: #1a1a1a;
  --muted: #6b6b6b;
  --muted-2: #9a9a9a;
  --rule: rgba(14,14,14,0.10);
  --rule-strong: rgba(14,14,14,0.22);
  --accent: #FF3D2E;
  --accent-2: #FFB800;
  --accent-3: #2DD4BF;
  --accent-4: #6366F1;
  --display: "Space Grotesk", "Inter Tight", system-ui, sans-serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input[type="range"] { width: 100%; }

/* ───── Type ───── */
.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.9;
}
.h-hero {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.86;
  font-size: clamp(72px, 13vw, 220px);
  text-wrap: balance;
}
.h-section {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(36px, 4.6vw, 68px);
  text-wrap: balance;
}
.h-card {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(24px, 2.2vw, 32px);
}
.lede {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.5;
  max-width: 56ch;
  color: var(--muted);
  text-wrap: pretty;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow .arr { color: var(--accent); margin-right: 8px; }

/* ───── Layout ───── */
.wrap { width: min(1680px, 100% - 48px); margin-inline: auto; }
.pad-y { padding-block: clamp(56px, 6vw, 100px); }

/* ───── Nav ───── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 18px 24px;
  display: flex; justify-content: center;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.nav-inner {
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 14px 22px;
  background: rgba(250,250,247,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--rule);
  border-radius: 100px;
}
.nav-logo {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-logo sup { font-family: var(--mono); font-size: 9px; opacity: 0.5; letter-spacing: 0.05em; }
.nav-links {
  display: flex; gap: 4px; justify-content: center;
  font-family: var(--body); font-weight: 500; font-size: 13px;
}
.nav-links a {
  padding: 8px 16px; border-radius: 999px;
  transition: background .25s, color .25s;
}
.nav-links a:hover { background: var(--ink); color: var(--bg); }
.nav-count {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent);
}
.nav-right {
  display: flex; gap: 10px; justify-content: flex-end; align-items: center;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-family: var(--body); font-weight: 500; font-size: 13px;
  transition: background .3s, transform .3s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* ───── Hero ───── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  padding: 92px 24px 16px;
  display: flex;
}
.hero-stage {
  position: relative;
  flex: 1;
  width: 100%;
  margin-inline: auto;
  border-radius: 28px;
  overflow: hidden;
  background: #0E0E0E;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.4vw, 32px) clamp(20px, 3vw, 44px);
  gap: 14px;
  min-height: 0;
}
.hero-spacer { flex: 1; min-height: 60px; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #2a1a14 0%, #0E0E0E 100%);
  overflow: hidden;
}
.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  mix-blend-mode: screen;
  opacity: 0.85;
  will-change: transform;
}
.hero-bg .blob.b1 { width: 55vw; height: 55vw; background: #ff3d2e; left: -10%; top: -20%; animation: drift1 2.6s ease-in-out infinite alternate; }
.hero-bg .blob.b2 { width: 45vw; height: 45vw; background: #ff8c1a; right: -8%; top: -10%; animation: drift2 3.2s ease-in-out infinite alternate; }
.hero-bg .blob.b3 { width: 50vw; height: 50vw; background: #2dd4ff; right: 0%; bottom: -20%; animation: drift3 2.8s ease-in-out infinite alternate; }
.hero-bg .blob.b4 { width: 50vw; height: 50vw; background: #6366f1; left: -5%; bottom: -15%; animation: drift4 3.4s ease-in-out infinite alternate; }
.hero-bg .blob.b5 { width: 35vw; height: 35vw; background: #ffe14d; left: 35%; top: 30%; animation: drift5 2.2s ease-in-out infinite alternate; opacity: 0.6; }
@keyframes drift1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(15vw,10vh) scale(1.15); } }
@keyframes drift2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-12vw,8vh) scale(1.1); } }
@keyframes drift3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-15vw,-12vh) scale(1.2); } }
@keyframes drift4 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(18vw,-10vh) scale(1.1); } }
@keyframes drift5 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-8vw,-6vh) scale(1.3); } }
.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(0,0,0,0.25) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0; z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.35'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-top {
  position: relative; z-index: 5;
  display: flex; justify-content: space-between; gap: 24px;
  color: #fff;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
}
.hero-top .stack { display: flex; flex-direction: column; gap: 2px; text-align: right; }

.hero-content {
  position: relative; z-index: 5;
  color: #fff;
  display: flex; flex-direction: column;
  gap: 10px;
}
.hero-content .copyright {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  opacity: 0.85;
}
.hero-content .h-hero {
  color: #fff;
  font-size: clamp(52px, min(11vw, 14vh), 280px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-transform: uppercase;
  margin: 0;
}

.hero-meta {
  position: relative; z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: clamp(16px, 2.4vw, 40px);
  align-items: end;
  color: #fff;
  margin-top: 8px;
}
.hero-meta .blurb { max-width: 42ch; color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.45; }
.hero-meta .services-list {
  font-family: var(--display); font-weight: 500; font-size: 13px;
  display: flex; flex-direction: column; gap: 2px;
  color: #fff;
  text-align: left;
}
.hero-meta .hero-ctas {
  display: flex; flex-direction: column; gap: 8px;
}
.partner-strip {
  position: relative; z-index: 5;
  display: flex; align-items: center; gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  flex-wrap: wrap;
  margin-top: 6px;
}
.partner-strip .ps-label { opacity: 1; color: #fff; }
.partner-badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.partner-badge-img { height: 44px; width: auto; object-fit: contain; border-radius: 6px; }
.partner-badge-img:first-child { height: 36px; }
.pbadge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-family: var(--display); font-weight: 500; font-size: 11.5px; letter-spacing: -0.005em; text-transform: none;
  color: #fff;
  transition: background .25s, border-color .25s;
}
.pbadge:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.pbadge .pdot { width: 6px; height: 6px; border-radius: 50%; }
.pbadge .ptag { font-family: var(--mono); font-size: 8.5px; opacity: 0.6; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 880px) {
  .hero-meta { grid-template-columns: 1fr; }
  .hero-content .h-hero { font-size: clamp(44px, 12vw, 80px); }
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--body); font-weight: 500; font-size: 14px;
  border: 1px solid var(--ink);
  background: transparent; color: var(--ink);
  transition: background .3s, color .3s, transform .3s, border-color .3s;
  white-space: nowrap;
}
.btn.dark { background: var(--ink); color: var(--bg); }
.btn.light { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn.accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn .pip {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.btn.dark .pip { background: var(--accent); }
.btn.light .pip { background: var(--accent); }
.btn:hover { transform: translateY(-1px); }
.btn.dark:hover { background: var(--accent); border-color: var(--accent); }
.btn.light:hover { background: var(--ink); color: var(--bg); }
.btn.accent:hover { background: #e22d1e; border-color: #e22d1e; }

/* ───── Section head ───── */
.sec-head {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.sec-head .left { display: flex; flex-direction: column; gap: 8px; }
.sec-head .right { display: flex; flex-direction: column; gap: 6px; align-items: end; text-align: right; }
.sec-head .right .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.sec-head .right .val { font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
@media (max-width: 880px) {
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .sec-head .right { text-align: left; align-items: start; }
}

/* ───── Stats ───── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  display: flex; flex-direction: column; gap: 14px;
}
.stat .big {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.95; letter-spacing: -0.04em;
}
.stat .rule { height: 1px; background: var(--rule-strong); }
.stat .label { font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.stat .sub { color: var(--muted); font-size: 14px; line-height: 1.4; }
@media (max-width: 880px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ───── Marquee bigmark ───── */
.bigmark {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.85; letter-spacing: -0.05em;
  text-align: center;
  padding: clamp(40px, 6vw, 100px) 0 0;
  position: relative;
  white-space: nowrap;
}
.bigmark .ital { font-style: italic; font-weight: 400; font-family: "Instrument Serif", serif; }
.bigmark .stamp {
  display: inline-block;
  background: var(--ink); color: var(--bg);
  padding: 0 0.05em;
  border-radius: 0.04em;
}

/* ───── Process ───── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.process-card {
  background: var(--bg);
  padding: 36px 32px 36px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 320px;
  transition: background .35s;
  position: relative;
  cursor: default;
}
.process-card:hover { background: var(--ink); color: var(--bg); }
.process-card:hover .pc-num { color: var(--accent); }
.process-card .pc-num {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  color: var(--muted); transition: color .35s;
  display: flex; align-items: center; gap: 8px;
}
.process-card .pc-num::before {
  content: ""; width: 18px; height: 1px; background: currentColor; display: inline-block;
}
.process-card .pc-title { font-family: var(--display); font-weight: 600; font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.02em; line-height: 1.1; }
.process-card .pc-body { font-size: 14.5px; line-height: 1.55; opacity: 0.85; max-width: 36ch; }
.process-card .pc-tags {
  margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px;
}
.process-card .pc-tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.05em;
  padding: 6px 10px; border-radius: 999px;
  border: 1px solid currentColor; opacity: 0.7;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .process-grid { grid-template-columns: 1fr; } }

/* ───── Services ───── */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  border-radius: 28px;
  padding: clamp(32px, 3vw, 48px);
  display: flex; flex-direction: column; gap: 28px;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.svc.a { background: var(--bg-2); color: var(--ink); }
.svc.b { background: var(--ink); color: var(--bg); }
.svc-head { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.svc-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 999px;
  border: 1px solid currentColor; opacity: 0.85;
}
.svc-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.svc-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; opacity: 0.6; }
.svc-title { font-family: var(--display); font-weight: 600; letter-spacing: -0.035em; font-size: clamp(36px, 4.4vw, 64px); line-height: 0.95; }
.svc-title .ital { font-style: italic; font-weight: 400; font-family: "Instrument Serif", serif; }
.svc-body { font-size: 15px; line-height: 1.55; opacity: 0.78; max-width: 44ch; }

.svc-list { display: grid; gap: 0; margin-top: auto; border-top: 1px solid currentColor; }
.svc.a .svc-list { border-top-color: var(--rule-strong); }
.svc.b .svc-list { border-top-color: rgba(255,255,255,0.16); }
.svc-list-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: padding-left .35s;
}
.svc.a .svc-list-item { border-bottom-color: var(--rule-strong); }
.svc.b .svc-list-item { border-bottom-color: rgba(255,255,255,0.16); }
.svc-list-item .idx { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; opacity: 0.55; font-weight: 400; }
.svc-list-item .arr { opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s; font-family: var(--mono); }
.svc-list-item:hover { padding-left: 12px; }
.svc-list-item:hover .arr { opacity: 1; transform: translateX(0); }
.svc.a .svc-list-item:hover { color: var(--accent); }
.svc.b .svc-list-item:hover { color: #FFB57A; }
/* Accordion description */
.svc-list-desc {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding-bottom: 0;
  transition: grid-template-rows .35s ease, padding-bottom .35s ease;
}
.svc-list-desc.open { grid-template-rows: 1fr; padding-bottom: 14px; }
.svc-list-desc > span {
  overflow: hidden;
  font-family: var(--body);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  opacity: 0.72;
}
.svc.b .svc-list-desc > span { color: rgba(255,255,255,0.72); }
.svc.a .svc-list-desc > span { color: var(--ink); }

/* Auto-illustration */
.svc-illo {
  position: relative; height: 130px;
  border-radius: 16px;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 24px);
  overflow: hidden;
  padding: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.svc.b .svc-illo {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 24px);
}
.svc-illo .node {
  height: 36px; min-width: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: currentColor;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
}
.svc-illo .node span { color: var(--bg); mix-blend-mode: difference; }
.svc.a .svc-illo .node { background: var(--ink); }
.svc.a .svc-illo .node span { color: var(--bg); mix-blend-mode: normal; }
.svc.b .svc-illo .node { background: var(--bg); }
.svc.b .svc-illo .node span { color: var(--ink); mix-blend-mode: normal; }
.svc-illo .node.acc { background: var(--accent); }
.svc-illo .node.acc span { color: #fff; }
.svc-illo .arrow {
  flex: 1; height: 1px; background: currentColor; opacity: 0.3;
  position: relative;
}
.svc-illo .arrow::after {
  content: "→"; position: absolute; right: -4px; top: -12px;
  font-family: var(--mono); font-size: 14px;
}
.svc-illo .ping {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; opacity: 0.7;
  display: flex; align-items: center; gap: 6px;
}
.svc-illo .ping::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,61,46,0.5); }
  100% { box-shadow: 0 0 0 12px rgba(255,61,46,0); }
}

/* Envelope cluster (newsletters) */
.env-cluster { position: relative; height: 150px; display: flex; align-items: center; justify-content: center; }
.env {
  position: absolute; width: 200px; height: 120px;
  border-radius: 10px; background: var(--bg);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.4);
  overflow: hidden;
  padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.env .b1 { height: 8px; background: var(--ink); border-radius: 2px; width: 60%; opacity: 0.8; }
.env .b2 { height: 4px; background: var(--ink); border-radius: 2px; width: 90%; opacity: 0.25; }
.env .b3 { height: 4px; background: var(--ink); border-radius: 2px; width: 75%; opacity: 0.25; }
.env .acc { margin-top: auto; height: 14px; width: 38%; background: var(--accent); border-radius: 3px; }
.env-1 { transform: translate(-90px, 8px) rotate(-9deg); z-index: 1; }
.env-2 { transform: translate(0, -12px) rotate(2deg); z-index: 3; }
.env-3 { transform: translate(90px, 8px) rotate(9deg); z-index: 2; }
.svc.b:hover .env-1 { transform: translate(-115px, 14px) rotate(-14deg); }
.svc.b:hover .env-3 { transform: translate(115px, 14px) rotate(14deg); }

/* ───── Calculator ───── */
.calc-section {
  border-radius: 32px;
  background: var(--ink);
  color: var(--bg);
  padding: clamp(40px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.calc-section .sec-head .right .label,
.calc-section .sec-head .right .val { color: var(--bg); }
.calc-head .h-section { color: var(--bg); }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 980px) { .calc-grid { grid-template-columns: 1fr; gap: 32px; } }

.calc-inputs { display: flex; flex-direction: column; gap: 28px; }
.calc-field {
  display: flex; flex-direction: column; gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.calc-field:last-of-type { border-bottom: 0; padding-bottom: 0; }
.calc-field-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
}
.calc-field-label {
  font-family: var(--display); font-weight: 500; font-size: 16px; letter-spacing: -0.01em;
  display: flex; flex-direction: column; gap: 2px;
}
.calc-field-label small { font-family: var(--body); font-weight: 400; color: var(--muted-2); font-size: 12px; letter-spacing: 0; }
.calc-field-val {
  font-family: var(--display); font-weight: 600; font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.025em; color: var(--bg);
  font-variant-numeric: tabular-nums;
}
.calc-field-val .unit { font-size: 0.5em; color: var(--muted-2); font-weight: 500; margin-left: 4px; letter-spacing: 0; }

/* Range slider */
.slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.slider::-webkit-slider-runnable-track { height: 4px; border-radius: 999px; }
.slider::-moz-range-track { height: 4px; border-radius: 999px; background: rgba(255,255,255,0.12); }
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 1px var(--accent);
  margin-top: -9px;
  cursor: grab;
  transition: transform .2s;
}
.slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.05); }
.slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--ink);
  box-shadow: 0 0 0 1px var(--accent);
  cursor: grab;
}
.slider-row { display: flex; flex-direction: column; gap: 8px; }
.slider-ticks {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10.5px; color: var(--muted-2);
  letter-spacing: 0.06em;
}

/* Segmented */
.seg {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
.seg button {
  padding: 10px 14px; border-radius: 8px;
  font-family: var(--body); font-weight: 500; font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: background .25s, color .25s;
}
.seg button.on { background: var(--bg); color: var(--ink); }

/* Calc result */
.calc-result {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, #1c1c1c 0%, #0e0e0e 100%);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: ""; position: absolute; top: -40%; right: -20%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: 0.18;
  filter: blur(20px);
  pointer-events: none;
}
.calc-result-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted-2);
}
.calc-result-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95; letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  color: #fff;
  transition: filter .3s;
}
.calc-result-period {
  font-family: var(--body); font-weight: 500; font-size: 16px; color: var(--muted-2);
}
.calc-result-breakdown {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--mono); font-size: 12px;
}
.calc-result-breakdown .row { display: flex; justify-content: space-between; align-items: baseline; }
.calc-result-breakdown .row .l { color: var(--muted-2); }
.calc-result-breakdown .row .v { color: var(--bg); font-family: var(--display); font-size: 16px; font-weight: 500; font-variant-numeric: tabular-nums; }
.calc-result-breakdown .row .v.acc { color: var(--accent); }

.calc-cta {
  margin-top: 12px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.calc-disclaimer {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--muted-2); line-height: 1.5;
  text-align: center;
  margin-top: 32px;
}

/* ───── CTA ───── */
.cta-block { text-align: center; padding: clamp(60px, 8vw, 140px) 0; }
.cta-headline {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(56px, 9vw, 150px);
  line-height: 0.9; letter-spacing: -0.045em;
  text-wrap: balance;
}
.cta-headline .ital { font-style: italic; font-weight: 400; font-family: "Instrument Serif", serif; }
.cta-headline .dot {
  display: inline-block; width: 0.22em; height: 0.22em; border-radius: 50%;
  background: var(--accent); vertical-align: 0.04em; margin-left: 0.05em;
}
.cta-sub {
  font-size: 17px; max-width: 50ch; margin: 28px auto 36px;
  color: var(--muted); line-height: 1.5;
}
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ───── Footer ───── */
.footer { padding: 40px 0 32px; border-top: 1px solid var(--rule); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 { margin: 0 0 12px; font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.footer-grid .col { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-grid .col a { transition: color .25s; }
.footer-grid .col a:hover { color: var(--accent); }
.footer-grid .brand .mark { font-family: var(--display); font-weight: 700; font-size: 36px; letter-spacing: -0.035em; }
.footer-grid .brand p { color: var(--muted); font-size: 14px; max-width: 30ch; line-height: 1.5; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted);
  padding-top: 20px; border-top: 1px solid var(--rule);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; gap: 8px; } }

/* ───── Video block ───── */
.video-block {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--ink);
}
.video-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, #c11600 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, #1a1d2e 0%, transparent 60%),
    linear-gradient(135deg, #0e0e0e 0%, #2a1a14 100%);
}
.video-label {
  position: absolute; top: 22px; left: 24px; color: var(--bg);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; gap: 10px; align-items: center;
}
.video-label .rec { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.video-tc {
  position: absolute; bottom: 22px; right: 24px;
  font-family: var(--mono); font-size: 11px; color: var(--bg); opacity: 0.75;
}
.play-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(80px, 8vw, 130px); height: clamp(80px, 8vw, 130px);
  border-radius: 50%;
  background: var(--bg); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .3s, transform .4s cubic-bezier(.2,.7,.2,1);
}
.play-btn:hover { background: var(--accent); transform: translate(-50%, -50%) scale(1.08); }
.play-btn::after {
  content: ""; width: 0; height: 0;
  border-left: 14px solid currentColor;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.video-cap {
  position: absolute; bottom: 22px; left: 24px; color: var(--bg);
  font-family: var(--display); font-weight: 500; font-size: 14px;
  max-width: 28ch; line-height: 1.4;
}

/* ───── Reveal ───── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ───── Hamburger button (hidden on desktop) ───── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  cursor: pointer;
  background: transparent; border: none;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───── Mobile nav drawer ───── */
.nav-drawer {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 32px 48px;
  gap: 4px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.nav-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nd-link {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 9vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: rgba(255,255,255,0.85);
  transition: color .2s;
}
.nd-link:hover { color: #fff; }
.nd-cta {
  margin-top: 32px;
  display: inline-flex; align-items: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--body); font-weight: 500; font-size: 16px;
  transition: background .25s;
}
.nd-cta:hover { background: #e22d1e; }

/* Mobile cleanup */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-drawer { display: flex; }
  .hero-top { font-size: 10px; gap: 8px; }
  .hero-meta { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────── */
/* ───── Mobile overrides — hero & layout ──────── */
/* ─────────────────────────────────────────────── */
@media (max-width: 640px) {

  /* ── Hero: framed like desktop, nav sits outside ── */
  .hero {
    padding: 72px 10px 10px;
    height: 100dvh;
    height: 100vh;
    background: transparent;
  }
  .hero-stage {
    border-radius: 20px;
    padding: 22px 22px 32px;
    gap: 0;
    display: flex;
    flex-direction: column;
  }

  /* ── Blobs: corners only, no center wash ── */
  .hero-bg .blob { filter: blur(48px); opacity: 0.92; }
  .hero-bg .blob.b1 { width: max(80vw, 300px); height: max(80vw, 300px); top: -15%; left: -25%; }
  .hero-bg .blob.b2 { width: max(75vw, 280px); height: max(75vw, 280px); top: -10%; right: -25%; }
  .hero-bg .blob.b3 { width: max(80vw, 300px); height: max(80vw, 300px); bottom: -15%; right: -20%; }
  .hero-bg .blob.b4 { width: max(75vw, 280px); height: max(75vw, 280px); bottom: -10%; left: -20%; }
  .hero-bg .blob.b5 { display: none; }

  /* ── Hide elements not needed on mobile ── */
  .hero-spacer { display: none; }
  .hero-content .copyright { display: none; }

  /* ── Agency label: tik kairė pusė, dešinė paslėpta ── */
  .hero-top {
    display: flex;
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .hero-top .stack { display: none; }

  /* ── hero-content: tekstas žemiau ── */
  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-top: 28vh;
  }

  /* ── Headline ── */
  .hero-content .h-hero {
    font-size: clamp(42px, 11.5vw, 62px) !important;
    line-height: 0.93;
    color: #fff;
  }

  /* ── hero-meta: fills remaining space, services pinned bottom ── */
  .hero-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0;
    margin-top: 18px;
    grid-template-columns: unset;
  }
  .hero-meta .blurb {
    font-size: 14px;
    line-height: 1.52;
    color: rgba(255,255,255,0.82);
    max-width: 100%;
  }
  /* Services + CTAs */
  .hero-meta .services-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2px 12px;
    font-size: 13px;
    font-family: var(--display);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    padding-top: 20px;
  }
  .hero-meta .hero-ctas {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 24px;
  }
  .hero-meta .hero-ctas .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
  }

  /* ── Partner strip ── */
  .partner-strip {
    padding-top: 20px;
    margin-top: auto;
    gap: 8px;
    border-top-color: rgba(255,255,255,0.12);
  }
  .partner-strip .ps-label { font-size: 8.5px; }
  .pbadge { padding: 5px 10px; font-size: 11px; }
  .partner-badge-img { height: 34px; }

  /* ── Nav ── */
  .nav { padding: 10px 16px; }
  .nav-inner { padding: 10px 16px; }
  .nav-count { display: none; }
  .nav-cta { padding: 9px 16px; font-size: 13px; }

  .nav.over-hero .nav-inner {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .nav.over-hero .nav-logo { color: var(--ink); }
  .nav.over-hero .nav-cta {
    background: rgba(0,0,0,0.08);
    color: var(--ink);
    border-color: rgba(0,0,0,0.15);
  }
  .nav.over-hero .nav-hamburger { color: var(--ink); }
  .nav-hamburger { color: var(--ink); }

  /* ── Sections ── */
  .wrap { width: calc(100% - 32px); }
  .pad-y { padding-block: clamp(40px, 7vw, 64px); }
  .sec-head { gap: 12px; margin-bottom: 32px; }

  /* Stats */
  .stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat .big { font-size: clamp(44px, 11vw, 72px); }

  /* Process */
  .process-card { min-height: unset; padding: 24px 20px; }

  /* Services */
  .svc { min-height: unset; padding: 28px 22px; gap: 20px; }
  .svc-title { font-size: clamp(30px, 8.5vw, 52px); }

  /* Calculator */
  .calc-section { padding: 28px 20px; }
  .calc-result-num { font-size: clamp(44px, 13vw, 80px); }

  /* Contact — full-width on mobile */
  .contact-section { padding: 28px 18px; border-radius: 18px; }
  .contact-headline { font-size: clamp(32px, 9vw, 56px); }
  .contact-grid { gap: 24px; }
  .contact-grid > .form { padding: 22px 18px; border-radius: 18px; }
  .contact-info { margin-top: 4px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .brand .mark { font-size: 26px; }
}

/* ───────────────────────────────────────── */
/* ───── Newsletter marquee section ─────── */
/* ───────────────────────────────────────── */
.nl-section { padding: clamp(36px, 4vw, 64px) 0 clamp(24px, 3vw, 40px); overflow: hidden; position: relative; }
.nl-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; padding: 0 24px; margin-bottom: 24px;
  max-width: 1680px; margin-inline: auto;
}
.nl-head .h-card { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 1.8vw, 28px); letter-spacing: -0.02em; max-width: 32ch; text-wrap: balance; }
/* ── Infinite ticker ── */
.ticker-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-card {
  width: 280px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-2);
  box-shadow: 0 8px 28px -12px rgba(0,0,0,0.18);
}
.ticker-card img {
  width: 100%;
  display: block;
  transition: transform 7s ease;
}
.ticker-card:hover img,
.ticker-card.is-open img { transform: translateY(calc(-100% + 420px)); }

/* ───── Industries ticker ───── */
.ind-ticker-section {
  padding: clamp(40px, 5vw, 72px) 0;
  overflow: hidden;
}
.ind-ticker-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ind-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ind-scroll 30s linear infinite;
}
.ind-ticker-track:hover { animation-play-state: paused; }
@keyframes ind-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ind-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--fg);
}
.ind-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ───── Partner badges (light variant) ───── */
.partners-block {
  margin-top: 18px;
  padding: 28px 32px;
  border-radius: 24px;
  background: var(--bg-2);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
}
.partners-block .pb-label { display: flex; flex-direction: column; gap: 4px; border-right: 1px solid var(--rule-strong); padding-right: 32px; }
.partners-block .pb-label .small { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.partners-block .pb-label .big { font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -0.015em; }
.partners-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.pbadge.light {
  background: #fff; border: 1px solid var(--rule); color: var(--ink);
  padding: 10px 16px; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px;
  font-family: var(--display); font-weight: 500; letter-spacing: -0.005em;
  transition: background .25s, color .25s, border-color .25s;
}
.pbadge.light .pdot { width: 8px; height: 8px; border-radius: 50%; }
.pbadge.light .ptag { font-family: var(--mono); font-size: 9.5px; opacity: 0.6; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.pbadge.light:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pbadge.light:hover .ptag { color: rgba(255,255,255,0.6); }
@media (max-width: 720px) {
  .partners-block { grid-template-columns: 1fr; }
  .partners-block .pb-label { border-right: 0; border-bottom: 1px solid var(--rule-strong); padding-right: 0; padding-bottom: 14px; }
}

/* ───── B2B section ───── */
.b2b-section {
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,61,46,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(99,102,241,0.18) 0%, transparent 60%),
    linear-gradient(160deg, #0E0E0E 0%, #1c1816 100%);
  color: var(--bg);
  padding: clamp(36px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
/* Animated dark blobs (slow, muted) */
.b2b-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.b2b-bg .blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.45;
  will-change: transform;
}
.b2b-bg .blob.bb1 { width: 40vw; height: 40vw; background: #ff3d2e; left: -8%; top: -10%; animation: bdrift1 3.4s ease-in-out infinite alternate; }
.b2b-bg .blob.bb2 { width: 35vw; height: 35vw; background: #6366f1; right: -6%; top: 10%; animation: bdrift2 3.8s ease-in-out infinite alternate; }
.b2b-bg .blob.bb3 { width: 38vw; height: 38vw; background: #2dd4ff; right: 5%; bottom: -12%; animation: bdrift3 3.2s ease-in-out infinite alternate; opacity: 0.3; }
.b2b-bg .blob.bb4 { width: 32vw; height: 32vw; background: #ff8c1a; left: 20%; bottom: -8%; animation: bdrift4 4s ease-in-out infinite alternate; opacity: 0.35; }
@keyframes bdrift1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(10vw, 8vh) scale(1.15); } }
@keyframes bdrift2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-8vw, 12vh) scale(1.1); } }
@keyframes bdrift3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-10vw, -10vh) scale(1.2); } }
@keyframes bdrift4 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(12vw, -8vh) scale(1.15); } }

/* Ensure content sits above blobs */
.b2b-section > *:not(.b2b-bg) { position: relative; z-index: 1; }

/* Divider between description and calculator */
.b2b-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: clamp(32px, 4vw, 56px) 0 clamp(28px, 3vw, 40px);
}

/* Sub-head for calculator inside merged section */
.b2b-sub-head {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.b2b-sub-head .h-section { font-size: clamp(32px, 3.8vw, 56px); line-height: 1; }

.b2b-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 3.5vw, 48px); align-items: start; }
@media (max-width: 980px) { .b2b-grid { grid-template-columns: 1fr; } }
.b2b-tag-row { margin-bottom: 22px; }

/* Centered flow layout */
.b2b-flow {
  display: flex; flex-direction: column;
  gap: clamp(28px, 3vw, 44px);
  align-items: stretch;
  grid-template-columns: 1fr;
}
.b2b-head-block {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 60ch;
}
.b2b-flow .b2b-stats { grid-template-columns: repeat(4, 1fr); }
.b2b-flow .b2b-features { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .b2b-flow .b2b-stats, .b2b-flow .b2b-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .b2b-flow .b2b-stats, .b2b-flow .b2b-features { grid-template-columns: 1fr; }
}
.b2b-fit-wide .b2b-fit-grid { grid-template-columns: repeat(6, 1fr); gap: 8px 16px; }
@media (max-width: 980px) {
  .b2b-fit-wide .b2b-fit-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .b2b-fit-wide .b2b-fit-grid { grid-template-columns: 1fr 1fr; }
}
.b2b-left { display: flex; flex-direction: column; gap: 22px; }
.b2b-right { display: flex; flex-direction: column; gap: 14px; }
.b2b-fit {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.b2b-fit-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-2);
}
.b2b-fit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
  font-family: var(--display); font-weight: 500; font-size: 14.5px; color: rgba(255,255,255,0.9);
  letter-spacing: -0.005em;
}
.b2b-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  align-self: flex-start;
}
.b2b-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s ease-out infinite; }
.b2b-title { font-family: var(--display); font-weight: 600; font-size: clamp(36px, 4.6vw, 64px); line-height: 0.95; letter-spacing: -0.035em; }
.b2b-title .ital { font-style: italic; font-family: "Instrument Serif", serif; font-weight: 400; }
.b2b-body { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.55; max-width: 50ch; }
.b2b-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; overflow: hidden; }
.b2b-feat { background: #141414; padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.b2b-feat .fnum { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--muted-2); }
.b2b-feat .ftitle { font-family: var(--display); font-weight: 500; font-size: 15px; letter-spacing: -0.01em; }
.b2b-feat .fsub { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.4; }
.b2b-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.b2b-stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.b2b-stat .bnum {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 5vw, 64px); line-height: 0.9; letter-spacing: -0.04em;
  color: #fff;
}
.b2b-stat .bnum .acc { color: var(--accent); }
.b2b-stat .blabel { font-family: var(--display); font-weight: 500; font-size: 14px; letter-spacing: -0.005em; }
.b2b-stat .bsub { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.4; }
.b2b-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

/* ───── Contact form ───── */
.contact-section {
  border-radius: 28px;
  background: var(--bg-2);
  padding: clamp(36px, 4vw, 70px);
  position: relative;
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "intro form" "info form";
  gap: clamp(20px, 3vw, 40px) clamp(32px, 4vw, 64px);
  align-items: start;
}
.contact-intro { grid-area: intro; display: flex; flex-direction: column; gap: 24px; }
.contact-grid > .form { grid-area: form; }
.contact-grid > .contact-info { grid-area: info; }
@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "form" "info";
  }
}
.contact-headline { font-family: var(--display); font-weight: 700; font-size: clamp(38px, 5vw, 74px); line-height: 0.92; letter-spacing: -0.04em; text-wrap: balance; }
.contact-headline .ital { font-style: italic; font-family: "Instrument Serif", serif; font-weight: 400; }
.contact-headline .q { color: var(--accent); }
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 10px; }
.contact-card { background: #fff; border-radius: 16px; padding: 16px 18px; display: flex; flex-direction: column; gap: 3px; border: 1px solid var(--rule); }
.contact-card .cclabel { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.contact-card .ccval { font-family: var(--display); font-weight: 500; font-size: 17px; letter-spacing: -0.015em; }
.contact-card .ccval a { transition: color .25s; }
.contact-card .ccval a:hover { color: var(--accent); }
.contact-card .ccsub { font-size: 12.5px; color: var(--muted); }

/* Contact info — less prominent */
.contact-info {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
}
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left .25s;
}
.contact-row:hover { padding-left: 6px; }
.ci-label { display: flex; flex-direction: column; gap: 2px; }
.ci-num { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; color: var(--muted-2); }
.ci-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.ci-content { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ci-main {
  font-family: var(--display); font-weight: 500; font-size: clamp(15px, 1.3vw, 17px);
  letter-spacing: -0.01em; color: var(--ink);
  word-break: break-word;
}
.ci-main.link { transition: color .25s; }
.ci-main.link:hover { color: var(--accent); }
.ci-sub { font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.04em; }
@media (max-width: 560px) {
  .contact-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
}

.form { background: transparent; border-radius: 24px; padding: clamp(24px, 3vw, 36px); border: none; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.field label .req { color: var(--accent); }
.field input, .field textarea {
  font: inherit;
  font-family: var(--display); font-weight: 500; font-size: 16px; letter-spacing: -0.01em;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--rule-strong);
  padding: 8px 0 10px; color: var(--ink); outline: none;
  border-radius: 0;
  transition: border-color .25s;
  width: 100%;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); font-weight: 400; }
.field textarea { resize: vertical; min-height: 110px; font-family: var(--body); font-size: 15px; padding-top: 28px; }
.field:has(textarea) label { margin-top: 20px; }
.form-select {
  appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 0 center;
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  border-radius: 0;
  padding: 10px 24px 10px 0;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  width: 100%;
  transition: border-color .2s;
}
.form-select:focus { outline: none; border-bottom-color: var(--accent); }
.form-select option { color: var(--fg); background: #fff; }
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  padding-top: 4px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  user-select: none;
}
.check-item input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--rule-strong);
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  position: relative;
}
.check-item input[type="checkbox"]:checked {
  background-color: var(--fg);
  border-color: var(--fg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
}
.btn-submit-full {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.form-submit-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.form-submit-row .small { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--muted); max-width: 32ch; line-height: 1.5; }
.form .btn-submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 24px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px;
  font-family: var(--body); font-weight: 500; font-size: 14px;
  transition: background .3s, transform .3s;
  border: 0; cursor: pointer;
}
.form .btn-submit:hover { background: var(--accent); transform: translateY(-1px); }
.form .btn-submit .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.form .btn-submit:hover .pip { background: #fff; }
.form-success {
  background: var(--accent); color: #fff;
  padding: 18px 22px; border-radius: 16px;
  font-family: var(--display); font-weight: 500; font-size: 16px;
  display: none;
}
.form-success.show { display: block; }

/* ───── B2B Calculator (lighter variant within b2b-section) ───── */
.b2b-calc {
  margin-top: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.5vw, 48px);
  align-items: stretch;
}
@media (max-width: 880px) { .b2b-calc { grid-template-columns: 1fr; } }
.b2b-calc-head {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.b2b-calc-head .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.b2b-calc-inputs { display: flex; flex-direction: column; gap: 24px; }
.b2b-calc-field {
  display: flex; flex-direction: column; gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.b2b-calc-field:last-of-type { border-bottom: 0; padding-bottom: 0; }
.b2b-calc-field-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.b2b-calc-field-label {
  font-family: var(--display); font-weight: 500; font-size: 15px; letter-spacing: -0.01em;
  display: flex; flex-direction: column; gap: 2px;
}
.b2b-calc-field-label small { font-family: var(--body); font-weight: 400; color: var(--muted-2); font-size: 12px; letter-spacing: 0; }
.b2b-calc-field-val { font-family: var(--display); font-weight: 600; font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.025em; color: var(--bg); font-variant-numeric: tabular-nums; }
.b2b-calc-field-val .sub { font-size: 0.5em; color: var(--muted-2); font-weight: 500; margin-left: 4px; letter-spacing: 0; }

/* Calculator computed-summary block */
.b2b-calc-summary {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 4px;
}
.b2b-sum-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.b2b-sum-row:last-child { border-bottom: 0; }
.b2b-sum-row .lbl {
  font-family: var(--display); font-weight: 500; font-size: 14px; letter-spacing: -0.005em;
  color: rgba(255,255,255,0.85);
}
.b2b-sum-row .val {
  font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.025em; color: var(--bg); font-variant-numeric: tabular-nums;
}
.b2b-sum-row .val .sub {
  font-family: var(--body); font-weight: 500; font-size: 11px;
  color: var(--muted-2); margin-left: 6px; letter-spacing: 0;
}

.b2b-output {
  display: flex; flex-direction: column; gap: 0;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,61,46,0.08) 0%, rgba(0,0,0,0) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
}
.b2b-output-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.b2b-output-row:last-child { border-bottom: 0; padding-bottom: 0; }
.b2b-output-row:first-child { padding-top: 0; }
.b2b-output-row .lbl {
  display: flex; flex-direction: column; gap: 2px;
}
.b2b-output-row .lbl .lt { font-family: var(--display); font-weight: 500; font-size: 14px; letter-spacing: -0.005em; }
.b2b-output-row .lbl .ls { font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.04em; }
.b2b-output-row .val {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.b2b-output-row.hl .val { color: var(--accent); font-weight: 700; font-size: clamp(28px, 3.2vw, 44px); }
.b2b-output-foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.04em; line-height: 1.5;
}


