/* =========================================================
   ACE Marketing — Editorial redesign v2
   (transparent logo, animated diagrams, quote modal)
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink:        #06080F;
  --ink-2:      #0A0E1A;       /* page bg */
  --ink-3:      #11162A;       /* card bg */
  --ink-4:      #181F38;
  --line:       rgba(255,255,255,0.08);
  --line-2:     rgba(255,255,255,0.16);
  --fg:         #F4F6FB;
  --fg-2:       #C4CAD9;
  --fg-3:       #7B829A;
  --fg-4:       #4A506A;
  --brand:      #3A7BF0;
  --brand-deep: #1C56D6;
  --brand-bright: #6CA4FF;
  --cyan:       #4FC3FF;        /* chameleon glow tone */
  --accent:     #E5FF4A;
  --warm:       #FF6B5C;
  --pink:       #FF77A8;
  --purple:     #9B7BFF;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "Space Grotesk", "Inter", monospace;

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --maxw: 1280px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body {
  background: var(--ink-2);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
html { touch-action: pan-y; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--brand); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

section { position: relative; }

/* ---------- TYPE ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--brand);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { background: var(--fg-4); }

.h-section {
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.h-sub {
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 60ch;
  font-weight: 400;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(10,14,26,0.92), rgba(10,14,26,0.6) 70%, transparent);
  backdrop-filter: blur(8px);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.nav-brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
}
.nav-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  background: rgba(10,14,26,0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.05); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--fg);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s, background .2s;
}
.nav-cta:hover { background: var(--brand); color: #fff; transform: translateY(-1px); }
.nav-cta-arrow {
  width: 22px; height: 22px;
  background: var(--ink);
  color: var(--fg);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 14px;
  transition: background .2s, color .2s;
}
.nav-cta:hover .nav-cta-arrow { background: rgba(255,255,255,0.18); color: #fff; }

@media (max-width: 920px) {
  .nav-links { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s, background .2s, color .2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn-light { background: var(--fg); color: var(--ink); }
.btn-light:hover { background: var(--brand); color: #fff; transform: translateY(-1px); }
.btn-outline {
  border-color: var(--line-2); color: var(--fg); background: transparent;
}
.btn-outline:hover { border-color: var(--fg); background: rgba(255,255,255,0.04); }
.btn-arrow {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 13px;
}
.btn-primary .btn-arrow { background: rgba(255,255,255,0.2); }
.btn-light .btn-arrow { background: var(--ink); color: var(--fg); }

/* ---------- HERO ---------- */
.hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-gif {
  position: absolute;
  top: 50%; right: -40px;
  transform: translateY(-50%);
  width: clamp(360px, 42vw, 600px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at 60% 50%, #000 28%, transparent 76%);
  mask-image: radial-gradient(ellipse 72% 72% at 60% 50%, #000 28%, transparent 76%);
}
.hero-gif img {
  width: 100%; height: auto;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
  mix-blend-mode: luminosity;
  border-radius: 18px;
}
@media (max-width: 760px) {
  .hero-gif { right: -90px; width: 360px; opacity: 0.1; }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-eyebrow-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 16px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.hero-tag-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--brand);
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(58,123,240,0.4); }
  50% { transform: scale(1.3); opacity: 0.6; box-shadow: 0 0 0 8px rgba(58,123,240,0); }
}

/* hero logo */
.hero-logo-wrap {
  display: flex; justify-content: flex-start;
  margin: 12px 0 24px;
  position: relative;
}
.hero-logo {
  width: clamp(180px, 26vw, 320px);
  height: auto;
  filter: drop-shadow(0 0 80px rgba(79,195,255,0.18));
  animation: logo-float 6s ease-in-out infinite;
  transform-origin: 50% 60%;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}
.hero-logo-eye {
  /* small CSS-drawn glint over the chameleon eye */
  position: absolute; pointer-events: none;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 999px;
  top: 35%; left: 22%;
  filter: blur(2px);
  opacity: 0;
  animation: eye-blink 7s ease-in-out infinite;
}
@keyframes eye-blink {
  0%, 92%, 100% { opacity: 0; }
  94%, 98% { opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin: 0;
  text-align: left;
  max-width: 16ch;
}
.hero-title-line { display: block; }
.outlined-text {
  -webkit-text-stroke: 1.5px var(--fg);
  color: transparent;
}
.filled-image {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(110deg, var(--brand) 0%, var(--cyan) 35%, #9CC0FF 60%, var(--brand) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: gradient-pan 6s linear infinite;
}
@keyframes gradient-pan {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.hero-row-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
  margin-top: 56px;
}
.hero-body {
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--fg-2);
  line-height: 1.55;
  max-width: 56ch;
  font-weight: 400;
}
.hero-body strong { color: var(--fg); font-weight: 600; }
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
}
.hero-stats-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-stat {
  background: var(--ink-2);
  padding: 22px 18px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}
.hero-stat-num .plus { color: var(--brand); }
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 10px;
}

@media (max-width: 900px) {
  .hero-row-2 { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 96px; }
}

/* ---------- TICKER ---------- */
.ticker {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--fg);
  flex-shrink: 0;
}
.ticker-item.muted { color: var(--fg-4); }
.ticker-star { color: var(--brand); font-size: 18px; }

/* ---------- PROBLEM / PHONES ---------- */
.problem {
  padding: 130px 0 100px;
  background: var(--ink);
  position: relative;
}
.problem-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 90px;
}
.problem-head h2 { font-size: clamp(38px, 5.5vw, 76px); }
.problem-stack {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 52ch;
}
.problem-stack p { font-size: 17px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.problem-stack p strong { color: var(--fg); font-weight: 600; }
.problem-stack p.muted { color: var(--fg-3); }

.problem-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.problem-card {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.problem-card.bad { border-color: rgba(255,107,92,0.25); }
.problem-card.good { border-color: rgba(58,123,240,0.35); }
.problem-card-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  width: fit-content;
}
.problem-card.bad .problem-card-tag {
  background: rgba(255,107,92,0.1); color: var(--warm);
}
.problem-card.good .problem-card-tag {
  background: rgba(58,123,240,0.12); color: var(--brand-bright);
}
.problem-card h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--fg);
}
.problem-card p.sub {
  font-size: 14px;
  color: var(--fg-3);
  margin-bottom: 28px;
}
.problem-phone-wrap {
  display: flex; justify-content: center;
  position: relative;
  padding: 8px 0;
}

@media (max-width: 900px) {
  .problem-head { grid-template-columns: 1fr; gap: 32px; }
  .problem-row { grid-template-columns: 1fr; }
}

