/* System font stack — renders instantly while custom fonts load */
:root {
  --font-fallback-serif: Georgia, 'Times New Roman', serif;
  --font-fallback-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-fallback-mono: 'Courier New', monospace;
}

/* Performance: prevent invisible text while fonts load */
@font-face { font-family: 'Fraunces'; font-display: swap; }
@font-face { font-family: 'Geist'; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; font-display: swap; }
@font-face { font-family: 'Roboto'; font-display: swap; }

/* ============================================================
   Growth News — v2 bold editorial
   ============================================================ */

:root {
  --paper: #1A1A1A;
  --paper-2: #232323;
  --ink: #F5F1EA;
  --ink-2: #EFEAE0;
  --muted: #C7C2B8;
  --line: #2E2E2E;
  --line-2: #3A3A3A;
  --accent: #FF4D1A;       /* vermillion */
  --accent-2: #FF7A4D;
  --accent-soft: #2A1A14;
  --electric: #4D4DFF;     /* secondary shock */
  --good: #2DB86A;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;

  --display: 'Fraunces', 'Instrument Serif', Georgia, serif;
  --sans: 'Geist', 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw: 1240px;
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

* { box-sizing: border-box; }
html { margin: 0; padding: 0; scroll-behavior: smooth; overflow-x: hidden; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01","ss02";
  overflow-x: hidden;
  max-width: 100vw;
}
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: var(--grain); opacity: .25; mix-blend-mode: screen;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--accent); color: #fff; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
@media (max-width: 640px) { .container { padding: 0 18px; } }
@media (max-width: 400px) { .container { padding: 0 14px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: "●"; color: var(--accent); font-size: 8px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(58px, 9vw, 148px); }
h2 { font-size: clamp(40px, 5.8vw, 84px); }
h3 { font-size: clamp(24px, 2.6vw, 34px); }
p { margin: 0; }

.it { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
.ul-underline { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 0.1em; text-underline-offset: 0.08em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: all .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #F5F1EA; color: #1A1A1A; }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-ghost { background: transparent; color: #F5F1EA; border-color: var(--line-2); }
.btn-ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #E63D0F; color: #fff; }
.btn-paper { background: #F5F1EA; color: #1A1A1A; }
.btn-paper:hover { background: var(--accent); color: #fff; }
.btn svg { width: 16px; height: 16px; }

@keyframes blip { 50% { opacity:.4; } }

/* ---------- Nav / Masthead ---------- */
.mast {
  border-bottom: 1px solid var(--line-2);
  background: #111111;
  position: sticky; top: 0; z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  gap: 24px;
}
.nav-center { display: flex; gap: 28px; }
@media (max-width: 860px) { .nav-center { display: none; } }
@media (max-width:860px){ .nav-inner { padding: 12px 16px; gap: 12px; } }
@media (max-width:480px){ .nav-inner { padding: 10px 14px; } }
@media (max-width:860px){ .wordmark { font-size: clamp(22px, 6vw, 32px); } }

.wordmark {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1;
  justify-self: start;
  display: inline-flex; align-items: baseline; gap: 10px;
  color: #F5F1EA;
}
.wordmark .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  display: inline-block; margin-right: 4px; transform: translateY(-4px);
}
.wordmark b { font-weight: 500; }
.wordmark i { font-style: italic; color: var(--accent); }

.nav-links { display: inline-flex; gap: 34px; }
.nav-links a { font-size: 17px; color: var(--ink); position: relative; letter-spacing: -0.01em; }
.nav-links a::after { content:""; position:absolute; left:0; right:0; bottom:-4px; height:1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { justify-self: end; display: inline-flex; gap: 10px; align-items: center; }
.menu-btn { display: none; padding: 0; border-radius: 8px; border: 1px solid var(--line-2); width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; background: transparent; }
.menu-btn svg { width: 22px; height: 22px; display: block; }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 1px; transition: 0.2s; }
.mmenu .menu-btn span { background: var(--paper); }

@media (max-width: 860px) {
  .nav-links { display: none !important; }
  .nav-center { display: none !important; }
  .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .menu-btn { display: inline-flex !important; }
}
@media (max-width: 640px) {
  .mast-top { font-size: 9px; padding: 8px 14px; letter-spacing: 0.3px; }
}

.mmenu {
  position: fixed; inset: 0; z-index: 60;
  background: #0D0D0D; color: var(--ink);
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.22,.9,.3,1), visibility 0s linear .35s, opacity .25s ease;
  padding: max(18px, env(safe-area-inset-top, 18px)) 16px 18px;
  display: flex; flex-direction: column;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto; overflow-x: hidden;
  box-sizing: border-box;
  width: 100vw; max-width: 100%;
}
.mmenu.open {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: transform .35s cubic-bezier(.22,.9,.3,1), visibility 0s linear 0s, opacity .25s ease;
}
.mmenu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; gap: 12px; min-height: 44px; width: 100%; box-sizing: border-box; }
.mmenu-top .wordmark { flex-shrink: 1; min-width: 0; font-size: clamp(20px, 6vw, 28px); }
.mmenu .wordmark { color: #F5F1EA !important; }
.mmenu .wordmark .dot { background: var(--accent) !important; }
.mmenu .wordmark i { color: var(--accent) !important; }
.mmenu .menu-btn[data-close-menu] {
  width: 38px; height: 38px; min-width: 38px;
  display: inline-flex !important; align-items: center; justify-content: center;
  border: 1px solid #F5F1EA !important; border-radius: 999px;
  background: transparent; color: #F5F1EA !important;
  font-size: 18px; line-height: 1;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  margin-right: 0;
  opacity: 1 !important; visibility: visible !important;
}
.mmenu .menu-btn[data-close-menu]:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.mmenu a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.22); font-family: var(--display); font-size: 56px; line-height: 1; display: block; width: 100%; }
@media (max-width: 480px) { .mmenu a { font-size: 32px; padding: 14px 0; } }
.mmenu .menu-btn { border-color: var(--paper); color: var(--paper); }
.mmenu-cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-bottom: 90px; }
.mmenu-cta .btn { width: 100%; justify-content: center; box-sizing: border-box; white-space: normal; text-align: center; }
.mmenu-cta .btn-ghost { border-color: #F5F1EA; color: #F5F1EA; font-size: 16px; padding: 14px 16px; }
.mmenu-cta .btn-ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.mmenu-cta .btn-accent { font-size: 16px; }

/* ---------- HERO ---------- */
.hero { padding: 60px 0 48px; border-bottom: 1px solid var(--line-2); }
.hero-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .hero-2col { grid-template-columns: 1fr; } }
.hero-left { display: flex; flex-direction: column; gap: 24px; }
.hero h1 { font-size: clamp(36px, 8vw, 120px); word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }
.hero-sub { color: var(--ink-2); font-size: 18px; max-width: 480px; line-height: 1.55; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Floating cards */
.hero-right {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 860px) { .hero-right { display: none; } }

.hcard {
  position: absolute;
  background: #1E1E1E;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,77,26,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

/* Float animations */
@keyframes floatA { 0%,100% { transform: translateY(0px) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(-2deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0px) rotate(1.5deg); } 50% { transform: translateY(-8px) rotate(1.5deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0px) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(-1deg); } }
@keyframes floatD { 0%,100% { transform: translateY(0px) rotate(2deg); } 50% { transform: translateY(-6px) rotate(2deg); } }
.float-a { animation: floatA 5s ease-in-out infinite; }
.float-b { animation: floatB 4s ease-in-out infinite 0.5s; }
.float-c { animation: floatC 6s ease-in-out infinite 1s; }
.float-d { animation: floatD 4.5s ease-in-out infinite 1.5s; }

/* Press release card */
.hcard-press {
  width: 280px;
  top: 20px; left: 20px;
  z-index: 3;
  border-top: 1px solid rgba(255,77,26,0.4);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 30px rgba(255,77,26,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hcard-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.hc-tag { font-family: var(--mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.hc-live { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; display: inline-flex; align-items: center; gap: 5px; color: #2DB86A; }
.hc-dot { width: 6px; height: 6px; border-radius: 50%; background: #2DB86A; box-shadow: 0 0 0 3px rgba(45,184,106,.25); animation: blip 1.6s ease-in-out infinite; }
.hc-title { font-family: var(--display); font-size: 18px; line-height: 1.2; letter-spacing: -0.02em; color: #F5F1EA; margin-bottom: 14px; }
.hc-logos { display: flex; gap: 8px; }
.hc-logos span { font-family: var(--display); font-size: 13px; color: var(--muted); background: #2A2A2A; border: 1px solid var(--line-2); border-radius: 999px; padding: 3px 10px; }

/* Stat pill */
.hcard-stat {
  bottom: 80px; left: 0;
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px 22px;
  border-radius: 999px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(45,184,106,0.12);
}
.hs-num { font-family: var(--display); font-size: 36px; line-height: 1; letter-spacing: -0.04em; color: #F5F1EA; }
.hs-num em { color: var(--accent); font-style: normal; }
.hs-label { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* Testimonial mini */
.hcard-testi {
  width: 230px;
  top: 60px; right: 0;
  z-index: 2;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 24px rgba(255,77,26,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
}
.ht-stars { color: var(--accent); font-size: 11px; letter-spacing: 2px; margin-bottom: 8px; }
.ht-quote { font-family: var(--display); font-size: 15px; line-height: 1.3; color: #F5F1EA; margin-bottom: 12px; font-style: italic; }
.ht-who { display: flex; align-items: center; gap: 8px; }
.ht-av { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.ht-who span { font-size: 11px; color: var(--muted); }

/* Placement count */
.hcard-count {
  bottom: 60px; right: 20px;
  z-index: 3;
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,77,26,0.1);
  border-top: 1px solid rgba(255,77,26,0.3);
}
.hcn-big { font-family: var(--display); font-size: 40px; letter-spacing: -0.04em; line-height: 1; color: #F5F1EA; }
.hcn-big em { color: var(--accent); font-style: normal; }
.hcn-label { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hero h1 .stack { display: block; }
.hero h1 .stack.right { text-align: right; }
.hero h1 .chip {
  display: inline-flex; align-items: center;
  background: var(--accent); color: #fff;
  padding: 0 .15em;
  border-radius: 6px;
  transform: rotate(-2deg);
  white-space: nowrap;
  max-width: 100%;
}
.hero h1 .through { text-decoration: line-through; text-decoration-thickness: 0.06em; color: var(--muted); }

.hero-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end;
  border-top: 1px solid var(--line-2); padding-top: 28px;
}
@media (max-width:820px){ .hero-row { grid-template-columns: 1fr; } }
.hero-row p { color: var(--ink-2); font-size: 18px; max-width: 460px; line-height: 1.5; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; }
@media (max-width:820px){ .hero-cta { justify-self: start; } }

/* Marquee */
.marquee {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: #111111; color: var(--ink);
  overflow: hidden; max-width: 100vw;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 48px;
  padding: 22px 0;
  animation: mq 35s linear infinite;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 54px);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track em { font-style: italic; color: var(--accent); font-weight: 400; }
.marquee-track::before { content:"★"; color: var(--accent); }
@keyframes mq { to { transform: translateX(-50%); } }

/* Logo strip */
.logos {
  border-bottom: 1px solid var(--line-2);
  background: #141414;
}
.logos .row {
  display: grid; grid-template-columns: auto repeat(6, 1fr);
  align-items: center; gap: 0;
}
@media (max-width:900px){ .logos .row { grid-template-columns: 1fr 1fr 1fr; } .logos .row .lbl { grid-column: 1/-1; padding: 14px 18px; border-bottom: 1px solid var(--line); } }
.logos .lbl {
  font-family: var(--mono); font-size: 11px; color: rgba(245,241,234,0.8);
  padding: 22px 28px;
  border-right: 1px solid var(--line-2);
  letter-spacing: .12em; text-transform: uppercase;
}
.logos .logo {
  padding: 22px 20px;
  border-right: 1px solid var(--line-2);
  text-align: center;
  font-family: var(--display); font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.02em;
  color: rgba(245,241,234,0.85);
}
.logos .logo:last-child { border-right: 0; }
.logos .logo.mono { font-family: var(--sans); font-weight: 700; font-size: clamp(16px,1.4vw,20px); letter-spacing: -0.01em; }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
@media (max-width: 640px) { .section { padding: 72px 0; } }
.section.tight { padding: 72px 0; }

.section-head { margin-bottom: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
@media (max-width:820px){ .section-head { grid-template-columns: 1fr; gap: 20px; } }
.section-head h2 { max-width: 680px; }
.section-head p { color: var(--muted); font-size: 17px; max-width: 440px; line-height: 1.55; }
.section-head .eyebrow { margin-bottom: 18px; }

/* Problem */
/* ---------- NEW PROBLEM SECTION ---------- */
.problem {
  background: #0D0D0D; color: var(--ink);
  position: relative; overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--line-2);
  padding: 0;
}
.problem-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.pb-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,77,26,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,26,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
}
.pb-glow {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,77,26,0.15) 0%, transparent 70%);
  filter: blur(40px);
  animation: pbGlow 6s ease-in-out infinite;
}
@keyframes pbGlow {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.8; }
  50% { transform: translate(-30px,30px) scale(1.1); opacity: 1; }
}

.problem-inner { position: relative; z-index: 1; padding: 80px 56px; }
@media (max-width:700px){ .problem-inner { padding: 56px 24px; } }

.problem-head { max-width: 780px; margin-bottom: 64px; }
.problem-head h2 {
  font-family: var(--display); font-style: italic;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1; letter-spacing: -0.04em;
  margin-top: 22px; color: #F5F1EA;
}
.problem-head .strike-anim {
  position: relative; font-style: normal;
  color: rgba(245,241,234,0.5);
}
.problem-head .strike-anim::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  animation: strikeIn 1s ease forwards 0.4s;
}
@keyframes strikeIn { to { transform: scaleX(1); } }
.problem-head .q { color: var(--accent); font-style: italic; }
.problem-lede {
  color: rgba(245,241,234,0.85);
  font-size: 19px; line-height: 1.55;
  margin-top: 24px; max-width: 640px;
}
.problem-lede em { color: var(--accent); font-style: italic; }
.problem-lede strong { color: #F5F1EA; font-weight: 600; }

/* Stat row */
.problem-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 64px;
}
@media (max-width:860px){ .problem-stats { grid-template-columns: 1fr; } }
.ps-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 14px;
}
.ps-item:last-child { border-right: 0; }
@media (max-width:860px){
  .ps-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 28px 20px; }
  .ps-item:last-child { border-bottom: 0; }
}
.ps-num {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1; letter-spacing: -0.05em;
  color: #F5F1EA;
  display: flex; align-items: baseline; gap: 4px;
}
.ps-num em { color: var(--accent); font-style: italic; font-size: 0.6em; }
.ps-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.ps-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), #FF7A4D);
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.22,1,0.36,1);
}
.ps-item h4 {
  font-family: var(--display); font-size: 22px;
  letter-spacing: -0.02em; color: #F5F1EA;
  margin: 4px 0 0;
}
.ps-item p { color: rgba(245,241,234,0.7); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* Force Google sans-serif typography & normal-case on EVERYTHING inside the mocks */
.pc-mock, .pc-mock * {
  font-family: 'Roboto', arial, sans-serif !important;
  text-transform: none !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  font-feature-settings: normal !important;
  font-variant: normal !important;
  font-variant-caps: normal !important;
}
.pc-mock .pc-glogo,
.pc-mock .pc-glogo * {
  font-family: 'Product Sans', 'Arial', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.04em !important;
}
.pc-mock .pc-url, .pc-mock .pc-url * { font-family: 'Roboto Mono', monospace !important; }

/* ============================================================
   CINEMATIC GOOGLE SEARCH COMPARISON
   ============================================================ */
.pc-stage { margin-bottom: 56px; }
.pc-label-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; padding: 0 4px;
}
.pc-side-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(245,241,234,0.6);
}
.pc-side-label.right { color: #2DB86A; }
.pc-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  position: relative;
}
.pc-pulse.red { background: var(--accent); box-shadow: 0 0 0 0 rgba(255,77,26,0.7); animation: pulseRed 2s infinite; }
.pc-pulse.green { background: #2DB86A; box-shadow: 0 0 0 0 rgba(45,184,106,0.7); animation: pulseGreen 2s infinite; }
@keyframes pulseRed { 70% { box-shadow: 0 0 0 8px rgba(255,77,26,0); } 100% { box-shadow: 0 0 0 0 rgba(255,77,26,0); } }
@keyframes pulseGreen { 70% { box-shadow: 0 0 0 8px rgba(45,184,106,0); } 100% { box-shadow: 0 0 0 0 rgba(45,184,106,0); } }

.problem-compare {
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 28px; align-items: stretch;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width:860px){
  .pc-label-row { display: none; }
  .problem-compare { grid-template-columns: 1fr; gap: 12px; }
}

.pc-mock {
  background: #FFFFFF; color: #202124;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  display: flex; flex-direction: column;
  transition: transform .4s ease;
}
.pc-bad { opacity: 1; }
.pc-good {
  position: relative;
  box-shadow: 0 14px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,77,26,0.12);
  transform: none;
}
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
  transition: transform .4s ease;
}
.pc-bad { opacity: 1; }
/* old .pc-good heavy shadow removed — new softer rule above wins */
.pc-good::after {
  content: ""; position: absolute; inset: -1px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), transparent 40%);
  opacity: 0.15; pointer-events: none; z-index: 1;
}

/* Browser chrome */
.pc-head {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #E8E8E8, #DCDCDC);
  border-bottom: 1px solid #C8C8C8;
}
.pc-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.pc-bad .pc-dot:nth-child(1) { background: #FF5F57; }
.pc-bad .pc-dot:nth-child(2) { background: #FEBC2E; }
.pc-bad .pc-dot:nth-child(3) { background: #28C840; }
.pc-good .pc-dot:nth-child(1) { background: #FF5F57; }
.pc-good .pc-dot:nth-child(2) { background: #FEBC2E; }
.pc-good .pc-dot:nth-child(3) { background: #28C840; }
.pc-url {
  flex: 1; margin-left: 8px;
  background: #FFFFFF; border-radius: 999px;
  padding: 5px 12px; font-family: var(--mono); font-size: 10.5px;
  color: #5F6368; display: flex; align-items: center;
  border: 1px solid #D2D2D2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pc-tabs { display: flex; gap: 4px; margin-left: 6px; }
.pc-tabs span { width: 12px; height: 12px; border-radius: 2px; background: #C8C8C8; }
.pc-tabs span.active { background: #FFFFFF; }

/* Body */
.pc-body { padding: 20px 22px 22px; background: #FFFFFF; flex: 1; display: flex; flex-direction: column; }
@media (max-width:560px){
  .pc-body { padding: 18px 16px 20px; }
  .pc-url { font-size: 9px; padding: 4px 8px; }
}

/* Google logo + search bar */
.pc-google-bar {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.pc-glogo {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 32px; font-weight: 500; letter-spacing: -0.04em;
  display: flex;
  margin-bottom: 4px;
}
.pc-search-bar {
  display: flex; align-items: center; gap: 10px;
  background: #FFFFFF; border: 1px solid #DFE1E5;
  border-radius: 999px; padding: 8px 16px;
  width: 100%;
  color: #9AA0A6;
  box-shadow: 0 1px 6px rgba(32,33,36,0.08);
  transition: box-shadow .3s;
}
.pc-search-bar.good { box-shadow: 0 1px 8px rgba(32,33,36,0.12); }
.pc-typed {
  flex: 1;
  font-family: arial, sans-serif; font-size: 14px; color: #202124;
  overflow: hidden; white-space: nowrap;
  width: 0; animation: pcType 1.2s steps(15, end) forwards;
  animation-delay: 0s;
  font-weight: 400;
}
@keyframes pcType { to { width: 100%; } }
.pc-q-static {
  flex: 1;
  font-family: arial, sans-serif; font-size: 14px; color: #202124;
  font-weight: 400;
}
.pc-cursor {
  width: 1.5px; height: 16px; background: #4285F4;
  animation: blink 1s steps(2) infinite;
  flex-shrink: 0;
}
@keyframes blink { 50% { opacity: 0; } }
.pc-mic { flex-shrink: 0; }

/* Mini tab row (good only) */
.pc-tabs-mini {
  display: flex; gap: 18px;
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 12px;
  font-family: arial, sans-serif; font-size: 12px; color: #5F6368;
}
.pc-tabs-mini span {
  padding: 6px 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.pc-tabs-mini span.active { color: #1A73E8; border-bottom-color: #1A73E8; }

.pc-meta {
  font-family: arial, sans-serif; font-size: 12px;
  color: #70757A; margin-bottom: 14px;
  display: block;
}
.pc-meta.good strong { color: #202124; font-weight: 600; }

/* Did-you-mean + related searches + richer empty */
.pc-didyoumean {
  font-family: arial, sans-serif !important; font-size: 14px;
  color: #4D5156; margin-bottom: 14px;
}
.pc-didyoumean em {
  color: #C8161D; text-decoration: underline; cursor: pointer;
  font-style: italic !important;
}
.pc-empty {
  text-align: left; padding: 22px 20px;
  background: #F8F9FA; border-radius: 12px;
  border: 1px solid #E8EAED;
  color: #5F6368;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 16px;
}
.pc-empty-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #FFFFFF; border: 1px solid #E8EAED;
  display: grid; place-items: center;
  color: #9AA0A6;
  margin-bottom: 4px;
}
.pc-empty-title {
  font-family: arial, sans-serif !important; font-size: 16px; font-weight: 500;
  color: #202124;
}
.pc-empty-sub {
  font-family: arial, sans-serif !important; font-size: 13px;
  color: #5F6368; line-height: 1.5; margin: 0;
}
.pc-empty-list {
  list-style: disc; padding-left: 20px; margin: 4px 0 6px;
  font-family: arial, sans-serif !important; font-size: 12.5px;
  color: #5F6368; line-height: 1.6;
}
.pc-empty-list li { margin-bottom: 2px; }
.pc-empty-warn {
  display: flex; align-items: center; gap: 8px;
  margin-top: 6px; padding: 10px 12px;
  background: #FFF4F1; border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-family: arial, sans-serif !important; font-size: 12.5px;
  color: #5F2A1A; font-weight: 500;
}
.pc-related-title {
  font-family: arial, sans-serif !important; font-size: 13px;
  color: #202124; font-weight: 500; margin-bottom: 8px;
}
.pc-related-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.pc-chip {
  display: inline-flex; align-items: center;
  background: #F1F3F4; border-radius: 999px;
  padding: 6px 12px; font-family: arial, sans-serif !important;
  font-size: 12px; color: #1F1F1F;
  border: 1px solid transparent;
  cursor: pointer; transition: background .2s;
}
.pc-chip:hover { background: #E8EAED; }

/* Loading spinner for empty state */
.pc-spinner-wrap {
  display: none;
}
.pc-spinner {
  width: 22px; height: 22px;
  border: 2px solid #E8EAED;
  border-top-color: #4285F4;
  border-radius: 50%;
  animation: pcSpin 1s linear infinite;
  animation-delay: 3s;
  opacity: 0;
  animation-fill-mode: forwards;
}
@keyframes pcSpin { 0% { transform: rotate(0); opacity: 1; } 100% { transform: rotate(360deg); opacity: 0; } }

/* Empty state (duplicate removed, see canonical rule above) */
.pc-empty-title {
  font-family: arial, sans-serif; font-size: 14px; font-weight: 600;
  color: #202124;
}
.pc-empty small {
  font-family: arial, sans-serif; font-size: 11.5px; color: #70757A;
  line-height: 1.5;
}
.pc-empty-tags {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-top: 6px;
  font-family: var(--mono); font-size: 10px; color: var(--accent);
}

/* Search results (good) */
.pc-result {
  padding: 16px 0 18px;
  border-bottom: 1px solid #F0F0F0;
  animation: pcResult .55s cubic-bezier(.22,1,.36,1) forwards;
  opacity: 0; transform: translateY(10px);
  animation-delay: var(--d, 0s);
  display: block;
}
.pc-result > * { display: block; margin-top: 0; }
.pc-result:last-of-type { border-bottom: 0; }
@keyframes pcResult { to { opacity: 1; transform: translateY(0); } }
.pc-source {
  display: flex; align-items: center; gap: 6px;
  font-family: arial, sans-serif; font-size: 12px;
  color: #202124; margin-bottom: 5px;
  flex-wrap: wrap;
}
.pc-fav { width: 16px; height: 16px; border-radius: 50%; display: inline-grid; place-items: center; font-size: 9px; font-weight: 700; font-family: arial, sans-serif; color: #fff; flex-shrink: 0; }
.pc-fav.toi { background: #C8161D; }
.pc-fav.ht { background: #1B5E9C; }
.pc-fav.fb { background: #0066B2; }
.pc-domain { font-weight: 500; }
.pc-crumb { color: #5F6368; }
.pc-headline {
  font-family: arial, sans-serif !important; font-size: 18px; font-weight: 400;
  color: #1A0DAB; line-height: 1.3; margin-bottom: 5px;
  letter-spacing: 0; cursor: pointer;
  transition: text-decoration .15s;
}
.pc-headline:hover { text-decoration: underline; }
.pc-good .pc-result:nth-child(odd) .pc-headline { color: #1A0DAB; }
.pc-snippet {
  font-family: arial, sans-serif; font-size: 13px;
  color: #4D5156; line-height: 1.45; margin-bottom: 6px;
}
.pc-meta-tag {
  font-family: arial, sans-serif; font-size: 11.5px;
  color: #70757A;
}

/* Arrow column */
.pc-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 8px 0;
  align-self: center;
}
.pc-arrow-line {
  width: 1px; flex: 1; min-height: 24px;
  background: linear-gradient(180deg, transparent, rgba(255,77,26,0.5), transparent);
}
.pc-arrow-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,77,26,0.4);
  animation: arrowPulse 2.5s ease-in-out infinite;
}
.pc-arrow-icon svg { width: 20px; height: 20px; }
@keyframes arrowPulse {
  0%,100% { transform: scale(1); box-shadow: 0 8px 24px rgba(255,77,26,0.4); }
  50% { transform: scale(1.08); box-shadow: 0 12px 32px rgba(255,77,26,0.6); }
}
.pc-arrow span {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
  white-space: nowrap;
}
@media (max-width:860px){
  .pc-arrow { flex-direction: row; padding: 8px 0; gap: 14px; }
  .pc-arrow-line { width: auto; height: 1px; min-height: 0; flex: 1;
    background: linear-gradient(90deg, transparent, rgba(255,77,26,0.5), transparent); }
  .pc-arrow-icon { transform: rotate(90deg); animation: arrowPulseH 2.5s ease-in-out infinite; }
  @keyframes arrowPulseH {
    0%,100% { transform: rotate(90deg) scale(1); }
    50% { transform: rotate(90deg) scale(1.08); }
  }
}

/* Caption */
.pc-caption {
  margin-top: 24px;
  text-align: center;
  font-family: var(--display); font-style: italic;
  font-size: 17px; color: rgba(245,241,234,0.75);
  line-height: 1.5;
}
.pc-caption span {
  color: var(--accent); font-style: normal; font-weight: 600;
  font-family: var(--sans); display: inline-block; margin-right: 6px;
  animation: bounce 1.5s ease-in-out infinite;
}
.pc-caption em { color: #F5F1EA; font-style: italic; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (max-width:560px){ .pc-caption { font-size: 14.5px; } }

/* Hide noise + cap AFTER side at 2 results */
.pc-related { display: none; }

.pc-empty .pc-empty-line {
  font-family: arial, sans-serif; font-size: 14px;
  color: #202124; line-height: 1.5;
}
.pc-empty .pc-empty-suggestions {
  font-family: arial, sans-serif; font-size: 13px;
  color: #5F6368; line-height: 1.7;
}
.pc-empty .pc-empty-suggestions .sug-title {
  font-weight: 500; color: #202124; margin-bottom: 2px; display: block;
}
/* All 3 .pc-result on AFTER side stay visible across all viewports */

@media (max-width: 760px) {
  .pc-body { padding: 16px 14px 18px; }
  .pc-mock { box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
  .pc-good { box-shadow: 0 10px 24px rgba(0,0,0,0.35), 0 0 20px rgba(255,77,26,0.1); }

  .pc-tabs-mini,
  .pc-empty-list,
  .pc-empty-warn,
  .pc-didyoumean { display: none; }

  .pc-empty { padding: 14px; gap: 6px; margin-bottom: 0; }
  .pc-empty-icon { width: 40px; height: 40px; margin-bottom: 0; }
  .pc-empty-icon svg { width: 22px; height: 22px; }
  .pc-empty-title { font-size: 14px; }
  .pc-empty-sub { font-size: 12px; }

  .pc-glogo { font-size: 24px; margin-bottom: 0; }
  .pc-google-bar { gap: 8px; margin-bottom: 10px; }
  .pc-search-bar { padding: 6px 12px; }
  .pc-typed, .pc-q-static { font-size: 13px; }
  .pc-meta { font-size: 11px; margin-bottom: 10px; }

  .pc-arrow { padding: 4px 0; gap: 10px; }
  .pc-arrow-icon { width: 34px; height: 34px; }
  .pc-arrow-icon svg { width: 16px; height: 16px; }
  .pc-arrow span { font-size: 9.5px; }

  .problem-compare { gap: 10px; }
  .pc-stage { margin-bottom: 36px; }
}

@media (max-width: 420px) {
  .pc-body { padding: 14px 12px; }
  .pc-empty-icon { display: none; }
  .pc-glogo { font-size: 20px; }
}

/* Closing CTA */
.problem-cta {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; text-align: center;
  padding: 40px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.problem-cta h3 {
  font-family: var(--display); font-style: italic;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.1; letter-spacing: -0.03em;
  color: #F5F1EA;
  max-width: 720px;
}
@media (max-width:640px){ .problem { padding: 48px 22px; } }
.problem::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(800px 400px at 90% -10%, color-mix(in oklch, var(--accent) 25%, transparent), transparent 60%),
    radial-gradient(600px 500px at -10% 110%, color-mix(in oklch, var(--electric) 15%, transparent), transparent 60%);
}
.problem > * { position: relative; }
.problem .headline { max-width: 820px; }
.problem .headline h2 { color: var(--paper); font-size: clamp(40px, 6vw, 96px); }
.problem .headline h2 .q { color: var(--accent); font-style: italic; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid rgba(255,255,255,.15); }
@media (max-width:820px){ .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  padding: 36px 28px 28px;
  border-right: 1px solid rgba(255,255,255,.22);
}
.problem-grid .problem-card:last-child { border-right: 0; }
.problem-card .pct {
  font-family: var(--display); font-size: clamp(72px, 9vw, 120px);
  line-height: 0.9; letter-spacing: -0.04em;
  color: var(--accent);
}
.problem-card h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; margin: 18px 0 8px; letter-spacing: -0.005em; }
.problem-card p { color: #B8B6B0; font-size: 14.5px; line-height: 1.55; max-width: 280px; }

/* Services - offset grid */
.svc-wrap {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  padding: 40px 32px;
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  transition: background .25s ease;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.svc:hover { background: #0D0D0D; color: var(--ink); }
.svc:hover .num, .svc:hover p { color: rgba(245,241,234,.6); }
.svc:hover .arrow { background: var(--accent); color:#fff; border-color: var(--accent); transform: rotate(-45deg); }
.svc-grid .svc:nth-child(3n) { border-right: 0; }
@media (max-width: 900px) { .svc-grid .svc:nth-child(3n) { border-right: 1px solid var(--line-2); } .svc-grid .svc:nth-child(2n) { border-right: 0; } }
@media (max-width: 560px) { .svc-grid .svc { border-right: 0 !important; } }
.svc .num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; transition: color .2s; }
.svc h4 { font-family: var(--display); font-size: clamp(28px, 2.6vw, 38px); font-weight: 400; letter-spacing: -0.03em; }
.svc p { color: var(--muted); font-size: 14.5px; transition: color .2s; }
.svc .arrow { margin-top: auto; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: all .25s; color: var(--ink); }
.svc .arrow svg { width: 16px; height: 16px; }

/* Process - timeline */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-2); }
@media (max-width: 820px) { .process { grid-template-columns: 1fr; } }
.step {
  padding: 44px 32px;
  border-right: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.step:last-child { border-right: 0; }
.step .step-num {
  font-family: var(--display); font-size: clamp(80px, 10vw, 140px);
  line-height: 0.85; letter-spacing: -0.05em;
  color: var(--ink);
  font-style: italic;
}
.step h4 { font-family: var(--display); font-size: 28px; }
.step p { color: var(--muted); font-size: 14.5px; }
.step .meta { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: .18em; text-transform: uppercase; padding-top: 16px; margin-top: auto; display:flex; gap:10px; align-items:center; }
.step .meta::before { content:""; width:24px; height:1px; background: var(--accent); }

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 44px 28px; border-right: 1px solid var(--line-2); }
.stat:last-child { border-right: 0; }
@media (max-width: 820px) { .stat:nth-child(2n) { border-right: 0; } .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-2); } }
.stat b { font-family: var(--display); font-size: clamp(60px, 7vw, 100px); line-height: 0.9; letter-spacing: -0.04em; display: block; }
.stat b em { font-style: italic; color: var(--accent); }
.stat span { color: var(--muted); font-size: 13px; margin-top: 10px; display: block; font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-2); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  padding: 36px 28px;
  border-right: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 18px;
}
.testi:last-child { border-right: 0; }
@media (max-width:900px){ .testi { border-right: 0; border-bottom: 1px solid var(--line); } .testi:last-child { border-bottom: 0; } }
.testi .stars { color: var(--accent); font-size: 14px; letter-spacing: 4px; }
.testi blockquote { margin: 0; font-family: var(--display); font-size: clamp(22px, 2vw, 28px); line-height: 1.2; letter-spacing: -0.02em; }
.testi blockquote::before { content: "“"; color: var(--accent); font-size: 60px; line-height: 0; vertical-align: -0.25em; margin-right: 4px; }
.testi .who { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--line-2); margin-top: auto; }
.testi .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 14px; font-family: var(--sans); }
.testi .who b { font-size: 14px; display: block; font-weight: 600; }
.testi .who span { font-size: 12px; color: var(--muted); }

/* Compare */
.compare { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
@media (max-width: 900px) { .compare { grid-template-columns: 1fr; } }
.col { padding: 40px 32px; border-right: 1px solid var(--line-2); }
.col:last-child { border-right: 0; }
@media (max-width:900px){ .col { border-right: 0; border-bottom: 1px solid var(--line); } .col:last-child { border-bottom: 0; } }
.col h4 { font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-bottom: 22px; }
.col h3 { font-family: var(--display); font-size: 32px; margin: 6px 0 22px; }
.col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.col li { font-size: 15px; display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.col li .bullet { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; background: #3A1A14; color: #FF7A4D; font-weight: 700; font-size: 11px; }
.col.ours { background: var(--accent); color: #fff; border-color: var(--accent); }
.col.ours h4 { color: rgba(255,255,255,.7); }
.col.ours h3 { color: #fff; }
.col.ours li { color: rgba(255,255,255,.9); }
.col.ours li .bullet { background: rgba(255,255,255,.25); color: #fff; }
.col.ours .mini-cta .btn-accent { background: #1A1A1A; color: #fff; border: 1px solid #1A1A1A; }
.col.ours .mini-cta .btn-accent:hover { background: #fff; color: var(--accent); border-color: #fff; }
.col.ours .mini-cta { margin-top: 28px; }

/* FAQ */
.faq { display:grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
@media (max-width:900px){ .faq { grid-template-columns: 1fr; gap: 24px; } }
.q-list { border-top: 1px solid var(--line-2); }
.q-item { border-bottom: 1px solid var(--line-2); }
.q-item summary {
  padding: 26px 0;
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  transition: color .15s;
}
.q-item summary::-webkit-details-marker { display: none; }
.q-item summary:hover { color: var(--accent); }
.q-item .ic { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: all .25s; flex-shrink: 0; font-family: var(--sans); font-size: 18px; }
.q-item[open] .ic { background: var(--accent); color: #fff; border-color: var(--accent); transform: rotate(45deg); }
.q-item .a { padding: 0 0 26px; color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 640px; }

/* CTA banner */
.cta-banner {
  background: #0D0D0D; color: var(--ink);
  padding: 120px 56px;
  text-align: center;
  position: relative; overflow: hidden;
}
@media (max-width: 640px) { .cta-banner { padding: 72px 22px; } }
.cta-banner::before {
  content:""; position: absolute; inset:0;
  background:
    radial-gradient(600px 400px at 20% 0%, color-mix(in oklch, var(--electric) 28%, transparent), transparent 60%),
    radial-gradient(600px 400px at 80% 100%, color-mix(in oklch, var(--accent) 30%, transparent), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #F5F1EA; font-size: clamp(48px, 8vw, 140px); line-height: 0.95; }
.cta-banner h2 .it { color: var(--accent); }
.cta-banner p { color: rgba(245,241,234,0.85); max-width: 560px; margin: 22px auto 36px; font-size: 17px; }
.cta-banner .btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-banner .btn-ghost { color: #F5F1EA; border-color: rgba(255,255,255,.5); }
.cta-banner .btn-ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Footer */
.footer { border-top: 1px solid var(--line-2); padding: 56px 0 32px; background: #111111; }
.footer-top { display:grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-2); }
@media (max-width:820px){ .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width:520px){ .footer-top { grid-template-columns: 1fr; } }
.footer .wordmark { font-size: 48px; }
.footer h5 { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; }
.footer .col-links a { display: block; padding: 6px 0; font-size: 15px; color: var(--ink-2); transition: color .15s, transform .15s; }
.footer .col-links a:hover { color: var(--accent); transform: translateX(4px); }
.footer .about p { color: var(--muted); font-size: 14.5px; margin-top: 14px; max-width: 360px; line-height: 1.55; }
.footer .legal { padding-top: 24px; display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; font-family: var(--mono); letter-spacing: .08em; text-transform: uppercase; flex-wrap: wrap; gap: 12px; }

/* Giant footer wordmark */
.footer-giant {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.85; letter-spacing: -0.05em;
  padding: 40px 0 10px;
  text-align: center;
  color: rgba(245,241,234,0.18);
  overflow: hidden;
}
.footer-giant em { color: var(--accent); opacity: 0.9; }

/* Mobile sticky dock */
.mobile-dock {
  display: none;
  position: fixed; bottom: 14px; left: 14px; right: 14px;
  z-index: 50;
  gap: 10px;
}
.mobile-dock .db {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,0,0,.22), 0 2px 4px rgba(0,0,0,.1);
}
.mobile-dock .db.wa { background: #25D366; color: #fff; }
.mobile-dock .db.call { background: var(--ink); color: var(--paper); }
.mobile-dock .db svg { width: 16px; height: 16px; }
@media (max-width: 760px) {
  .mobile-dock { display: flex; left: 12px; right: 12px; width: calc(100% - 24px); box-sizing: border-box; max-width: calc(100vw - 24px); }
  .mobile-dock .db { min-width: 0; flex: 1; font-size: 14px; padding: 14px 10px; }
  body { padding-bottom: 88px; }
}

/* Sub-page heads */
.page-head {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line-2);
}
.page-head .eyebrow { margin-bottom: 20px; }
.page-head h1 { font-size: clamp(54px, 9vw, 148px); }
.page-head h1 .it { color: var(--accent); }
.page-head p { margin-top: 24px; color: var(--muted); max-width: 560px; font-size: 17px; }

/* Long-form */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(32px, 4vw, 48px); margin-top: 56px; margin-bottom: 16px; letter-spacing: -0.03em; }
.prose h3 { font-size: 22px; font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; margin-top: 32px; margin-bottom: 10px; }
.prose p { margin: 10px 0; color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.prose ul { padding-left: 20px; margin: 12px 0; color: var(--ink-2); }
.prose ul li { margin: 6px 0; font-size: 15.5px; line-height: 1.6; }
.prose .meta { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.prose .info-card {
  background: #0D0D0D; color: #F5F1EA;
  border: 1px solid var(--line-2);
  border-left: 2px solid var(--accent);
  border-radius: 4px;
  padding: 26px 28px; margin: 32px 0;
}
.prose .info-card h4 { font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; color: var(--accent); margin: 0 0 10px; }
.prose .info-card p { color: #F5F1EA; margin: 4px 0; font-size: 15px; }

/* About page */
.founder-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; gap: 32px; } }
.portrait {
  aspect-ratio: 1/1;
  border-radius: 2px;
  position: relative; overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--paper-2);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.9) contrast(1.05); }
.portrait::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.2));
  pointer-events: none;
}
.portrait .badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: #1A1A1A; color: var(--ink);
  padding: 10px 14px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  border-radius: 999px;
}
.portrait .badge .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.portrait .tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em;
  background: var(--accent); color: #fff;
  padding: 6px 10px; text-transform: uppercase;
}

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
@media (max-width: 820px) { .values { grid-template-columns: 1fr; } }
.value { padding: 40px 32px; border-right: 1px solid var(--line-2); }
.value:last-child { border-right: 0; }
@media (max-width:820px){ .value { border-right: 0; border-bottom: 1px solid var(--line); } .value:last-child { border-bottom: 0; } }
.value .num { font-family: var(--display); font-size: 80px; line-height: 1; color: var(--accent); font-style: italic; }
.value h4 { font-family: var(--display); font-size: 32px; margin: 18px 0 8px; }
.value p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #0D0D0D; color: var(--ink);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  border-right: 1px solid var(--line-2);
}
@media (max-width:900px){ .contact-card { border-right: 0; } }
.contact-card::before {
  content:""; position: absolute; inset:0;
  background: radial-gradient(500px 320px at 100% 0%, color-mix(in oklch, var(--accent) 30%, transparent), transparent 60%);
  pointer-events: none;
}
.contact-card > * { position: relative; }
.contact-card h3 { color: #F5F1EA; font-family: var(--display); font-size: 40px; }
.contact-card .lines { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact-card .line { display: flex; gap: 14px; align-items: flex-start; }
.contact-card .line .ic { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .line .ic svg { width: 18px; height: 18px; }
.contact-card .line small { display: block; color: rgba(255,255,255,.80); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 4px; font-family: var(--mono); }
.contact-card .line a { font-size: 17px; font-weight: 500; }
.contact-card .line a:hover { color: var(--accent); }
.contact-card .foot { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.22); display:grid; grid-template-columns:1fr 1fr; gap:20px; color: #F5F1EA !important; font-size: 14.5px; line-height: 1.5; }
.contact-card .foot div { color: #F5F1EA !important; }
.contact-card .foot b { color: #FFFFFF !important; display: block; font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-family: var(--mono); margin-bottom: 6px; opacity: .8; }

.form-card { padding: 48px 40px; background: #1E1E1E; }
.form-card h3 { font-family: var(--display); font-size: 40px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 11px; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; margin-bottom: 8px; font-family: var(--mono); }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line-2);
  background: #232323;
  color: var(--ink);
  border-radius: 6px;
  padding: 13px 14px;
  font-family: var(--sans); font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--ink);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 20%, transparent);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-submit { display: flex; gap: 14px; align-items: center; margin-top: 18px; flex-wrap: wrap; }
.form-submit small { color: var(--muted); font-size: 13px; }

.success-note {
  display: none; background: #E3F3E9; color: #0F7A3C;
  border: 1px solid #BEDBC6;
  border-radius: 6px; padding: 14px 16px; margin-top: 16px; font-size: 14.5px;
}
.success-note.show { display: block; }

/* Entrance */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

@media (max-width: 380px) {
  .hero h1 .hero-word { font-size: 44px !important; }
  .hero h1 { font-size: 44px !important; }
  .hero h1 .chip { font-size: 44px !important; padding: 3px 10px; }
}

/* Mobile hero animated section */
.hero-mobile-anim { display: none; }
@media (max-width: 860px) {
  .hero-mobile-anim {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
  }

  /* Stat counters */
  .hma-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1A1A1A;
    border: 1px solid var(--line-2);
    border-top: 1px solid rgba(255,77,26,0.35);
    border-radius: 14px;
    padding: 20px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(255,77,26,0.06);
  }
  .hma-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
  }
  .hma-stat > div { display: flex; align-items: baseline; gap: 1px; }
  .hma-num {
    font-family: var(--display);
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #F5F1EA;
  }
  .hma-suffix {
    font-family: var(--display);
    font-size: 22px;
    color: var(--accent);
    line-height: 1;
    font-style: italic;
  }
  .hma-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    display: block;
    text-align: center;
  }
  .hma-divider {
    width: 1px;
    height: 40px;
    background: var(--line-2);
    flex-shrink: 0;
  }

  /* Rotating testimonials */
  .hma-testi {
    background: #1A1A1A;
    border: 1px solid var(--line-2);
    border-radius: 14px;
    padding: 20px 18px 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    overflow: hidden;
    position: relative;
  }
  .hma-testi::before {
    content: "\201C";
    position: absolute;
    top: -8px; right: 14px;
    font-family: var(--display);
    font-size: 80px;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
    pointer-events: none;
  }
  .hma-testi-track { position: relative; min-height: 80px; }
  .hma-slide {
    display: none;
    animation: fadeSlide .5s ease;
  }
  .hma-slide.active { display: block; }
  .hma-slide p {
    font-family: var(--display);
    font-style: italic;
    font-size: 16px;
    line-height: 1.35;
    color: #F5F1EA;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .hma-slide span {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .hma-dots {
    display: flex;
    gap: 6px;
    margin-top: 14px;
    justify-content: center;
  }
  .hma-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--line-2);
    transition: background .3s, width .3s;
    cursor: pointer;
  }
  .hma-dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 3px;
  }
  @keyframes fadeSlide {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
.hide-sm { display: initial; }
@media (max-width: 640px) { .hide-sm { display: none; } }

/* ---- Problem section contrast fixes ---- */
.problem .headline h2 { color: #f5f1ea !important; font-size: clamp(40px, 6vw, 96px); }

/* ---- Hero mobile alignment ---- */
@media (max-width: 768px) {
  .hero h1 { text-align: left; margin-bottom: 8px; }
  .hero h1 .stack { display: block; line-height: 1.1; }
  .hero h1 .stack.right { text-align: left; }
  .hero .container { gap: 24px; }
  .hero-row { padding-top: 20px; }
  .hero h1 .chip { display: inline-flex; transform: rotate(-1.5deg); font-size: inherit; }
}

@media (max-width: 520px) {
  .hero h1 .hero-word { display: block; font-size: 32px !important; line-height: 1.08; letter-spacing: -0.02em; }
  .hero h1 { font-size: 32px !important; }
  .hero h1 .chip {
    display: inline-flex;
    font-size: 32px !important;
    padding: 2px 10px;
    border-radius: 8px;
    transform: rotate(-1.5deg);
    white-space: nowrap;
  }
  .hero { padding: 36px 0 24px; }
  .hero-row p { font-size: 16px; }
}

/* ---- Mobile critical overrides ---- */
@media (max-width: 480px) {
  .hero h1 { font-size: 32px !important; line-height: 1.08; }
  .hero { padding: 36px 0 24px; }
  .hero h1 .chip { display: inline-flex; padding: 2px 10px; border-radius: 8px; transform: rotate(-1.5deg); white-space: nowrap; font-size: 32px !important; }
  h2 { font-size: clamp(32px, 10vw, 60px); }
  .problem-card .pct { font-size: 64px; }
  .stat b { font-size: 52px; }
  .value .num { font-size: 56px; }
  .step .step-num { font-size: 72px; }
  .footer-giant { font-size: 60px; }
  .svc { min-height: auto; padding: 28px 22px; }
  .col { padding: 28px 22px; }
  .step { padding: 32px 22px; }
  .testi { padding: 28px 22px; }
  .logos .row { grid-template-columns: 1fr 1fr 1fr; }
}

.pc-typed-static {
  flex: 1;
  font-family: arial, sans-serif;
  font-size: 14px;
  color: #202124;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

