:root {
  --ink: #0c111c;
  --ink-2: #141b29;
  --blue: #2457ff;
  --blue-dark: #163ed7;
  --blue-soft: #eaf0ff;
  --white: #ffffff;
  --paper: #f6f8fc;
  --line: #dfe5ef;
  --muted: #667085;
  --success: #4ade80;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(12, 17, 28, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section-pad { padding: 120px 0; }
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 1000;
  padding: 10px 16px; color: white; background: var(--blue); border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(223, 229, 239, 0.75);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 36px; }
.brand { display: flex; align-items: center; width: 142px; height: 50px; overflow: hidden; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a, .footer-links a { color: #424b5d; font-weight: 650; font-size: 0.92rem; transition: color .2s ease; }
.main-nav a:hover, .footer-links a:hover { color: var(--blue); }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--ink); transition: .2s ease; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 24px; border: 1px solid var(--blue); border-radius: 999px;
  background: var(--blue); color: white; font-weight: 800; letter-spacing: -0.01em;
  box-shadow: 0 14px 32px rgba(36, 87, 255, .24); transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 18px 38px rgba(36, 87, 255, .3); }
.button-small { min-height: 44px; padding: 0 18px; font-size: .9rem; }
.button-dark { background: var(--ink); border-color: var(--ink); box-shadow: none; }
.button-dark:hover { background: #20293a; }
.button-light { color: var(--ink); background: white; border-color: white; box-shadow: 0 16px 34px rgba(0,0,0,.14); }
.button-light:hover { background: #f0f4ff; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; }
.text-link span { color: var(--blue); }

.hero {
  position: relative; overflow: hidden; min-height: 760px; padding: 94px 0 105px;
  background:
    linear-gradient(rgba(36, 87, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 87, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f6f8ff 100%);
  background-size: 48px 48px, 48px 48px, auto;
}
.hero::after {
  content: ""; position: absolute; left: 50%; bottom: -260px; width: 720px; height: 520px;
  border: 120px solid rgba(36,87,255,.055); border-radius: 50%; transform: rotate(-10deg); pointer-events: none;
}
.hero-glow { position: absolute; width: 520px; height: 520px; right: 4%; top: 0; border-radius: 50%; background: rgba(36,87,255,.12); filter: blur(90px); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 68px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--blue); font-size: .8rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(36,87,255,.1); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 690px; margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.6rem); line-height: .97; letter-spacing: -.065em; }
h1 em { display: block; color: var(--blue); font-style: normal; }
.hero-text { max-width: 640px; margin-bottom: 34px; color: #515c70; font-size: 1.15rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.channel-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 36px 0 0; list-style: none; }
.channel-list li { padding: 7px 12px; color: #475166; background: white; border: 1px solid var(--line); border-radius: 999px; font-size: .83rem; font-weight: 700; }

.growth-panel {
  position: relative; padding: 24px; color: white; background: var(--ink);
  border: 1px solid rgba(255,255,255,.1); border-radius: 32px; box-shadow: var(--shadow); transform: rotate(1deg);
}
.growth-panel::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.06); border-radius: 24px; pointer-events: none; }
.panel-top { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 22px; }
.panel-top div { display: grid; }
.panel-kicker { color: #8490a6; font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.panel-top strong { margin-top: 3px; font-size: 1.06rem; }
.live-status { display: inline-flex; align-items: center; gap: 7px; color: #c8f7d8; background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.2); border-radius: 999px; padding: 6px 10px; font-size: .72rem; font-weight: 800; white-space: nowrap; }
.live-status i { width: 7px; height: 7px; background: var(--success); border-radius: 50%; box-shadow: 0 0 12px var(--success); }
.flow-card { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 8px; padding: 16px; color: #a9b4c7; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; font-size: .72rem; font-weight: 750; text-align: center; }
.flow-card b { color: #59657a; }
.flow-card .flow-result { padding: 8px 4px; color: white; background: var(--blue); border-radius: 10px; }
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.platform-card { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 11px; margin: 0; padding: 14px; background: #161e2c; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; }
.platform-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; font-weight: 900; }
.meta-icon { background: var(--blue); }
.google-icon { color: #13233e; background: white; }
.platform-card div:nth-child(2) { display: grid; }
.platform-card small { color: #758198; font-size: .65rem; }
.platform-card strong { font-size: .84rem; }
.platform-card > span { color: #a6efbe; font-size: .65rem; font-weight: 800; }
.signal-card { margin-top: 12px; padding: 18px; background: linear-gradient(145deg, #1a2435, #121925); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; }
.signal-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; font-size: .72rem; }
.signal-heading span { color: #8995a9; }
.signal-heading strong { color: #cad3e2; }
.bars { height: 130px; display: flex; align-items: flex-end; gap: 8px; margin-top: 14px; padding-top: 20px; border-bottom: 1px solid rgba(255,255,255,.09); background: repeating-linear-gradient(to bottom, rgba(255,255,255,.06) 0 1px, transparent 1px 34px); }
.bars i { flex: 1; height: var(--h); min-width: 10px; border-radius: 5px 5px 0 0; background: linear-gradient(to top, var(--blue-dark), #4a73ff); opacity: .95; }
.floating-note { position: absolute; right: -24px; bottom: -24px; padding: 13px 18px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 18px 42px rgba(13,20,34,.16); font-size: .78rem; font-weight: 850; }
.floating-note span { color: var(--blue); }

.clients { padding: 30px 0 82px; background: var(--paper); border-top: 1px solid #edf0f6; }
.section-note { margin-bottom: 24px; color: #778195; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: stretch; }
.logo-card { display: grid; place-items: center; min-height: 112px; padding: 18px; background: white; border: 1px solid var(--line); border-radius: 17px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.logo-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(12,17,28,.08); }
.logo-card img { max-width: 100%; max-height: 72px; object-fit: contain; }
.logo-card.dark, .logo-card.navy, .logo-card.red { padding: 14px; }
.logo-card.dark { background: #050505; border-color: #202020; }
.logo-card.navy { background: #020326; border-color: #15163c; }
.logo-card.red { background: #cc1018; border-color: #d92b31; }
.logo-card.dark img, .logo-card.navy img, .logo-card.red img { width: 100%; height: 78px; max-height: 78px; object-fit: contain; border-radius: 10px; }
.logo-card.wide img { max-height: 58px; }

.problem-section { padding: 122px 0; color: white; background: var(--ink); overflow: hidden; }
.problem-section .container { position: relative; }
.problem-section .container::before { content: ""; position: absolute; left: 45%; top: -170px; width: 540px; height: 540px; border-radius: 50%; border: 90px solid rgba(36,87,255,.13); transform: rotate(20deg); }
.section-heading { position: relative; max-width: 790px; margin-bottom: 54px; }
.section-heading h2, .method-intro h2, .manifesto-copy h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 4.6vw, 4.4rem); line-height: 1.04; letter-spacing: -.055em; }
.section-heading > p:last-child { max-width: 680px; color: #9ca8bc; font-size: 1.04rem; }
.section-heading.light h2 { max-width: 720px; }
.problem-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.problem-card { min-height: 260px; padding: 28px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.problem-card:nth-child(2) { transform: translateY(28px); }
.card-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 42px; color: #90a9ff; background: rgba(36,87,255,.13); border: 1px solid rgba(80,121,255,.25); border-radius: 12px; font-size: .78rem; font-weight: 850; }
.problem-card h3 { margin-bottom: 12px; font-size: 1.34rem; letter-spacing: -.025em; }
.problem-card p { margin-bottom: 0; color: #9aa6ba; }

.services { background: white; }
.services .section-heading { max-width: 850px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-card { min-height: 310px; padding: 32px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(12,17,28,.09); }
.service-card.featured { color: white; background: var(--blue); border-color: var(--blue); }
.service-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 64px; color: #758195; font-weight: 850; }
.service-head i { display: grid; place-items: center; width: 38px; height: 38px; color: var(--blue); background: white; border: 1px solid var(--line); border-radius: 50%; font-style: normal; }
.service-card.featured .service-head { color: #c8d5ff; }
.service-card.featured .service-head i { color: var(--blue); border: 0; }
.service-card h3 { margin-bottom: 13px; font-size: 1.55rem; letter-spacing: -.035em; }
.service-card p { max-width: 530px; margin-bottom: 0; color: #697489; }
.service-card.featured p { color: #d9e1ff; }
.service-tags { display: flex; gap: 8px; margin-top: 24px; }
.service-tags span { padding: 6px 10px; color: white; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; font-size: .74rem; font-weight: 750; }

.method { background: var(--blue-soft); }
.method-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.method-intro { position: sticky; top: 120px; }
.method-intro > p:not(.eyebrow) { max-width: 500px; margin-bottom: 30px; color: #59657b; }
.method-steps { padding: 0; margin: 0; list-style: none; border-top: 1px solid #cbd6f2; }
.method-steps li { display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 34px 0; border-bottom: 1px solid #cbd6f2; }
.method-steps li > span { color: var(--blue); font-size: .8rem; font-weight: 850; letter-spacing: .06em; }
.method-steps h3 { margin-bottom: 7px; font-size: 1.42rem; letter-spacing: -.025em; }
.method-steps p { max-width: 560px; margin-bottom: 0; color: #627087; }

.manifesto { background: white; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 86px; align-items: center; }
.manifesto-card { position: relative; min-height: 510px; display: flex; flex-direction: column; justify-content: space-between; padding: 44px; color: white; background: var(--ink); border-radius: 32px; overflow: hidden; }
.manifesto-card::before { content: ""; position: absolute; width: 350px; height: 350px; right: -120px; bottom: -110px; border: 75px solid var(--blue); border-radius: 50%; opacity: .7; }
.manifesto-card > * { position: relative; z-index: 1; }
.quote-mark { color: var(--blue); font-family: Georgia, serif; font-size: 7rem; line-height: .65; }
.manifesto-card blockquote { max-width: 540px; margin: auto 0 70px; font-size: clamp(2rem, 3.5vw, 3.35rem); font-weight: 800; line-height: 1.1; letter-spacing: -.05em; }
.manifesto-card > span { color: #8e9aaf; font-size: .72rem; font-weight: 850; letter-spacing: .11em; }
.manifesto-copy ul { display: grid; gap: 22px; padding: 0; margin: 34px 0 0; list-style: none; }
.manifesto-copy li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; }
.manifesto-copy li i { display: grid; place-items: center; width: 30px; height: 30px; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-style: normal; font-weight: 900; }
.manifesto-copy li span { display: grid; color: #697489; }
.manifesto-copy li strong { color: var(--ink); font-size: 1.02rem; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.faq .section-heading { position: sticky; top: 120px; }
.faq-list { border-top: 1px solid #ced5e1; }
.faq-list details { border-bottom: 1px solid #ced5e1; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; cursor: pointer; list-style: none; font-size: 1.05rem; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; display: grid; place-items: center; width: 32px; height: 32px; color: var(--blue); background: white; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; padding: 0 48px 24px 0; margin-bottom: 0; color: #667287; }

.final-cta { padding: 40px; background: var(--paper); }
.final-cta-inner { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; padding: 72px; color: white; background: var(--blue); border-radius: 34px; overflow: hidden; }
.final-cta-inner::after { content: ""; position: absolute; width: 400px; height: 400px; right: -130px; top: -230px; border: 90px solid rgba(255,255,255,.12); border-radius: 50%; }
.final-cta-inner > * { position: relative; z-index: 1; }
.final-cta .eyebrow { color: white; }
.final-cta .eyebrow span { background: white; box-shadow: 0 0 0 6px rgba(255,255,255,.13); }
.final-cta h2 { max-width: 800px; margin: 0; font-size: clamp(2.3rem, 4.8vw, 4.6rem); line-height: 1.02; letter-spacing: -.06em; }

.site-footer { padding: 74px 0 26px; color: white; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 60px; }
.footer-brand { display: flex; align-items: center; width: 166px; height: 68px; padding: 8px; background: white; border-radius: 14px; overflow: hidden; }
.footer-grid > p { max-width: 480px; margin: 0; color: #9ca7bb; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.footer-links a { color: #c7d0df; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 24px; color: #778398; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.footer-bottom a:hover { color: white; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-wrap { gap: 18px; }
  .main-nav { gap: 18px; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 780px; }
  .growth-panel { width: min(100%, 680px); margin-inline: auto; transform: none; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-card.wide { grid-column: span 2; }
  .method-shell, .manifesto-grid, .faq-grid { grid-template-columns: 1fr; gap: 54px; }
  .method-intro, .faq .section-heading { position: static; }
  .manifesto-card { min-height: 450px; }
  .final-cta-inner { grid-template-columns: 1fr; padding: 58px; }
  .final-cta-inner .button { justify-self: start; }
  .footer-grid { grid-template-columns: 180px 1fr; }
  .footer-links { grid-column: 1 / -1; grid-template-columns: repeat(4, auto); justify-content: start; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section-pad, .problem-section { padding: 86px 0; }
  .site-header { backdrop-filter: blur(14px); }
  .nav-wrap { min-height: 70px; }
  .brand { width: 128px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed; left: 14px; right: 14px; top: 78px; display: grid; gap: 0;
    padding: 10px; background: white; border: 1px solid var(--line); border-radius: 18px;
    box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 13px 14px; border-radius: 10px; }
  .main-nav a:hover { background: var(--blue-soft); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { padding: 62px 0 82px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .hero-text { font-size: 1.03rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button { min-height: 52px; padding: 0 20px; }
  .growth-panel { padding: 16px; border-radius: 24px; }
  .panel-top { flex-direction: column; }
  .flow-card { grid-template-columns: 1fr; text-align: left; }
  .flow-card b { display: none; }
  .flow-card span { padding: 8px 10px; border-left: 2px solid #2c3950; }
  .flow-card .flow-result { border-left: 0; }
  .platform-grid { grid-template-columns: 1fr; }
  .floating-note { position: static; width: fit-content; margin: 14px 0 -34px auto; }
  .clients { padding-bottom: 66px; }
  .logo-grid { grid-template-columns: 1fr 1fr; }
  .logo-card { min-height: 104px; }
  .logo-card.wide { grid-column: span 2; }
  .problem-grid, .services-grid { grid-template-columns: 1fr; }
  .problem-card:nth-child(2) { transform: none; }
  .problem-card { min-height: auto; }
  .card-number, .service-head { margin-bottom: 30px; }
  .service-card { min-height: auto; }
  .method-steps li { grid-template-columns: 52px 1fr; }
  .manifesto-card { min-height: 420px; padding: 30px; }
  .manifesto-card blockquote { margin-bottom: 50px; }
  .faq-list summary { font-size: 1rem; }
  .final-cta { padding: 14px; }
  .final-cta-inner { padding: 44px 28px; border-radius: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-links { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