/* ---------- PHONE MOCKUP ---------- */
.phone {
  width: 256px;
  height: 510px;
  background: #0A0A12;
  border: 7px solid #1A1F2E;
  border-radius: 42px;
  position: relative;
  box-shadow:
    0 40px 60px -30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.03);
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 24px;
  background: #000;
  border-radius: 999px;
  z-index: 10;
}
.phone-screen {
  position: absolute; inset: 0;
  background: #050505;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-body);
}
.phone-statusbar {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 26px 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  z-index: 5;
}
.phone-statusbar-right { display: flex; gap: 6px; align-items: center; }
.sb-icon {
  display: inline-block;
  width: 14px; height: 8px;
  background: currentColor;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.sb-bars { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 12" fill="currentColor"><rect x="0" y="8" width="3" height="4" rx="0.5"/><rect x="5" y="5" width="3" height="7" rx="0.5"/><rect x="10" y="2" width="3" height="10" rx="0.5"/><rect x="15" y="0" width="3" height="12" rx="0.5"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 12" fill="currentColor"><rect x="0" y="8" width="3" height="4" rx="0.5"/><rect x="5" y="5" width="3" height="7" rx="0.5"/><rect x="10" y="2" width="3" height="10" rx="0.5"/><rect x="15" y="0" width="3" height="12" rx="0.5"/></svg>'); width: 16px; height: 11px; }
.sb-wifi { -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 12"><path fill="currentColor" d="M8 2c2.6 0 5 .9 6.8 2.4L13.5 5.8C12 4.6 10 4 8 4S4 4.6 2.5 5.8L1.2 4.4C3 2.9 5.4 2 8 2zm0 3c1.8 0 3.4.6 4.7 1.6l-1.3 1.4C10.5 7.4 9.3 7 8 7s-2.5.4-3.4 1L3.3 6.6C4.6 5.6 6.2 5 8 5zm0 3a3 3 0 0 1 2 .8L8.7 10.2C8.5 10 8.3 10 8 10s-.5 0-.7.2L6 8.8A3 3 0 0 1 8 8z"/></svg>'); mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 12"><path fill="currentColor" d="M8 2c2.6 0 5 .9 6.8 2.4L13.5 5.8C12 4.6 10 4 8 4S4 4.6 2.5 5.8L1.2 4.4C3 2.9 5.4 2 8 2zm0 3c1.8 0 3.4.6 4.7 1.6l-1.3 1.4C10.5 7.4 9.3 7 8 7s-2.5.4-3.4 1L3.3 6.6C4.6 5.6 6.2 5 8 5zm0 3a3 3 0 0 1 2 .8L8.7 10.2C8.5 10 8.3 10 8 10s-.5 0-.7.2L6 8.8A3 3 0 0 1 8 8z"/></svg>'); width: 14px; height: 10px; }
.sb-battery {
  display: inline-flex; align-items: center; gap: 2px;
  width: 26px; height: 12px;
  border: 1px solid currentColor; border-radius: 3px;
  position: relative; padding: 1px;
}
.sb-battery::after {
  content: ""; position: absolute; right: -3px; top: 3px; width: 2px; height: 6px;
  background: currentColor; border-radius: 0 1px 1px 0;
}
.sb-battery::before {
  content: ""; flex: 1; height: 100%;
  background: currentColor; border-radius: 1px;
  width: 80%;
}

/* tiktok-style feed */
.tt-card {
  position: absolute; left: 0; right: 0; bottom: 50px; top: 38px;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #0d0d12 0%, #1a1a22 100%);
}
.tt-topbar {
  display: flex; justify-content: center; gap: 20px;
  padding: 16px 0 12px;
  font-size: 13px;
  font-weight: 600;
}
.tt-topbar .active { color: #fff; position: relative; }
.tt-topbar .active::after {
  content: ""; position: absolute; bottom: -6px; left: 20%; right: 20%;
  height: 2px; background: #fff; border-radius: 2px;
}
.tt-topbar .dim { color: rgba(255,255,255,0.55); }
.tt-video {
  flex: 1; position: relative;
  background: linear-gradient(135deg, #1a2444, #2b1a4d 50%, #4a1a3a);
  overflow: hidden;
}
.tt-video.bad { background: #18181c; }
.tt-video-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
}
.tt-video-shape.a {
  top: -20px; left: -30px; width: 180px; height: 180px;
  background: rgba(58,123,240,0.55);
  animation: blob-a 14s ease-in-out infinite;
}
.tt-video-shape.b {
  bottom: -40px; right: -40px; width: 200px; height: 200px;
  background: rgba(255,119,168,0.45);
  animation: blob-b 14s ease-in-out infinite;
}
@keyframes blob-a {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.1); }
}
@keyframes blob-b {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, -40px) scale(0.95); }
}

/* floating hearts in the good phone */
.tt-hearts {
  position: absolute; inset: 0;
  pointer-events: none;
}
.tt-heart {
  position: absolute;
  bottom: 80px;
  font-size: 22px;
  color: #FF3B6B;
  opacity: 0;
  animation: heart-rise 4s linear infinite;
  text-shadow: 0 0 10px rgba(255,59,107,0.5);
}
.tt-heart.h1 { left: 75%; animation-delay: 0s; }
.tt-heart.h2 { left: 65%; animation-delay: 1.3s; font-size: 16px; }
.tt-heart.h3 { left: 80%; animation-delay: 2.6s; font-size: 28px; }
.tt-heart.h4 { left: 70%; animation-delay: 0.7s; font-size: 18px; }
@keyframes heart-rise {
  0% { transform: translate(0, 0) scale(0.5); opacity: 0; }
  15% { opacity: 1; transform: translate(0, -10px) scale(1); }
  60% { opacity: 1; }
  100% { transform: translate(-30px, -240px) scale(0.7); opacity: 0; }
}

.tt-username {
  position: absolute; bottom: 14px; left: 12px; right: 76px;
  font-size: 12px;
  font-weight: 600;
  z-index: 4;
}
.tt-username .handle { font-weight: 700; }
.tt-username .caption {
  font-size: 11px; font-weight: 400; opacity: 0.92;
  margin-top: 5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.tt-sidebar {
  position: absolute;
  right: 10px; bottom: 18px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center;
  z-index: 5;
}
.tt-sidebar-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
.tt-sidebar-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 16px;
}
.tt-sidebar-item.good .tt-sidebar-icon {
  background: linear-gradient(135deg, #FF3B6B, #FF6B5C);
  animation: heart-beat 1.6s ease-in-out infinite;
}
@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.15); }
  40% { transform: scale(1); }
  60% { transform: scale(1.08); }
  80% { transform: scale(1); }
}

/* like burst popping in occasionally */
.like-burst {
  position: absolute;
  top: 35%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: rgba(255,59,107,0.95);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(255,59,107,0.6));
  animation: burst 4s ease-out infinite;
}
@keyframes burst {
  0%, 80%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  85% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
  95% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
}

.tt-tabbar {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around; align-items: center;
  padding: 9px 0 11px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.tt-tabbar-item.active { color: #fff; }
.tt-tabbar-plus {
  background: linear-gradient(90deg, #25F4EE, #fff, #FE2C55);
  width: 40px; height: 24px;
  border-radius: 6px;
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 800px;
}
.section-head h2 { margin: 14px 0 16px; }
.section-head p { color: var(--fg-2); font-size: 18px; }

/* ---------- DIFFERENT / STATS ---------- */
.different {
  padding: 130px 0;
  background: var(--ink-2);
  position: relative;
}
.different-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 60px;
}
.different-row h2 { font-size: clamp(36px, 5vw, 72px); }
.different-row p {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 50ch;
  line-height: 1.55;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.stat-card-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
}
.stat-card-num .unit { color: var(--brand); }
.stat-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.stat-card-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
  margin-top: 4px;
}
.stat-card.feature {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  grid-column: span 2;
}
.stat-card.feature .stat-card-num { color: #fff; }
.stat-card.feature .stat-card-num .unit { color: rgba(255,255,255,0.55); }
.stat-card.feature .stat-card-label { color: rgba(255,255,255,0.85); }
.stat-card.feature .stat-card-desc { color: rgba(255,255,255,0.92); }
.stat-card.dark { background: var(--ink); }

@media (max-width: 900px) {
  .different-row { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card.feature { grid-column: span 2; }
}

/* ---------- SERVICES ---------- */
.services {
  padding: 130px 0;
  background: var(--ink);
}
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.service:first-of-type { border-top: 0; padding-top: 30px; }
.service.reverse .service-visual { order: 2; }
.service-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg-3);
}
.service-cat {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.service h3 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
}
.service-desc {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 50ch;
}
.service-points {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; gap: 12px;
}
.service-points li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: var(--fg);
}
.service-points li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--brand);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
}
.service-visual {
  position: relative;
  aspect-ratio: 1/1.05;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}

@media (max-width: 900px) {
  .service { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .service.reverse .service-visual { order: 0; }
  .service-visual { aspect-ratio: 4/3; }
}

/* ---------- SERVICE VISUAL backgrounds ---------- */
.sv-content {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,119,168,0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(58,123,240,0.3), transparent 50%),
    var(--ink-3);
}
.sv-ads {
  background:
    radial-gradient(circle at 70% 30%, rgba(58,123,240,0.35), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(155,123,255,0.2), transparent 55%),
    var(--ink-3);
}
.sv-web {
  background:
    radial-gradient(circle at 50% 50%, rgba(58,123,240,0.25), transparent 60%),
    var(--ink-3);
}

/* ---------- DIAGRAM: ORGANIC CONTENT ---------- */
.diag-organic {
  width: 86%;
  display: flex; flex-direction: column; gap: 14px;
}
.diag-organic-chart {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
}
.diag-organic-chart-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.diag-organic-chart-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.diag-organic-chart-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.diag-organic-chart-val .pct { color: var(--brand-bright); font-size: 14px; margin-left: 6px; }
.diag-organic-chart svg { width: 100%; height: 110px; display: block; }
.line-path {
  fill: none;
  stroke: var(--brand-bright);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 0; /* visible by default */
}
.line-path.in { animation: line-draw 2.4s cubic-bezier(0.2,0.7,0.2,1) both; }
@keyframes line-draw { from { stroke-dashoffset: 800; } to { stroke-dashoffset: 0; } }
.line-dot {
  fill: var(--brand-bright);
  opacity: 1;
}
.line-dot.in { animation: dot-fade .8s ease 2s both; }
@keyframes dot-fade { from { opacity: 0; } to { opacity: 1; } }

.diag-organic-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.diag-tile {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}
.diag-tile-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.diag-tile-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 4px;
  color: var(--fg);
}
.diag-tile-val .small { font-size: 13px; color: var(--brand-bright); margin-left: 4px; }

.diag-organic-feed {
  display: flex; gap: 10px;
  overflow: hidden;
}
.diag-post {
  flex: 1;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  font-size: 11px;
}
.diag-post-img {
  height: 80px;
  background: linear-gradient(135deg, #FF77A8, #9B7BFF, #3A7BF0);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease-in-out infinite;
  position: relative;
}
.diag-post-img::after {
  content: "REEL";
  position: absolute; top: 6px; right: 6px;
  font-family: var(--font-mono);
  font-size: 8px; font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 2px 6px; border-radius: 4px;
}
.diag-post-img.b { background: linear-gradient(135deg, #3A7BF0, #4FC3FF, #9B7BFF); animation-delay: -2s; }
.diag-post-img.c { background: linear-gradient(135deg, #FF6B5C, #FF77A8, #9B7BFF); animation-delay: -4s; }
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}
.diag-post-meta {
  padding: 8px 10px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
}
.diag-post-meta strong { color: var(--fg); font-weight: 600; }

/* ---------- DIAGRAM: FACEBOOK ADS ---------- */
.diag-ads {
  width: 86%;
  display: flex; flex-direction: column; gap: 14px;
}
.diag-ads-head {
  display: flex; justify-content: space-between; align-items: center;
}
.diag-ads-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.diag-ads-brand-logo {
  width: 22px; height: 22px;
  background: var(--brand);
  border-radius: 6px;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
}
.diag-ads-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.diag-ads-live::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px;
  background: #2DD47A;
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(45,212,122,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(45,212,122,0); }
}
.diag-ads-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.diag-ads-tile {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}
.diag-ads-tile-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.diag-ads-tile-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 4px;
}
.diag-ads-tile.up .diag-ads-tile-val { color: var(--brand-bright); }
.diag-ads-tile.down .diag-ads-tile-val { color: #2DD47A; }
.diag-ads-tile-delta {
  font-family: var(--font-mono);
  font-size: 10px;
  margin-top: 2px;
}
.diag-ads-tile.up .diag-ads-tile-delta { color: var(--brand-bright); }
.diag-ads-tile.down .diag-ads-tile-delta { color: #2DD47A; }

.diag-ads-chart {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}
.diag-ads-chart-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.diag-ads-chart-head .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.diag-ads-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  height: 80px;
  align-items: end;
}
.diag-bar {
  background: linear-gradient(180deg, var(--brand-bright), var(--brand));
  border-radius: 6px 6px 0 0;
  transition: height 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
/* visible defaults (match data-h) so bars aren't empty if JS doesn't run */
.diag-ads-bars .diag-bar:nth-child(1) { height: 40%; }
.diag-ads-bars .diag-bar:nth-child(2) { height: 55%; }
.diag-ads-bars .diag-bar:nth-child(3) { height: 48%; }
.diag-ads-bars .diag-bar:nth-child(4) { height: 72%; }
.diag-ads-bars .diag-bar:nth-child(5) { height: 62%; }
.diag-ads-bars .diag-bar:nth-child(6) { height: 88%; }
.diag-ads-bars .diag-bar:nth-child(7) { height: 100%; }
.diag-bar.dim { background: linear-gradient(180deg, rgba(58,123,240,0.4), rgba(58,123,240,0.15)); }
.diag-ads-bars .diag-bar { transform-origin: bottom; }
.diag-ads-bars.in .diag-bar { animation: bar-grow 1s cubic-bezier(0.2,0.7,0.2,1) both; }
@keyframes bar-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.diag-ads-bars.in .diag-bar:nth-child(1) { animation-delay: 0s; }
.diag-ads-bars.in .diag-bar:nth-child(2) { animation-delay: 0.1s; }
.diag-ads-bars.in .diag-bar:nth-child(3) { animation-delay: 0.2s; }
.diag-ads-bars.in .diag-bar:nth-child(4) { animation-delay: 0.3s; }
.diag-ads-bars.in .diag-bar:nth-child(5) { animation-delay: 0.4s; }
.diag-ads-bars.in .diag-bar:nth-child(6) { animation-delay: 0.5s; }
.diag-ads-bars.in .diag-bar:nth-child(7) { animation-delay: 0.6s; }
.diag-ads-bars-axis {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg-4);
  text-align: center;
}

/* ---------- DIAGRAM: WEB ---------- */
.diag-web {
  width: 86%;
  display: flex; flex-direction: column; gap: 14px;
}
.diag-web-frame {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.diag-web-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.diag-web-dot { width: 8px; height: 8px; border-radius: 999px; }
.diag-web-dot.r { background: #FF6058; }
.diag-web-dot.y { background: #FFBD2E; }
.diag-web-dot.g { background: #27C93F; }
.diag-web-url {
  flex: 1; margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-3);
}
.diag-web-loadbar {
  height: 2px; background: rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.diag-web-loadbar::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 35%;
  background: var(--brand-bright);
  animation: loadbar 2.4s ease-in-out infinite;
}
@keyframes loadbar {
  0% { left: -35%; }
  100% { left: 100%; }
}
.diag-web-body {
  padding: 18px;
}
.diag-web-h {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.diag-web-p {
  font-size: 11px; color: var(--fg-3); margin-bottom: 12px;
}
.diag-web-cta {
  display: inline-flex; padding: 6px 12px;
  background: var(--brand); border-radius: 999px;
  font-size: 10px; font-weight: 600; color: #fff;
  font-family: var(--font-body);
}
.diag-web-gauges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gauge {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative;
}
.gauge-ring {
  position: relative;
  width: 70px; height: 70px;
}
.gauge-ring svg { transform: rotate(-90deg); }
.gauge-ring .bg { stroke: rgba(255,255,255,0.08); }
.gauge-ring .val {
  stroke: var(--brand-bright);
  stroke-linecap: round;
  stroke-dashoffset: var(--goff, 0);
}
.gauge-ring.in .val { animation: gauge-sweep 1.6s cubic-bezier(0.2,0.7,0.2,1) both; }
@keyframes gauge-sweep { from { stroke-dashoffset: 175.93; } to { stroke-dashoffset: var(--goff, 0); } }
.gauge-ring.green .val { stroke: #2DD47A; }
.gauge-ring.purple .val { stroke: var(--purple); }
.gauge-num {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.gauge-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: center;
}

/* ---------- LOGO MARQUEE ---------- */
.logos {
  padding: 80px 0;
  background: var(--ink-2);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logos-head { text-align: center; margin-bottom: 40px; }
.logos-head p {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.marquee {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee.reverse { animation-direction: reverse; animation-duration: 45s; }
.marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  flex-shrink: 0;
  display: flex; align-items: center;
  height: 56px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ink);
  transition: color .25s, border-color .25s;
  cursor: default;
}
.logo-item:hover { color: var(--fg); border-color: var(--line-2); }
.logo-item .badge {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  background: rgba(58,123,240,0.15);
  color: var(--brand-bright);
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* process step variant */
.logo-item.proc {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 84px;
  padding: 0 30px;
  gap: 2px;
  font-size: 22px;
  position: relative;
}
.logo-item.proc .proc-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.1em;
}
.logo-item.proc .proc-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-3);
  letter-spacing: 0;
}
.proc-arrow {
  flex-shrink: 0;
  display: flex; align-items: center;
  font-size: 26px;
  color: var(--fg-4);
  font-family: var(--font-display);
}
.logo-item.phrase {
  font-size: 22px;
  font-weight: 500;
  border-style: dashed;
  color: var(--fg-2);
}
.logo-item.phrase.brand { color: var(--fg); border-color: rgba(58,123,240,0.3); }
.logo-item.phrase.brand em { font-style: normal; color: var(--brand-bright); font-weight: 600; }

/* ---------- ACE VALUES ---------- */
.values {
  padding: 130px 0;
  background: var(--ink);
  position: relative;
}
.values-display {
  font-family: var(--font-display);
  font-size: clamp(40px, 9.2vw, 150px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 700;
  text-align: center;
  margin: 0 0 70px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .values-display { white-space: normal; font-size: clamp(40px, 14vw, 84px); }
}
.values-display .outlined-text { -webkit-text-stroke: 2px var(--fg-3); }
.values-display .filled { color: var(--fg); }
.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.value-item {
  background: var(--ink);
  padding: 50px 36px;
  display: flex; flex-direction: column; gap: 22px;
  transition: background .3s;
  cursor: default;
  min-height: 340px;
}
.value-item:hover { background: var(--ink-3); }
.value-letter {
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--brand);
  display: flex; align-items: baseline; gap: 12px;
}
.value-letter-dash {
  width: 36px; height: 4px;
  background: var(--brand);
  align-self: center;
}
.value-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.value-text {
  font-size: 15px; line-height: 1.55; color: var(--fg-2);
}

@media (max-width: 900px) {
  .values-list { grid-template-columns: 1fr; }
}

/* ---------- LOCATIONS ---------- */
.locations {
  padding: 100px 0;
  background: var(--ink-2);
  overflow: hidden;
}
.locations-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.locations-flags {
  display: flex; gap: 28px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--fg-2);
  flex-wrap: wrap;
}
.flag-row { display: flex; align-items: center; gap: 10px; }
.flag-row.active { color: var(--fg); font-weight: 600; }
.loc-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--fg-3);
}
.loc-badge.live {
  border-color: rgba(45,212,122,0.4);
  color: #2DD47A;
  display: inline-flex; align-items: center; gap: 6px;
}
.loc-badge.live::before {
  content: ""; width: 7px; height: 7px; border-radius: 999px;
  background: #2DD47A;
  animation: live-pulse 1.6s ease-in-out infinite;
}
.flag-mark {
  width: 28px; height: 20px;
  border-radius: 3px; overflow: hidden;
  border: 1px solid var(--line);
}

/* ---------- KÉT ÚT DIAGRAM ---------- */
.paths {
  padding: 130px 0 110px;
  background: var(--ink);
  position: relative;
}
.paths-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.paths-head h2 { margin-top: 14px; }
.paths-diagram {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.paths-diagram svg { width: 100%; height: auto; display: block; overflow: visible; }

.path-growth, .path-stuck {
  stroke-dasharray: 1600;
  stroke-dashoffset: 0; /* visible by default — animation only draws it in */
}
.path-stuck { stroke-dasharray: 6 8; stroke-dashoffset: 0; }
.paths-diagram.in .path-growth {
  animation: draw-path 2.2s cubic-bezier(0.3,0.6,0.2,1) both;
}
.paths-diagram.in .path-stuck {
  animation: draw-stuck 1.6s ease 1.4s both;
}
@keyframes draw-path {
  from { stroke-dashoffset: 1600; }
  to { stroke-dashoffset: 0; }
}
@keyframes draw-stuck {
  from { opacity: 0; }
  to { opacity: 1; }
}
.path-growth-fill { opacity: 1; }
.paths-diagram.in .path-growth-fill { animation: fade-fill 1.4s ease 1.2s both; }
@keyframes fade-fill { from { opacity: 0; } to { opacity: 1; } }

/* milestones + labels: visible by default, pop-in is enhancement */
.paths-milestone { transform-box: fill-box; transform-origin: center; }
.paths-diagram.in .paths-milestone { animation: pop-in .5s cubic-bezier(0.3,0.7,0.2,1.4) both; }
.paths-diagram.in .paths-label { animation: rise-in .5s ease both; }
.paths-diagram.in .paths-end-label { animation: draw-stuck .6s ease both; }
@keyframes pop-in { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }
@keyframes rise-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.paths-diagram.in .paths-milestone.growth:nth-of-type(1) { animation-delay: 0.7s; }
.paths-diagram.in .paths-milestone.growth:nth-of-type(2) { animation-delay: 1.1s; }
.paths-diagram.in .paths-milestone.growth:nth-of-type(3) { animation-delay: 1.6s; }
.paths-diagram.in .paths-label.growth:nth-of-type(1) { animation-delay: 0.8s; }
.paths-diagram.in .paths-label.growth:nth-of-type(2) { animation-delay: 1.2s; }
.paths-diagram.in .paths-label.growth.feature { animation-delay: 1.7s; }
.paths-cta { text-align: center; margin-top: 48px; }

@media (max-width: 760px) {
  .paths-diagram { overflow-x: visible; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 130px 0; background: var(--ink); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.test-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .3s, border-color .3s;
}
.test-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.test-stars { display: flex; gap: 4px; color: var(--brand); font-size: 16px; }
.test-service {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  background: rgba(58,123,240,0.12);
  color: var(--brand-bright);
  border-radius: 999px;
  align-self: flex-start;
}
.test-text {
  font-family: var(--font-display);
  font-size: 19px; line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  flex: 1;
}
.test-foot {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.test-avatar {
  width: 44px; height: 44px;
  background: var(--ink-4);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
}
.test-name { font-weight: 600; font-size: 15px; }
.test-role { font-size: 13px; color: var(--fg-3); }

@media (max-width: 900px) {
  .test-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { padding: 130px 0; background: var(--ink-2); }
.faq-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin: 0 0 40px;
}
.faq-tab {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  background: var(--ink-3);
  transition: background .25s, color .25s, border-color .25s;
}
.faq-tab:hover { color: var(--fg); border-color: var(--line-2); }
.faq-tab.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .3s;
}
.faq-item.open { background: var(--ink-3); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  gap: 24px;
}
.faq-sign {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 22px;
  font-weight: 400;
  color: var(--fg-2);
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-sign { background: var(--brand); border-color: var(--brand); color: #fff; transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 26px;
  font-size: 15px; line-height: 1.55;
  color: var(--fg-2);
  max-width: 70ch;
}

/* ---------- CLOSER CTA ---------- */
.closer { padding: 130px 0; background: var(--ink); text-align: center; }
.closer h2 {
  font-size: clamp(44px, 7vw, 120px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 28px;
}
.closer h2 .italic { font-style: italic; font-weight: 600; }
.closer-sub { font-size: 17px; color: var(--fg-2); max-width: 50ch; margin: 0 auto 32px; }
.closer-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.foot { padding: 80px 0 36px; background: var(--ink); border-top: 1px solid var(--line); }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.foot-brand-stack { max-width: 36ch; }
.foot-brand-stack p { margin-top: 16px; font-size: 14px; color: var(--fg-3); }
.foot h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { font-size: 15px; color: var(--fg-2); }
.foot-col a:hover { color: var(--fg); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--fg-3);
  font-family: var(--font-mono);
}
.foot-badges { display: flex; gap: 12px; }
.foot-badge {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; gap: 16px; }
}

/* ---------- Reveal on scroll ---------- */
/* Content is ALWAYS visible — the .in class adds a subtle entrance.
   If the observer never fires (e.g. headless capture), content still shows. */
.reveal { opacity: 1; }
.reveal > .wrap {
  transition: opacity .7s ease, transform .7s ease;
}

/* ===================== QUOTE MODAL ===================== */
.modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  background: rgba(6,8,15,0.85);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  padding: 40px 20px;
}
.modal.is-open { display: block; animation: modal-fade .25s ease; }
@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 28px;
  padding: 44px;
  position: relative;
  animation: modal-slide .35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes modal-slide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: var(--ink-3);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 20px; color: var(--fg-2);
  transition: background .2s, color .2s, transform .2s;
}
.modal-close:hover { background: var(--brand); color: #fff; transform: rotate(90deg); }
.modal-head {
  margin-bottom: 28px;
}
.modal-head p.eyebrow { margin-bottom: 12px; }
.modal-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.modal-head p.sub { color: var(--fg-2); font-size: 15px; line-height: 1.55; max-width: 50ch; }
.modal-progress {
  display: flex; gap: 4px;
  margin-bottom: 24px;
}
.modal-progress span {
  flex: 1; height: 3px; background: var(--line);
  border-radius: 999px;
  transition: background .3s;
}
.modal-progress span.done { background: var(--brand); }

.form-section {
  margin-bottom: 28px;
}
.form-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.form-section-label .num {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  background: rgba(58,123,240,0.15);
  color: var(--brand-bright);
  border-radius: 999px;
  font-size: 11px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .form-row, .form-row.three { grid-template-columns: 1fr; }
}
.form-field {
  display: flex; flex-direction: column; gap: 6px;
}
.form-field label {
  font-size: 12px;
  color: var(--fg-3);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--fg);
  outline: 0;
  transition: border-color .2s, background .2s;
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: var(--fg-4);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--brand);
  background: var(--ink-4);
}
.form-field textarea { resize: vertical; min-height: 90px; }

.chip-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ink-3);
  font-size: 14px;
  color: var(--fg-2);
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  cursor: pointer;
}
.chip:hover { color: var(--fg); border-color: var(--line-2); }
.chip.is-selected {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.02);
}
.chip-icon { display: inline-flex; margin-right: 6px; }

.form-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
.form-foot-note {
  font-size: 12px;
  color: var(--fg-3);
  max-width: 30ch;
}

.modal-success {
  text-align: center;
  padding: 40px 20px;
}
.modal-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--brand);
  display: grid; place-items: center;
  font-size: 38px;
  color: #fff;
  animation: success-pop .5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes success-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.modal-success h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.modal-success p { color: var(--fg-2); font-size: 15px; max-width: 40ch; margin: 0 auto; }

/* ===================== UTILITIES ===================== */
.counter[data-count] { display: inline-block; min-width: 1ch; }

body.modal-open { overflow: hidden; }

/* ===================== MOBILE REFINEMENTS ===================== */
@media (max-width: 768px) {
  .wrap { padding: 0 18px; }

  /* tighter section padding */
  .problem, .different, .services, .values, .paths,
  .testimonials, .faq, .closer, .logos { padding-top: 80px; padding-bottom: 80px; }
  .locations { padding: 70px 0; }

  /* nav */
  .nav { padding: 12px 0; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }
  .nav-brand { font-size: 16px; }

  /* hero */
  .hero { padding-top: 90px; padding-bottom: 60px; }
  .hero-logo { width: clamp(200px, 64vw, 320px); }
  .hero-title { font-size: clamp(38px, 13vw, 72px); line-height: 1.06; }
  .hero-eyebrow-row { margin-bottom: 18px; }
  .hero-stats-card { grid-template-columns: repeat(3, 1fr); }
  .hero-stat { padding: 16px 10px; }
  .hero-stat-num { font-size: clamp(22px, 6.5vw, 32px); }
  .hero-stat-label { font-size: 9px; letter-spacing: 0.08em; }
  .hero-ctas .btn { flex: 1; justify-content: center; }

  /* ticker / process */
  .ticker-item { font-size: 20px; }
  .logo-item.proc { height: 72px; font-size: 18px; }
  .logo-item.phrase { font-size: 18px; }

  /* problem cards */
  .problem-card { padding: 26px 22px; }
  .problem-card h3 { font-size: 23px; }
  .phone { width: 220px; height: 440px; }

  /* paths diagram — let it scroll horizontally so labels don't crush */
  .paths-diagram {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .paths-diagram::-webkit-scrollbar { display: none; }
  .paths-diagram svg { min-width: 720px; }
  .paths-head h2 { font-size: clamp(28px, 8vw, 44px); }

  /* stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 22px 18px; }
  .stat-card-num { font-size: clamp(34px, 11vw, 52px); }
  .stat-card.feature { grid-column: span 2; }

  /* services */
  .service { gap: 32px; padding: 48px 0; }
  .service h3 { font-size: clamp(30px, 9vw, 44px); }
  .service-visual { aspect-ratio: 1/1; }
  .diag-organic, .diag-ads, .diag-web { width: 90%; }

  /* values */
  .value-item { padding: 38px 26px; min-height: auto; }
  .value-letter { font-size: 88px; }

  /* locations */
  .locations-flags { gap: 16px; font-size: 18px; }
  .locations-row { gap: 20px; }

  /* section heads */
  .section-head { margin-bottom: 44px; }
  .section-head p { font-size: 16px; }

  /* faq */
  .faq-q { font-size: 17px; padding: 20px 16px; }
  .faq-a { padding: 0 16px 22px; }

  /* closer */
  .closer h2 { font-size: clamp(36px, 12vw, 72px); }
  .closer-ctas .btn { flex: 1; justify-content: center; }

  /* modal */
  .modal { padding: 20px 12px; }
  .modal-inner { padding: 28px 22px; border-radius: 22px; }
  .modal-head h2 { font-size: 24px; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .btn { justify-content: center; }
  .form-foot-note { max-width: none; text-align: center; }

  /* footer */
  .foot { padding: 60px 0 30px; }
  .foot-grid { gap: 32px; }
}

@media (max-width: 420px) {
  .hero-stats-card { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card.feature { grid-column: span 1; }
  .hero-title { font-size: clamp(34px, 12vw, 56px); }
}

/* ===================== FLIP CARDS ===================== */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
@media (max-width: 900px) { .flip-grid { grid-template-columns: 1fr; } }

.flip {
  position: relative;
  min-height: 340px;
  perspective: 1600px;
  cursor: pointer;
}
.flip-inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(0.4, 0.1, 0.2, 1);
}
.flip.flipped .flip-inner,
.flip:hover .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.flip-front {
  background: var(--ink-3);
}
.flip-back {
  background: var(--brand);
  color: #fff;
  transform: rotateY(180deg);
}
.flip-back.dark { background: var(--ink-4); color: var(--fg); border-color: var(--line-2); }
.flip-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  display: grid; place-items: center;
  margin-bottom: auto;
}
.flip-icon svg { width: 26px; height: 26px; stroke: var(--brand-bright); }
.flip-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 18px;
}
.flip-front h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  line-height: 1.08;
}
.flip-front p { font-size: 14px; color: var(--fg-3); line-height: 1.5; margin: 0; }
.flip-hint {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 18px;
}
.flip-hint::after {
  content: "↻"; font-size: 14px;
}
.flip-back h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 16px;
}
.flip-back.dark h4 { color: var(--fg-3); }
.flip-back-stat {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 8px;
}
.flip-back ul {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 10px;
}
.flip-back li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}
.flip-back li::before {
  content: "→"; flex-shrink: 0;
  opacity: 0.7;
}
.flip-back p {
  font-size: 15px; line-height: 1.5;
  margin: 0;
}
.flip-back .flip-back-foot {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  opacity: 0.85;
}

@media (hover: none) {
  /* on touch, disable hover-flip; rely on tap (.flipped) */
  .flip:hover .flip-inner { transform: none; }
  .flip.flipped .flip-inner { transform: rotateY(180deg); }
}

/* ===================== JOURNEY (két út, v2) ===================== */
.journey { padding: 130px 0 110px; background: var(--ink); position: relative; }
.journey-head { text-align: center; max-width: 860px; margin: 0 auto 56px; }
.journey-head h2 { margin-top: 14px; }

.journey-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}
@media (max-width: 860px) { .journey-split { grid-template-columns: 1fr; gap: 16px; } }

.journey-col {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 28px 36px;
  position: relative;
  overflow: hidden;
}
.journey-col.grow {
  background: linear-gradient(180deg, rgba(58,123,240,0.10), rgba(58,123,240,0.02) 40%, transparent);
  border-color: rgba(58,123,240,0.35);
}
.journey-col.stay {
  background: linear-gradient(180deg, rgba(255,107,92,0.07), transparent 40%);
  border-color: rgba(255,107,92,0.22);
}
.journey-col-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.journey-col-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.journey-col.grow .journey-col-tag { color: var(--brand-bright); }
.journey-col.stay .journey-col-tag { color: var(--warm); }
.journey-col-tag .dirico {
  width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center;
  font-size: 14px;
}
.journey-col.grow .dirico { background: rgba(58,123,240,0.16); }
.journey-col.stay .dirico { background: rgba(255,107,92,0.14); }
.journey-col-end {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg-3);
}

/* vertical timeline */
.journey-rail { position: relative; padding-left: 38px; }
.journey-rail::before {
  content: ""; position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--line);
}
.journey-col.grow .journey-rail::before {
  background: linear-gradient(180deg, rgba(58,123,240,0.2), var(--brand) 90%);
}
.journey-step {
  position: relative;
  padding-bottom: 30px;
}
.journey-step:last-child { padding-bottom: 0; }
.journey-step::before {
  content: ""; position: absolute;
  left: -32px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--ink-3);
  border: 2px solid var(--line-2);
  z-index: 2;
}
.journey-col.grow .journey-step::before { border-color: var(--brand); }
.journey-col.grow .journey-step.peak::before { background: var(--brand); box-shadow: 0 0 0 5px rgba(58,123,240,0.18); }
.journey-col.stay .journey-step::before { border-color: rgba(255,107,92,0.5); }
.journey-step-time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 6px;
}
.journey-step-row {
  display: flex; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
}
.journey-step-metric {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.journey-col.grow .journey-step-metric { color: var(--fg); }
.journey-col.grow .journey-step.peak .journey-step-metric { color: var(--brand-bright); }
.journey-col.stay .journey-step-metric { color: var(--fg-2); }
.journey-step-delta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.journey-col.grow .journey-step-delta { background: rgba(58,123,240,0.14); color: var(--brand-bright); }
.journey-col.stay .journey-step-delta { background: rgba(255,107,92,0.12); color: var(--warm); }
.journey-step-label {
  font-size: 14px;
  color: var(--fg-3);
  margin-top: 7px;
  line-height: 1.45;
  max-width: 36ch;
}

/* combined chart below */
.journey-chart-wrap {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--ink-2);
  padding: 28px 30px 22px;
}
.journey-chart-head {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
}
.journey-chart-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.02em;
}
.journey-chart-legend { display: flex; gap: 18px; }
.journey-leg { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-2); }
.journey-leg::before { content: ""; width: 16px; height: 3px; border-radius: 2px; }
.journey-leg.grow::before { background: var(--brand-bright); }
.journey-leg.stay::before { background: var(--warm); }
.journey-chart-svg { width: 100%; height: auto; display: block; overflow: visible; }

.jc-line {
  fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1400; stroke-dashoffset: 0;
}
.journey-chart-wrap.in .jc-line.grow { animation: jc-draw 2.4s cubic-bezier(0.2,0.7,0.2,1) both; }
.journey-chart-wrap.in .jc-line.stay { animation: jc-draw 2s cubic-bezier(0.2,0.7,0.2,1) 0.3s both; }
@keyframes jc-draw { from { stroke-dashoffset: 1400; } to { stroke-dashoffset: 0; } }
.jc-dot { opacity: 1; }
.journey-chart-wrap.in .jc-dot { animation: jc-pop .4s ease both; }
.jc-dot.d1 { animation-delay: .4s; } .jc-dot.d2 { animation-delay: .7s; }
.jc-dot.d3 { animation-delay: 1.0s; } .jc-dot.d4 { animation-delay: 1.3s; }
.jc-dot.d5 { animation-delay: 1.6s; } .jc-dot.d6 { animation-delay: 1.9s; }
@keyframes jc-pop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
.jc-callout { opacity: 1; }
.journey-chart-wrap.in .jc-callout { animation: jc-fade .5s ease 2s both; }
@keyframes jc-fade { from { opacity: 0; } to { opacity: 1; } }

.journey-cta { text-align: center; margin-top: 40px; }

/* ===================== GROWTH STAIRCASE (single path) ===================== */
.grow-stair {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
  margin-top: 8px;
}
.gs-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-3);
  padding: 26px 24px;
  transition: transform .3s, border-color .3s;
}
/* ascending staircase — each card sits higher */
.gs-card:nth-child(1) { margin-bottom: 0; }
.gs-card:nth-child(2) { margin-bottom: 46px; }
.gs-card:nth-child(3) { margin-bottom: 92px; }
.gs-card:nth-child(4) { margin-bottom: 138px; }
.gs-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.gs-card.peak {
  background: var(--brand);
  border-color: var(--brand);
}
.gs-card-time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
}
.gs-card.peak .gs-card-time { color: rgba(255,255,255,0.8); }
.gs-card-metric {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--fg);
  display: flex; align-items: baseline; gap: 8px;
  flex-wrap: wrap;
}
.gs-card.peak .gs-card-metric { color: #fff; }
.gs-card-metric .badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(58,123,240,0.14);
  color: var(--brand-bright);
  white-space: nowrap;
}
.gs-card.peak .gs-card-metric .badge { background: rgba(255,255,255,0.2); color: #fff; }
.gs-card-label {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.5;
  margin-top: 14px;
}
.gs-card.peak .gs-card-label { color: rgba(255,255,255,0.92); }
.gs-card-dot {
  position: absolute;
  left: 24px; bottom: -7px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--ink-2);
  border: 2px solid var(--brand);
  z-index: 3;
}
.gs-card.peak .gs-card-dot { background: #fff; border-color: #fff; }

/* the rising connector line under the staircase */
.grow-rail {
  position: relative;
  height: 2px;
  margin: 0 24px;
  background: var(--line);
}
.grow-rail::after {
  content: "";
  position: absolute; left: 0; top: 0; height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(58,123,240,0.2), var(--brand));
  transform-origin: left;
  transform: scaleX(0);
}
.grow-stair-wrap.in .grow-rail::after { animation: rail-grow 1.6s cubic-bezier(0.3,0.6,0.2,1) .2s both; }
@keyframes rail-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.grow-stair-wrap .gs-card {
  opacity: 1;
}
.grow-stair-wrap.in .gs-card { animation: gs-rise .6s cubic-bezier(0.3,0.7,0.2,1.2) both; }
.grow-stair-wrap.in .gs-card:nth-child(1) { animation-delay: .15s; }
.grow-stair-wrap.in .gs-card:nth-child(2) { animation-delay: .35s; }
.grow-stair-wrap.in .gs-card:nth-child(3) { animation-delay: .55s; }
.grow-stair-wrap.in .gs-card:nth-child(4) { animation-delay: .75s; }
@keyframes gs-rise { from { transform: translateY(24px); } to { transform: translateY(0); } }

@media (max-width: 1024px) {
  .grow-stair { grid-template-columns: 1fr 1fr; gap: 14px; align-items: stretch; }
  .gs-card:nth-child(1), .gs-card:nth-child(2),
  .gs-card:nth-child(3), .gs-card:nth-child(4) { margin-bottom: 0; }
  .grow-rail { display: none; }
}
@media (max-width: 460px) {
  .grow-stair { grid-template-columns: 1fr; }
}

/* ===================== QUOTE PAGE ===================== */
.qpage { min-height: 100vh; }
.qhero {
  padding: 130px 0 50px;
  position: relative;
  overflow: hidden;
}
.qhero .hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 70%);
  pointer-events: none;
}
.qhero-inner { max-width: 760px; }
.qhero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 18px 0 18px;
}
.qhero h1 em { font-style: normal; color: var(--brand-bright); }
.qhero p.lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--fg-2); line-height: 1.55; max-width: 56ch; }
.qhero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 28px;
}
.qhero-trust span {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--fg-2);
}
.qhero-trust span::before {
  content: ""; width: 18px; height: 18px; flex-shrink: 0;
  background: var(--brand);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/contain no-repeat;
}

.qmain {
  padding: 20px 0 120px;
}
.qgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 920px) { .qgrid { grid-template-columns: 1fr; gap: 28px; } }

.qcard {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
}
@media (max-width: 600px) { .qcard { padding: 26px 22px; } }

/* step progress */
.qsteps {
  display: flex; align-items: center;
  gap: 8px;
  margin-bottom: 34px;
}
.qstep-pill {
  display: flex; align-items: center; gap: 10px;
  flex: 1;
}
.qstep-dot {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-3);
  background: var(--ink-2);
  transition: background .3s, color .3s, border-color .3s;
}
.qstep-name {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 500;
  white-space: nowrap;
  transition: color .3s;
}
@media (max-width: 600px) { .qstep-name { display: none; } }
.qstep-line {
  flex: 1; height: 1px; background: var(--line);
}
.qstep-pill.active .qstep-dot { background: var(--brand); border-color: var(--brand); color: #fff; }
.qstep-pill.active .qstep-name { color: var(--fg); }
.qstep-pill.done .qstep-dot { background: rgba(58,123,240,0.15); border-color: var(--brand); color: var(--brand-bright); }
.qstep-pill.done .qstep-name { color: var(--fg-2); }

/* step panels — always visible; slide is enhancement only (never gates content) */
.qstep-panel { display: none; }
.qstep-panel.active { display: block; animation: qfade .4s ease; }
@keyframes qfade { from { transform: translateY(10px); } to { transform: translateY(0); } }
.qstep-panel h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}
.qstep-panel > p.hint { font-size: 14px; color: var(--fg-3); margin: 0 0 26px; }

.qnav {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.qnav .btn-back {
  color: var(--fg-3);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.qnav .btn-back:hover { color: var(--fg); }
.qnav .btn-back[hidden] { visibility: hidden; }

/* side summary */
.qside {
  position: sticky; top: 90px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--ink-2);
  padding: 30px 28px;
}
.qside h3 {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 500;
  margin: 0 0 20px;
}
.qside-logo { width: 64px; margin-bottom: 22px; }
.qsummary-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.qsummary-row:last-of-type { border-bottom: 0; }
.qsummary-row .k { color: var(--fg-3); }
.qsummary-row .v { color: var(--fg); font-weight: 500; text-align: right; }
.qsummary-row .v.empty { color: var(--fg-4); font-weight: 400; }
.qside-note {
  margin-top: 22px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(58,123,240,0.08);
  border: 1px solid rgba(58,123,240,0.2);
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}
.qside-note strong { color: var(--fg); }

/* success */
.qsuccess { display: none; text-align: center; padding: 30px 10px; }
.qsuccess.show { display: block; animation: qfade .5s ease; }
.qsuccess-icon {
  width: 88px; height: 88px; margin: 0 auto 24px;
  border-radius: 999px; background: var(--brand);
  display: grid; place-items: center;
  font-size: 42px; color: #fff;
  animation: success-pop .5s cubic-bezier(0.2,0.7,0.2,1.4);
}
.qsuccess h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 14px; }
.qsuccess p { color: var(--fg-2); font-size: 16px; max-width: 44ch; margin: 0 auto 28px; line-height: 1.55; }
.qsuccess-meta {
  display: inline-flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  padding: 20px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 28px;
}
.qsuccess-meta div { text-align: center; }
.qsuccess-meta .n { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--brand-bright); }
.qsuccess-meta .l { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

/* ===================== IPHONE SHOWCASE (annotated) ===================== */
.showcase {
  padding: 130px 0 120px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.showcase-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.showcase-head h2 { margin-top: 14px; }
.showcase-head p { color: var(--fg-2); font-size: 18px; margin-top: 16px; }

.showcase-stage {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ambient glow behind phone */
.showcase-stage::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(58,123,240,0.16), transparent 65%);
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* the phone unit (phone + thumb) */
.iphone-unit {
  position: relative;
  z-index: 3;
  transform: rotate(-5deg);
  animation: phone-bob 7s ease-in-out infinite;
}
@keyframes phone-bob {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-14px); }
}

/* iPhone 17 Pro Max */
.iphone {
  position: relative;
  width: 312px;
  height: 660px;
  border-radius: 58px;
  padding: 7px;
  background:
    linear-gradient(145deg, #43474d 0%, #23262b 18%, #34383e 40%, #1c1f24 70%, #3a3e44 100%);
  box-shadow:
    0 50px 90px -30px rgba(0,0,0,0.75),
    0 0 0 1.5px rgba(0,0,0,0.6),
    inset 0 0 2px 1px rgba(255,255,255,0.18);
}
/* titanium edge highlight */
.iphone::before {
  content: "";
  position: absolute; inset: 1.5px;
  border-radius: 56px;
  padding: 1.5px;
  background: linear-gradient(150deg, rgba(255,255,255,0.45), transparent 25%, transparent 70%, rgba(255,255,255,0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
/* side buttons */
.iphone-btn {
  position: absolute;
  width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, #2a2d32, #14161a);
}
.iphone-btn.action { left: -3px; top: 120px; height: 30px; }
.iphone-btn.vol-up { left: -3px; top: 172px; height: 52px; }
.iphone-btn.vol-down { left: -3px; top: 238px; height: 52px; }
.iphone-btn.power { right: -3px; top: 188px; height: 84px; }

.iphone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 51px;
  overflow: hidden;
  background: #000;
}
/* Dynamic Island */
.dyn-island {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 118px; height: 34px;
  background: #000;
  border-radius: 999px;
  z-index: 20;
  display: flex; align-items: center; justify-content: center;
  transition: width .5s cubic-bezier(0.3,0.7,0.2,1.2);
}
.dyn-island::after {
  content: "";
  position: absolute; right: 14px;
  width: 8px; height: 8px; border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #2a6, #062);
  box-shadow: 0 0 6px rgba(45,212,122,0.6);
}
/* expanded island notification */
.dyn-island.expanded {
  width: 250px; height: 44px;
  border-radius: 22px;
  padding: 0 14px;
  justify-content: flex-start;
  gap: 8px;
}
.dyn-notif {
  display: none;
  align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  color: #fff;
  white-space: nowrap;
}
.dyn-island.expanded .dyn-notif { display: flex; }
.dyn-island.expanded::after { display: none; }
.dyn-notif-ico {
  width: 22px; height: 22px; border-radius: 7px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid; place-items: center;
  font-size: 12px; flex-shrink: 0;
}
.dyn-notif strong { font-weight: 600; }
.dyn-notif .amt { margin-left: auto; color: #2DD47A; font-weight: 700; font-family: var(--font-display); }

/* screen content: live social feed */
.ip-screen-inner {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, #0c1322 0%, #131a2e 50%, #1a1430 100%);
  display: flex; flex-direction: column;
}
.ip-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 30px 0;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; color: #fff;
  z-index: 5;
}
.ip-status-right { display: flex; gap: 6px; align-items: center; }
.ip-feed {
  flex: 1; position: relative;
  margin-top: 8px;
  overflow: hidden;
}
.ip-reel-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,119,168,0.5), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(58,123,240,0.55), transparent 50%),
    linear-gradient(160deg, #241a3e, #15233f);
}
.ip-reel-bg .blob {
  position: absolute; border-radius: 999px; filter: blur(38px);
}
.ip-reel-bg .blob.x { width: 160px; height: 160px; top: 12%; left: -10%; background: rgba(108,164,255,0.5); animation: blob-a 12s ease-in-out infinite; }
.ip-reel-bg .blob.y { width: 200px; height: 200px; bottom: 6%; right: -16%; background: rgba(255,119,168,0.45); animation: blob-b 12s ease-in-out infinite; }
/* play glyph */
.ip-play {
  position: absolute; top: 44%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  animation: play-pulse 2.4s ease-in-out infinite;
}
.ip-play::after { content: "▶"; color: #fff; font-size: 18px; margin-left: 3px; }
@keyframes play-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.9; }
  50% { transform: translate(-50%,-50%) scale(1.08); opacity: 1; }
}
/* right action rail */
.ip-rail {
  position: absolute; right: 12px; bottom: 90px;
  display: flex; flex-direction: column; gap: 18px; align-items: center;
  z-index: 6;
}
.ip-rail-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.ip-rail-ico {
  width: 42px; height: 42px; border-radius: 999px;
  background: rgba(255,255,255,0.16);
  display: grid; place-items: center; font-size: 18px;
}
.ip-rail-item.liked .ip-rail-ico {
  background: linear-gradient(135deg, #FF3B6B, #FF6B5C);
  animation: heart-beat 1.6s ease-in-out infinite;
}
/* caption */
.ip-caption {
  position: absolute; left: 14px; right: 70px; bottom: 84px;
  z-index: 6;
  color: #fff;
}
.ip-caption .user { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; }
.ip-caption .user .av { width: 26px; height: 26px; border-radius: 999px; background: linear-gradient(135deg,#FF77A8,#6CA4FF); border: 1.5px solid #fff; }
.ip-caption .txt { font-size: 11px; margin-top: 7px; line-height: 1.4; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.ip-caption .cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 9px; padding: 6px 12px;
  background: #fff; color: #0c1322;
  border-radius: 999px; font-size: 11px; font-weight: 700;
}
/* floating hearts */
.ip-hearts { position: absolute; inset: 0; pointer-events: none; z-index: 6; }
.ip-hearts .h {
  position: absolute; bottom: 110px; right: 26px;
  color: #FF3B6B; font-size: 20px; opacity: 0;
  animation: heart-rise 4s linear infinite;
  text-shadow: 0 0 8px rgba(255,59,107,0.5);
}
.ip-hearts .h:nth-child(1) { animation-delay: 0s; }
.ip-hearts .h:nth-child(2) { animation-delay: 1.3s; right: 40px; font-size: 15px; }
.ip-hearts .h:nth-child(3) { animation-delay: 2.6s; right: 18px; font-size: 26px; }
/* bottom tab bar */
.ip-tab {
  display: flex; justify-content: space-around; align-items: center;
  padding: 10px 0 24px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  font-size: 18px; color: rgba(255,255,255,0.55);
  z-index: 6;
}
.ip-tab .mid {
  width: 36px; height: 24px; border-radius: 7px;
  background: linear-gradient(90deg,#25F4EE,#fff,#FE2C55);
}

/* thumb (held-in-hand suggestion) */
.hand-thumb {
  position: absolute;
  z-index: 4;
  right: -6px; bottom: 64px;
  width: 116px; height: 220px;
  background: linear-gradient(115deg, #c98a63 0%, #b9774f 42%, #9c5f3c 100%);
  border-radius: 60px 56px 50px 46px;
  transform: rotate(-28deg);
  box-shadow:
    inset 6px 8px 18px rgba(255,210,170,0.35),
    inset -8px -10px 22px rgba(80,40,20,0.45),
    -14px 12px 34px rgba(0,0,0,0.5);
}
.hand-thumb::after {
  content: "";
  position: absolute; top: 16px; left: 32px;
  width: 46px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,225,200,0.55), transparent 70%);
  filter: blur(2px);
}
/* nail */
.hand-thumb::before {
  content: "";
  position: absolute; top: 10px; left: 30px;
  width: 52px; height: 44px;
  border-radius: 50% 50% 46% 46%;
  background: linear-gradient(135deg, #e9b48f, #cf9268);
  box-shadow: inset 0 2px 4px rgba(255,235,215,0.6), inset 0 -3px 6px rgba(120,70,40,0.4);
  transform: rotate(6deg);
}

/* ===== ANNOTATIONS ===== */
.anno {
  position: absolute;
  z-index: 8;
  max-width: 210px;
}
.anno-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 5px;
  display: flex; align-items: center; gap: 7px;
}
.anno-label .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--brand); flex-shrink: 0; }
.anno-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.15;
}
.anno-desc {
  font-size: 13px; color: var(--fg-3);
  line-height: 1.45; margin-top: 5px;
}
.anno.right { text-align: left; }
.anno.left { text-align: right; }
.anno.left .anno-label { flex-direction: row-reverse; }

/* connector svg overlay */
.anno-lines {
  position: absolute; inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}
.anno-lines path {
  fill: none;
  stroke: rgba(108,164,255,0.5);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}
.anno-lines circle { fill: var(--brand); }
.anno-lines .arrowhead { fill: var(--brand-bright); }

/* annotation positions (desktop) */
.anno-1 { top: 60px; left: 4%; }     /* dynamic island */
.anno-2 { top: 230px; left: 0%; }    /* reels format */
.anno-3 { bottom: 150px; left: 3%; } /* caption + cta */
.anno-4 { top: 150px; right: 2%; }   /* live engagement */
.anno-5 { bottom: 120px; right: 1%; }/* held in hand / your brand */

.showcase-stage.in .anno {
  animation: anno-in .6s ease;
}
.showcase-stage.in .anno-1 { animation-delay: .3s; }
.showcase-stage.in .anno-2 { animation-delay: .5s; }
.showcase-stage.in .anno-3 { animation-delay: .7s; }
.showcase-stage.in .anno-4 { animation-delay: .9s; }
.showcase-stage.in .anno-5 { animation-delay: 1.1s; }
@keyframes anno-in { from { transform: translateY(12px); } to { transform: translateY(0); } }
.showcase-stage.in .anno-lines path { animation: dash-draw 1s ease; }
@keyframes dash-draw { from { stroke-dashoffset: 200; } to { stroke-dashoffset: 0; } }

@media (max-width: 1040px) {
  /* hide annotations + thumb on narrow; show clean phone + stacked notes */
  .anno-lines { display: none; }
  .anno {
    position: static; max-width: none;
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
    text-align: left !important;
  }
  .anno.left .anno-label { flex-direction: row; }
  .showcase-stage {
    flex-direction: column;
    min-height: 0;
    gap: 26px;
  }
  .showcase-annos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 520px;
  }
  .hand-thumb { display: none; }
  .iphone-unit { transform: none; animation: none; }
}
@media (max-width: 540px) {
  .showcase-annos { grid-template-columns: 1fr; }
}

/* ===================== COMPARE (modern vs) ===================== */
.compare { padding: 130px 0 120px; background: var(--ink-2); position: relative; }
.compare-head { text-align: center; max-width: 820px; margin: 0 auto 48px; }
.compare-head h2 { margin-top: 14px; }
.compare-head p { color: var(--fg-2); font-size: 18px; margin-top: 16px; }

.compare-board {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--ink-3);
  padding: 34px 36px 30px;
  position: relative;
  overflow: hidden;
}
.compare-board-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 26px;
}
.compare-board-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600; letter-spacing: -0.02em;
}
.compare-board-title span { color: var(--fg-3); font-weight: 400; font-size: 14px; display: block; margin-top: 4px; font-family: var(--font-body); }
.compare-legend { display: flex; gap: 20px; flex-wrap: wrap; }
.compare-leg { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; }
.compare-leg .sw { width: 22px; height: 4px; border-radius: 2px; }
.compare-leg.grow { color: var(--fg); }
.compare-leg.grow .sw { background: var(--brand-bright); }
.compare-leg.flat { color: var(--fg-3); }
.compare-leg.flat .sw { background: var(--fg-4); }

.compare-chart { width: 100%; height: auto; display: block; overflow: visible; }

/* lines */
.cmp-line { fill: none; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.cmp-line.grow { stroke: url(#cmpGrad); }
.cmp-line.flat { stroke: var(--fg-4); stroke-dasharray: 7 7; }
/* draw enhancement (only when motion ok); line stays visible if it doesn't run */
.cmp-line.grow { stroke-dasharray: 1600; stroke-dashoffset: 0; }
@media (prefers-reduced-motion: no-preference) {
  .compare-board.in .cmp-line.grow { animation: cmp-draw 2.4s cubic-bezier(0.2,0.7,0.2,1); }
}
@keyframes cmp-draw { from { stroke-dashoffset: 1600; } to { stroke-dashoffset: 0; } }
/* growth gap fill — visible by default, never gated */
.cmp-gap { opacity: 1; }
.compare-board.in .cmp-gap { animation: cmp-fill 1.4s ease .4s; }
@keyframes cmp-fill { from { opacity: 0; } to { opacity: 1; } }
.cmp-gap-label {
  font-family: var(--font-display); font-weight: 600;
  fill: var(--brand-bright);
}
.cmp-dot { fill: #fff; stroke: var(--brand); stroke-width: 3; }
.cmp-end-grow { fill: var(--brand); }
.cmp-axis { font-family: var(--font-mono); font-size: 12px; fill: var(--fg-4); }

.compare-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--fg-4);
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* two outcome cards */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 26px;
}
@media (max-width: 760px) { .compare-cards { grid-template-columns: 1fr; } }
.compare-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}
.compare-card.flat { background: var(--ink-3); }
.compare-card.grow {
  background: linear-gradient(160deg, rgba(58,123,240,0.12), transparent 60%);
  border-color: rgba(58,123,240,0.35);
}
.compare-card-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.compare-card.flat .compare-card-tag { color: var(--fg-3); }
.compare-card.grow .compare-card-tag { color: var(--brand-bright); }
.compare-card-tag .ic {
  width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center; font-size: 14px;
}
.compare-card.flat .ic { background: var(--ink-4); }
.compare-card.grow .ic { background: rgba(58,123,240,0.18); }
.compare-card h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600; letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.compare-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.compare-card li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 15px; line-height: 1.45; color: var(--fg-2);
}
.compare-card li::before {
  flex-shrink: 0; margin-top: 1px;
  font-family: var(--font-mono); font-weight: 600;
}
.compare-card.flat li::before { content: "—"; color: var(--fg-4); }
.compare-card.grow li::before { content: "↗"; color: var(--brand-bright); }
.compare-card .big {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.compare-card.grow .big { color: var(--brand-bright); }
.compare-card.flat .big { color: var(--fg-2); }
.compare-card .big-sub { font-size: 13px; color: var(--fg-3); margin-bottom: 20px; }

.compare-cta { text-align: center; margin-top: 40px; }

/* ===================== HAMBURGER MENU ===================== */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10,14,26,0.6);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(6,8,15,0.97);
  backdrop-filter: blur(16px);
  padding: 90px 24px 40px;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  gap: 6px;
  transform: translateY(-110%);
  transition: transform .4s cubic-bezier(0.3, 0.7, 0.2, 1);
}
.nav-mobile.open {
  transform: translateY(0);
}
@media (max-width: 920px) {
  .nav-mobile { display: flex; }
}
.nav-mobile-link {
  display: block;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--fg-2);
  border-radius: 14px;
  transition: background .2s, color .2s;
}
.nav-mobile-link:hover, .nav-mobile-link:active { background: var(--ink-3); color: var(--fg); }
.nav-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 18px 24px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: -0.02em;
}

/* ===================== MOBILE OVERRIDES (improved) ===================== */
@media (max-width: 768px) {

  /* --- HERO --- */
  .hero { padding-top: 80px; padding-bottom: 50px; }
  .hero-logo-wrap { margin: 8px 0 18px; }
  .hero-logo { width: clamp(140px, 52vw, 220px); }
  .hero-title { font-size: clamp(32px, 11vw, 58px); max-width: 100%; }
  .hero-title-line { display: block; }
  .hero-body { font-size: 15px; }
  .hero-eyebrow-row { margin-bottom: 14px; }
  .hero-row-2 { margin-top: 32px; gap: 24px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; text-align: center; }

  /* stats card single row → compact */
  .hero-stats-card {
    grid-template-columns: repeat(3, 1fr);
    border-radius: var(--radius);
  }
  .hero-stat { padding: 14px 8px; }
  .hero-stat-num { font-size: clamp(18px, 5.5vw, 26px); }
  .hero-stat-label { font-size: 8px; letter-spacing: 0.06em; margin-top: 6px; }

  /* --- TICKER --- */
  .ticker { padding: 16px 0; }
  .ticker-item { font-size: 18px; }
  .ticker-track { gap: 40px; }

  /* --- SHOWCASE (iPhone) --- */
  .showcase { padding: 80px 0 70px; }
  .showcase-head h2 { font-size: clamp(26px, 7vw, 40px); }
  .showcase-head p { font-size: 15px; }
  .iphone {
    width: 240px;
    height: 508px;
    border-radius: 46px;
  }
  .dyn-island { width: 96px; height: 28px; }
  .hand-thumb { display: none; }

  /* --- COMPARE --- */
  .compare { padding: 80px 0; }
  .compare-head h2 { font-size: clamp(26px, 7vw, 42px); }
  .compare-head p { font-size: 15px; }
  .compare-board { padding: 22px 18px 20px; }
  .compare-board-title { font-size: 16px; }
  .compare-board-title span { font-size: 12px; }
  .compare-chart { overflow: visible; }
  .compare-card { padding: 22px 18px; }
  .compare-card .big { font-size: clamp(22px, 6vw, 32px); }
  .compare-card-tag { font-size: 10px; }

  /* --- DIFFERENT / STATS --- */
  .different { padding: 80px 0; }
  .different-row { gap: 18px; margin-bottom: 36px; }
  .different-row h2 { font-size: clamp(28px, 8vw, 48px); }
  .different-row p { font-size: 15px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 18px 14px; gap: 8px; border-radius: var(--radius); }
  .stat-card-num { font-size: clamp(28px, 8vw, 42px); }
  .stat-card.feature { grid-column: span 2; }
  .stat-card-desc { font-size: 12px; }

  /* flip cards */
  .flip-grid { gap: 14px; }
  .flip { min-height: 300px; }
  .flip-front h3 { font-size: 22px; }
  .flip-back-stat { font-size: clamp(32px, 8vw, 50px); }

  /* --- SERVICES --- */
  .services { padding: 80px 0; }
  .service { padding: 44px 0; gap: 28px; }
  .service h3 { font-size: clamp(26px, 7vw, 40px); }
  .service-desc { font-size: 15px; }
  .service-points li { font-size: 14px; }
  .service-visual { aspect-ratio: 4/3; border-radius: var(--radius-lg); }
  .diag-organic, .diag-ads, .diag-web { width: 92%; }

  /* --- LOGOS / PROCESS --- */
  .logos { padding: 60px 0; }
  .logo-item.proc { height: 68px; font-size: 16px; padding: 0 20px; }
  .logo-item.proc .proc-sub { font-size: 11px; }
  .logo-item.phrase { font-size: 16px; height: 48px; padding: 0 18px; }

  /* --- VALUES --- */
  .values { padding: 80px 0; }
  .values-display { font-size: clamp(36px, 12vw, 72px); }
  .value-item { padding: 32px 22px; min-height: auto; gap: 16px; }
  .value-letter { font-size: 72px; }
  .value-name { font-size: 20px; }
  .value-text { font-size: 14px; }

  /* --- LOCATIONS --- */
  .locations { padding: 60px 0; }
  .locations-row { gap: 16px; margin-bottom: 22px; }
  .locations-flags { font-size: 18px; gap: 14px; }

  /* --- TESTIMONIALS --- */
  .testimonials { padding: 80px 0; }
  .test-grid { gap: 14px; }
  .test-card { padding: 26px 20px; border-radius: var(--radius-lg); }
  .test-text { font-size: 16px; }

  /* --- FAQ --- */
  .faq { padding: 80px 0; }
  .faq-tabs { gap: 6px; }
  .faq-tab { padding: 10px 14px; font-size: 13px; }
  .faq-q { font-size: 16px; padding: 18px 14px; gap: 16px; }
  .faq-sign { width: 28px; height: 28px; font-size: 18px; }
  .faq-a { padding: 0 14px 20px; font-size: 14px; }

  /* --- CLOSER CTA --- */
  .closer { padding: 80px 0; }
  .closer h2 { font-size: clamp(32px, 10vw, 64px); }
  .closer-sub { font-size: 15px; }
  .closer-ctas { flex-direction: column; align-items: stretch; }
  .closer-ctas .btn { justify-content: center; }

  /* --- FOOTER --- */
  .foot { padding: 50px 0 28px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
  .foot-brand-stack { max-width: none; }
  .foot h5 { margin-bottom: 12px; }
  .foot-col ul { gap: 8px; }
  .foot-col a { font-size: 14px; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .foot-badges { justify-content: center; }

  /* --- SECTION HEADS --- */
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(26px, 7vw, 42px); }
  .section-head p { font-size: 15px; }
  .h-section { font-size: clamp(26px, 7vw, 48px); }

  /* --- EYEBROW --- */
  .eyebrow { font-size: 11px; letter-spacing: 0.14em; }
}

@media (max-width: 480px) {
  .hero-stats-card { grid-template-columns: repeat(3, 1fr); }
  .hero-stat-num { font-size: clamp(16px, 5vw, 22px); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card.feature { grid-column: span 1; }
  .flip-grid { grid-template-columns: 1fr; }
  .compare-cards { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero-title { font-size: clamp(28px, 9.5vw, 42px); }
  .hero-stat-num { font-size: 15px; }
  .hero-stat-label { font-size: 7px; }
  .nav-brand { font-size: 15px; }
  .nav-brand-mark { width: 30px; height: 30px; }
}
