/* AppCoders shared site styles
   Auto-generated by combining inline <style> blocks from all marketing pages.
   Page-specific rules remain inline in each HTML file.
*/

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    line-height: 1.55;
  }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

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

.site-header {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in oklab, white 82%, transparent);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--ink-06);
  }

.nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 72px;
    gap: 32px;
  }

.brand img { height: 40px; width: auto; }

.nav-links {
    justify-self: center;
    display: flex; gap: 32px;
    font-size: 14px; color: var(--ink-70);
  }

.nav-links a { transition: color .2s ease; position: relative; }

.nav-links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 1px; background: var(--cyan); transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
  }

.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 999px;
    background: var(--ink); color: #fff;
    font-size: 13px; font-weight: 500;
    transition: transform .2s ease, background .2s ease;
  }

.nav-cta:hover { transform: translateY(-1px); background: #000; }

.nav-cta-mobile { display: none; }

.nav-cta .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--cyan); }

/* Mobile hamburger toggle (hidden on desktop) */
.nav-toggle {
    display: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 1px solid var(--ink-12);
    border-radius: 999px;
    width: 40px; height: 40px;
    padding: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
    transition: background .2s ease, border-color .2s ease;
  }

.nav-toggle:hover { background: var(--ink-03); }

.nav-toggle-bars { position: relative; width: 18px; height: 12px; display: block; }

.nav-toggle-bars span {
    position: absolute; left: 0; right: 0;
    height: 1.5px; background: currentColor; border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
  }

.nav-toggle-bars span:nth-child(1) { top: 0; }

.nav-toggle-bars span:nth-child(2) { top: 5px; }

.nav-toggle-bars span:nth-child(3) { top: 10px; }

html.nav-open .nav-toggle-bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }

html.nav-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }

html.nav-open .nav-toggle-bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

.nav-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(10,10,10,.32);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 49;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

html.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: .04em;
    color: var(--ink-70);
    padding: 7px 12px;
    border: 1px solid var(--ink-12);
    border-radius: 999px;
    background: var(--bg);
  }

.eyebrow .pulse {
    width: 7px; height: 7px; border-radius: 999px; background: var(--cyan);
    box-shadow: 0 0 0 0 rgba(41,197,246,.6);
    animation: pulse 2s infinite;
  }

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(41,197,246,.6); }
    70%  { box-shadow: 0 0 0 10px rgba(41,197,246,0); }
    100% { box-shadow: 0 0 0 0 rgba(41,197,246,0); }
  }

.hero-actions {
    margin-top: 40px;
    display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  }

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    height: 52px; padding: 0 22px;
    border-radius: 999px;
    font-weight: 500; font-size: 15px;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  }

.btn-primary {
    background: var(--ink); color: #fff;
  }

.btn-primary:hover { background: #000; transform: translateY(-1px); }

.btn-primary .arrow { transition: transform .2s ease; }

.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
    border: 1px solid var(--ink-12); color: var(--ink);
  }

.btn-ghost:hover { border-color: var(--ink); }

.hero-meta b { color: var(--ink); font-weight: 500; margin-right: 6px; }

section { padding: 120px 0; }

.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }

.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: .08em;
    color: var(--ink-50); text-transform: uppercase;
  }

.section-label::before {
    content: ""; width: 24px; height: 1px; background: var(--cyan);
  }

.cta-inner {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 80px; align-items: end;
  }

.cta-inner h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1; letter-spacing: -0.03em;
    margin: 0;
    text-wrap: balance;
  }

.cta-inner h2 em { color: var(--cyan); font-style: italic; font-weight: inherit; }

.cta-side p { color: var(--ink-70); margin: 0 0 22px; font-size: 16px; }

.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

footer {
    background: var(--ink);
    color: #fff;
    padding: 88px 0 36px;
    border-top: 1px solid rgba(255,255,255,.06);
    position: relative;
    overflow: hidden;
  }

footer::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 20% 0%, #000 0%, transparent 60%);
    pointer-events: none;
  }

footer .wrap { position: relative; z-index: 1; }

.foot-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
    margin-bottom: 72px;
  }

.foot-brand img {
    height: 26px;
    filter: brightness(0) invert(1) brightness(1.05);
  }

.foot-brand .sub {
    margin-top: 14px; color: rgba(255,255,255,.5);
    font-size: 13.5px; line-height: 1.6; max-width: 40ch;
  }

.foot-brand .loc {
    margin-top: 20px;
    font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em;
    color: rgba(255,255,255,.45); text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 10px;
  }

.foot-brand .loc::before {
    content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--cyan);
    box-shadow: 0 0 12px rgba(41,197,246,.8);
  }

.foot-col h5 {
    margin: 0 0 20px;
    font-family: var(--font-display); font-size: 17px; letter-spacing: -0.005em;
    color: #fff; font-weight: 700;
  }

.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }

.foot-col a { font-size: 14.5px; color: rgba(255,255,255,.85); transition: color .2s ease; }

.foot-col a:hover { color: var(--cyan); }

.foot-bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
    font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.5);
  }

.foot-bottom .made { display: inline-flex; gap: 8px; align-items: center; }

.foot-bottom .dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 999px; }

.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }

.marquee-track span::after { content: "●"; color: var(--cyan); }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }

.reveal.in { opacity: 1; transform: none; }

.tweaks-panel {
    position: fixed; right: 20px; bottom: 20px; z-index: 100;
    background: #fff; border: 1px solid var(--ink-12);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.25);
    width: 280px;
    font-family: var(--font-body);
    display: none;
  }

.tweaks-panel.open { display: block; }

.tweaks-panel h4 {
    margin: 0 0 14px;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ink-50); font-weight: 500;
    display: flex; align-items: center; gap: 8px;
  }

.tweaks-panel h4::before {
    content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--cyan);
  }

.tweaks-group { margin-bottom: 14px; }

.tweaks-group:last-child { margin-bottom: 0; }

.tweaks-group label {
    display: block; font-size: 12px; color: var(--ink-50);
    margin-bottom: 6px;
  }

.tweaks-options { display: flex; gap: 6px; flex-wrap: wrap; }

.tweaks-options button {
    flex: 1; min-width: fit-content;
    padding: 8px 10px;
    border: 1px solid var(--ink-12);
    border-radius: 8px;
    font-size: 12px; color: var(--ink-70);
    background: #fff;
    transition: all .2s ease;
  }

.tweaks-options button:hover { border-color: var(--ink-30); color: var(--ink); }

.tweaks-options button.active {
    background: var(--ink); color: #fff; border-color: var(--ink);
  }

:root {
    --cyan: #29C5F6;
    --cyan-600: #0FB0E0;
    --ink: #0A0A0A;
    --ink-70: #0a0a0ab3;
    --ink-50: #0a0a0a80;
    --ink-30: #0a0a0a4d;
    --ink-12: #0a0a0a1f;
    --ink-06: #0a0a0a0f;
    --ink-03: #0a0a0a08;
    --bg: #FFFFFF;
    --bg-soft: #FAFAFA;

    --font-display: "Space Grotesk", sans-serif;
    --font-body:    "Inter", sans-serif;
    --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --maxw: 1240px;
  }

html[data-accent="cyan"]    { --cyan: #29C5F6; --cyan-600: #0FB0E0; }

html[data-accent="violet"]  { --cyan: #8B5CF6; --cyan-600: #7C3AED; }

html[data-accent="emerald"] { --cyan: #10B981; --cyan-600: #059669; }

html[data-accent="amber"]   { --cyan: #F59E0B; --cyan-600: #D97706; }

html[data-accent="coral"]   { --cyan: #F43F5E; --cyan-600: #E11D48; }

html[data-hero-pad="compact"] .hero-inner { padding: 24px 28px 80px; }

html[data-hero-pad="tight"]   .hero-inner { padding: 8px 28px 64px; }

html[data-hero-pad="roomy"]   .hero-inner { padding: 64px 28px 120px; }

html[data-hero="stacked"] .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
  }

html[data-hero="stacked"] .wf-stage {
    margin: 0 auto;
    max-width: 560px;
  }

html[data-motion="subtle"] .wf-node,
  html[data-motion="subtle"] .wf-brain-ring,
  html[data-motion="subtle"] .wf-wires path.live,
  html[data-motion="subtle"] .wf-spark,
  html[data-motion="subtle"] .ba-arrow-inner,
  html[data-motion="subtle"] .eyebrow .pulse { animation: none; }

html[data-motion="subtle"] .wf-spark { display: none; }

.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 16px 0 0;
    max-width: 20ch;
    text-wrap: balance;
  }

.section-title em { color: var(--cyan); font-style: italic; font-weight: inherit; }

.section-lede {
    font-size: 17px; color: var(--ink-70); max-width: 46ch;
  }

.hero { position: relative; overflow: hidden; padding: 0; }

.hero-inner {
    padding: 24px 28px 80px;
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
  }

.breadcrumb {
    font-family: var(--font-mono); font-size: 12px; color: var(--ink-50);
    letter-spacing: .04em; margin-bottom: 24px;
    display: flex; align-items: center; gap: 8px;
  }

.breadcrumb a:hover { color: var(--ink); }

.breadcrumb span { color: var(--ink-30); }

.hero-inner h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.99;
    letter-spacing: -0.035em;
    margin: 20px 0 0;
    max-width: 15ch;
    text-wrap: balance;
  }

.hero-inner h1 em { color: var(--cyan); font-style: italic; font-weight: 500; }

.hero-sub {
    margin-top: 28px;
    font-size: clamp(16px, 1.25vw, 19px);
    color: var(--ink-70);
    max-width: 52ch;
    line-height: 1.55;
  }

.hero-meta {
    display: flex; gap: 28px; flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--ink-06);
    font-family: var(--font-mono);
    font-size: 12px; color: var(--ink-50);
    letter-spacing: .02em;
  }

.wf-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 540px;
    margin-left: auto;
    justify-self: end;
    background:
      radial-gradient(circle at 30% 20%, rgba(41,197,246,.06), transparent 55%),
      radial-gradient(circle at 75% 80%, rgba(41,197,246,.04), transparent 60%),
      #fff;
    border: 1px solid var(--ink-06);
    border-radius: 24px;
    overflow: hidden;
  }

.wf-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, var(--ink-06) 1px, transparent 1px),
      linear-gradient(to bottom, var(--ink-06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 55%, transparent 90%);
  }

.wf-wires { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

.wf-wires path { fill: none; stroke: var(--ink-12); stroke-width: 1.5; }

.wf-wires path.live {
    stroke: var(--cyan); stroke-width: 1.75;
    stroke-dasharray: 6 6;
    animation: wf-dash 1.6s linear infinite;
    filter: drop-shadow(0 0 4px rgba(41,197,246,.45));
  }

@keyframes wf-dash { to { stroke-dashoffset: -24; } }

.wf-node {
    position: absolute;
    background: #fff;
    border: 1px solid var(--ink-12);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 14px 36px -20px rgba(0,0,0,.28), 0 1px 0 rgba(0,0,0,.02);
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    white-space: nowrap;
    min-width: 148px;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s ease;
    animation: wf-float 7s ease-in-out infinite;
  }

@keyframes wf-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
  }

.wf-node .ic {
    width: 28px; height: 28px; border-radius: 8px;
    display: grid; place-items: center;
    background: var(--ink-03); color: var(--ink);
    font-size: 13px;
    flex-shrink: 0;
  }

.wf-node.ai {
    background: var(--ink); color: #fff; border-color: var(--ink);
  }

.wf-node.ai .ic {
    background: var(--cyan); color: #0a0a0a;
  }

.wf-node.cyan { border-color: rgba(41,197,246,.5); }

.wf-node.cyan .ic { background: var(--cyan); color: #fff; }

.wf-node .label { font-weight: 500; }

.wf-node .tag { color: var(--ink-50); font-size: 10.5px; margin-left: 2px; letter-spacing: .03em; }

.wf-node.ai .tag { color: rgba(255,255,255,.6); }

.wf-n1 { top: 10%;  left: 6%;   animation-delay: 0s; }

.wf-n2 { top: 10%;  right: 6%;  animation-delay: -1s; }

.wf-n3 { top: 44%;  left: 50%;  transform: translateX(-50%); animation-delay: -2s; z-index: 3; }

.wf-n4 { bottom: 10%; left: 6%; animation-delay: -3s; }

.wf-n5 { bottom: 10%; right: 6%; animation-delay: -4s; }

.wf-brain-ring {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 68%; height: 68%;
    border-radius: 999px;
    border: 1px dashed var(--ink-12);
    animation: wf-rotate 30s linear infinite;
    pointer-events: none;
  }

.wf-brain-ring::before {
    content: "";
    position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px; border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(41,197,246,.8);
  }

@keyframes wf-rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

.wf-spark {
    position: absolute; width: 6px; height: 6px; border-radius: 999px;
    background: var(--cyan); filter: blur(.5px);
    box-shadow: 0 0 14px 2px rgba(41,197,246,.9);
    opacity: 0;
  }

.wf-spark.s1 { top: 22%; left: 28%; animation: wf-spark 2.6s ease-in-out .2s infinite; }

.wf-spark.s2 { top: 58%; right: 30%; animation: wf-spark 2.6s ease-in-out 1.1s infinite; }

.wf-spark.s3 { bottom: 28%; left: 44%; animation: wf-spark 2.6s ease-in-out 1.8s infinite; }

@keyframes wf-spark {
    0%, 100% { opacity: 0; transform: scale(.6); }
    50%      { opacity: 1; transform: scale(1.1); }
  }

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--ink-06);
    border: 1px solid var(--ink-06);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

.task {
    background: #fff;
    padding: 32px 28px 34px;
    display: flex; flex-direction: column; gap: 12px;
    min-height: 240px;
    transition: background .3s ease;
    position: relative;
  }

.task:hover { background: var(--bg-soft); }

.task .num {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--ink-30);
    letter-spacing: .04em;
  }

.task .icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid var(--ink-12);
    display: grid; place-items: center;
    transition: background .3s ease, border-color .3s ease;
    margin-bottom: 4px;
  }

.task:hover .icon { background: var(--cyan); border-color: var(--cyan); }

.task .icon svg { stroke: var(--ink); fill: none; stroke-width: 1.5; transition: stroke .3s ease; }

.task:hover .icon svg { stroke: #fff; }

.task h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 19px;
    margin: 0;
    letter-spacing: -0.01em;
  }

.task p {
    margin: 0; font-size: 14px; color: var(--ink-70); line-height: 1.55;
  }

.task .save {
    margin-top: auto;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--ink-50);
    display: inline-flex; align-items: center; gap: 6px;
    letter-spacing: .02em;
  }

.task .save .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--cyan); }

.process { background: var(--bg-soft); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
  }

.process-grid::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 48px;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--ink-12) 0 6px, transparent 6px 12px);
    z-index: 0;
  }

.step {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 16px;
  }

.step-bubble {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--ink-12);
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-size: 22px; font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.02em;
    transition: all .3s ease;
    position: relative;
  }

.step:hover .step-bubble {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-3px);
  }

.step-bubble::after {
    content: "";
    position: absolute;
    top: -5px; right: -5px;
    width: 10px; height: 10px;
    border-radius: 999px;
    background: var(--cyan);
    opacity: 0;
    transition: opacity .3s ease;
  }

.step:hover .step-bubble::after { opacity: 1; }

.step-tag {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--ink-30);
    letter-spacing: .06em; text-transform: uppercase;
  }

.step h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 20px;
    margin: 0;
    letter-spacing: -0.01em;
  }

.step p {
    margin: 0; font-size: 14px; color: var(--ink-70); line-height: 1.55;
  }

.ints-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--ink-06);
    border: 1px solid var(--ink-06);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

.int {
    background: #fff;
    padding: 28px 20px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    min-height: 130px;
    transition: background .3s ease;
  }

.int:hover { background: var(--bg-soft); }

.int-logo {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 10px;
    background: var(--ink-03);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    letter-spacing: -0.02em;
  }

.int-name {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--ink-70);
    letter-spacing: .02em;
  }

.ints-note {
    margin-top: 28px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-50);
    letter-spacing: .02em;
  }

.roi { background: var(--ink); color: #fff; }

.roi .section-label { color: rgba(255,255,255,.5); }

.roi .section-label::before { background: var(--cyan); }

.roi .section-title { color: #fff; }

.roi .section-lede { color: rgba(255,255,255,.65); }

.roi-panel {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

.roi-inputs, .roi-output {
    background: #0A0A0A;
    padding: 44px 40px;
  }

.roi-inputs h3, .roi-output h3 {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.5); font-weight: 500;
    margin: 0 0 28px;
  }

.roi-field { margin-bottom: 26px; }

.roi-field:last-child { margin-bottom: 0; }

.roi-field-head {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 14px;
  }

.roi-field label {
    font-family: var(--font-display);
    font-size: 16px; color: #fff; font-weight: 500;
  }

.roi-field .val {
    font-family: var(--font-display);
    font-size: 22px; color: var(--cyan); font-weight: 500;
    letter-spacing: -0.01em;
  }

.roi-field input[type="range"] {
    width: 100%;
    appearance: none; -webkit-appearance: none;
    background: transparent;
    height: 28px;
    cursor: pointer;
  }

.roi-field input[type="range"]::-webkit-slider-runnable-track {
    height: 3px; border-radius: 3px;
    background: rgba(255,255,255,.14);
  }

.roi-field input[type="range"]::-moz-range-track {
    height: 3px; border-radius: 3px;
    background: rgba(255,255,255,.14);
  }

.roi-field input[type="range"]::-webkit-slider-thumb {
    appearance: none; -webkit-appearance: none;
    width: 20px; height: 20px; border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 0 4px rgba(41,197,246,.2);
    margin-top: -9px;
    border: 0;
    transition: box-shadow .2s ease;
  }

.roi-field input[type="range"]::-moz-range-thumb {
    width: 20px; height: 20px; border-radius: 999px;
    background: var(--cyan);
    border: 0;
    box-shadow: 0 0 0 4px rgba(41,197,246,.2);
  }

.roi-field input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: 0 0 0 7px rgba(41,197,246,.22);
  }

.roi-scale {
    display: flex; justify-content: space-between;
    margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 10.5px; color: rgba(255,255,255,.4);
    letter-spacing: .04em;
  }

.roi-output {
    background:
      radial-gradient(circle at 80% 10%, rgba(41,197,246,.1), transparent 50%),
      #0A0A0A;
    display: flex; flex-direction: column; gap: 24px;
  }

.roi-out-block {
    display: flex; flex-direction: column; gap: 4px;
  }

.roi-out-block .k {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(255,255,255,.5);
  }

.roi-out-block .v {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 48px; letter-spacing: -0.03em;
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
  }

.roi-out-block .v .unit {
    font-size: 20px; color: rgba(255,255,255,.5);
    margin-left: 6px;
    letter-spacing: -0.01em;
  }

.roi-out-block.hero .v { color: var(--cyan); font-size: 64px; }

.roi-out-block.hero .v .unit { color: rgba(41,197,246,.6); }

.roi-out-divider {
    height: 1px; background: rgba(255,255,255,.08);
    margin: 4px 0;
  }

.roi-foot {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px dashed rgba(255,255,255,.12);
    font-family: var(--font-mono); font-size: 11px;
    color: rgba(255,255,255,.45);
    letter-spacing: .02em;
    line-height: 1.55;
  }

.ba-panel {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
  }

.ba-col {
    padding: 40px 36px;
    border: 1px solid var(--ink-06);
    border-radius: var(--radius-lg);
    background: #fff;
    display: flex; flex-direction: column; gap: 20px;
    min-height: 420px;
  }

.ba-col.after {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

.ba-col .ba-label {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
    color: var(--ink-50);
  }

.ba-col.after .ba-label {
    color: rgba(255,255,255,.5);
  }

.ba-col .ba-label::before {
    content: ""; display: inline-block; width: 18px; height: 1px;
    background: var(--ink-30); margin-right: 8px; vertical-align: middle;
  }

.ba-col.after .ba-label::before { background: var(--cyan); }

.ba-col .ba-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 22px;
    margin: 0;
    letter-spacing: -0.01em;
  }

.ba-col ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 12px;
  }

.ba-col li {
    padding: 12px 14px 12px 40px;
    font-size: 14px;
    background: var(--ink-03);
    border-radius: 10px;
    color: var(--ink-70);
    position: relative;
    font-family: var(--font-mono);
    letter-spacing: .01em;
  }

.ba-col li::before {
    content: "";
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    width: 14px; height: 14px; border-radius: 999px;
    background: #fff; border: 1px solid var(--ink-12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px 8px;
  }

.ba-col.after li {
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.06);
  }

.ba-col.after li::before {
    background: var(--cyan);
    border-color: var(--cyan);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  }

.ba-col .ba-foot {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--ink-06);
    display: flex; justify-content: space-between;
    font-family: var(--font-mono); font-size: 12px;
    color: var(--ink-50);
  }

.ba-col.after .ba-foot {
    border-top-color: rgba(255,255,255,.08);
    color: rgba(255,255,255,.5);
  }

.ba-col .ba-foot b { color: var(--ink); font-weight: 500; }

.ba-col.after .ba-foot b { color: #fff; }

.ba-col.after .ba-foot b.cyan { color: var(--cyan); }

.ba-arrow {
    width: 72px;
    display: grid; place-items: center;
    position: relative;
  }

.ba-arrow-inner {
    width: 44px; height: 44px; border-radius: 999px;
    background: var(--cyan);
    display: grid; place-items: center;
    color: #0a0a0a;
    box-shadow: 0 0 0 6px rgba(41,197,246,.18), 0 10px 24px -8px rgba(41,197,246,.45);
    animation: ba-pulse 2.4s ease-in-out infinite;
  }

@keyframes ba-pulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(41,197,246,.18), 0 10px 24px -8px rgba(41,197,246,.45); }
    50%      { box-shadow: 0 0 0 12px rgba(41,197,246,.06), 0 14px 30px -6px rgba(41,197,246,.55); }
  }

.stats-band {
    padding: 100px 0;
    border-top: 1px solid var(--ink-06);
    border-bottom: 1px solid var(--ink-06);
  }

.stats-band .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--ink-06);
    border: 1px solid var(--ink-06);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

.stat-cell {
    background: #fff;
    padding: 36px 32px;
    display: flex; flex-direction: column; gap: 10px;
  }

.stat-cell .k {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
    color: var(--ink-50);
  }

.stat-cell .v {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 60px; line-height: 1; letter-spacing: -0.03em;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
  }

.stat-cell .v sup {
    font-size: 20px; color: var(--cyan);
    font-weight: 500; margin-left: 2px;
  }

.stat-cell .note {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-50);
    letter-spacing: .02em;
    margin-top: auto;
    padding-top: 20px;
  }

.cta-band {
    padding: 120px 0;
    background: var(--bg-soft);
  }

.foot-brand .lead {
    margin-top: 20px; color: rgba(255,255,255,.82);
    font-size: 15.5px; line-height: 1.55; max-width: 38ch;
    font-family: var(--font-display); font-weight: 400;
  }

.marquee {
    border-top: 1px solid var(--ink-06);
    border-bottom: 1px solid var(--ink-06);
    overflow: hidden;
    padding: 20px 0;
    background: var(--bg-soft);
  }

.marquee-track {
    display: flex; gap: 60px;
    white-space: nowrap;
    animation: marquee 42s linear infinite;
    font-family: var(--font-mono); font-size: 13px; color: var(--ink-50);
    letter-spacing: .04em;
  }

.tweaks-swatches { display: flex; gap: 8px; }

.tweaks-swatches button {
    width: 28px; height: 28px; border-radius: 999px;
    border: 2px solid transparent;
    padding: 0; flex: none;
    transition: all .2s ease;
  }

.tweaks-swatches button.active { border-color: var(--ink); transform: scale(1.08); }

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .wf-stage { margin: 0 auto; }
    .tasks-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid::before { display: none; }
    .ints-grid { grid-template-columns: repeat(3, 1fr); }
    .roi-panel { grid-template-columns: 1fr; }
    .ba-panel { grid-template-columns: 1fr; gap: 20px; }
    .ba-arrow { width: 100%; height: 56px; }
    .ba-arrow-inner { transform: rotate(90deg); }
    .stats-band .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { grid-template-columns: 1fr; gap: 30px; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .section-head { grid-template-columns: 1fr; gap: 16px; }
  }

@media (max-width: 680px) {
    .nav { grid-template-columns: auto 1fr auto; gap: 12px; }
    .nav-cta { display: none; }
    .nav-toggle { display: inline-flex; grid-column: 3; grid-row: 1; }
    .nav-backdrop { display: block; }
    .nav-links { display: flex; }

    .nav-links {
      position: fixed;
      top: 72px; left: 0; right: 0;
      justify-self: stretch;
      flex-direction: column;
      gap: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--ink-06);
      box-shadow: 0 24px 48px -24px rgba(10,10,10,.18);
      padding: 8px 20px 20px;
      font-size: 16px;
      color: var(--ink);
      z-index: 51;
      transform: translateY(-12px);
      opacity: 0;
      pointer-events: none;
      transition: transform .28s ease, opacity .22s ease;
    }
    .nav-links a {
      padding: 16px 4px;
      border-bottom: 1px solid var(--ink-06);
      color: var(--ink);
    }
    .nav-links a:last-child { border-bottom: 0; }
    .nav-links a::after { display: none; }
    .nav-cta-mobile {
      display: inline-flex !important;
      margin-top: 16px;
      width: 100%;
      justify-content: center;
      color: #fff !important;
      border-bottom: 0 !important;
      padding: 10px 16px !important;
    }

    html.nav-open .nav-links {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    html.nav-open body { overflow: hidden; position: fixed; width: 100%; }

    .tasks-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 28px; }
    .ints-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-band .stats-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    section { padding: 80px 0; }
    .hero-inner { padding: 32px 28px 64px; }
    .roi-inputs, .roi-output { padding: 32px 26px; }
    .ba-col { padding: 32px 26px; }
    .roi-out-block.hero .v { font-size: 48px; }
    .stat-cell .v { font-size: 48px; }
  }

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--ink-06);
    border: 1px solid var(--ink-06);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

.offer {
    background: #fff;
    padding: 32px 28px 34px;
    display: flex; flex-direction: column; gap: 12px;
    min-height: 260px;
    transition: background .3s ease;
    position: relative;
  }

.offer:hover { background: var(--bg-soft); }

.offer .num {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--ink-30);
    letter-spacing: .04em;
  }

.offer .icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid var(--ink-12);
    display: grid; place-items: center;
    transition: background .3s ease, border-color .3s ease;
    margin-bottom: 4px;
  }

.offer:hover .icon { background: var(--cyan); border-color: var(--cyan); }

.offer .icon svg { stroke: var(--ink); fill: none; stroke-width: 1.5; transition: stroke .3s ease; }

.offer:hover .icon svg { stroke: #fff; }

.offer h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 19px;
    margin: 0;
    letter-spacing: -0.01em;
  }

.offer p {
    margin: 0; font-size: 14px; color: var(--ink-70); line-height: 1.55;
  }

.offer .meta {
    margin-top: auto;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--ink-50);
    display: inline-flex; align-items: center; gap: 6px;
    letter-spacing: .02em;
  }

.offer .meta .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--cyan); }

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

.pkg {
    background: #fff;
    border: 1px solid var(--ink-06);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex; flex-direction: column; gap: 18px;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  }

.pkg:hover { transform: translateY(-4px); border-color: var(--ink-12); box-shadow: 0 20px 40px -24px rgba(0,0,0,.18); }

.pkg.featured {
    background: var(--ink); color: #fff; border-color: var(--ink);
  }

.pkg-tag {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
    color: var(--ink-50);
  }

.pkg.featured .pkg-tag { color: rgba(255,255,255,.55); }

.pkg-tag::before {
    content: ""; display: inline-block; width: 18px; height: 1px;
    background: var(--ink-30); margin-right: 8px; vertical-align: middle;
  }

.pkg.featured .pkg-tag::before { background: var(--cyan); }

.pkg h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
  }

.pkg .price {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    color: var(--ink-70);
    letter-spacing: -0.01em;
  }

.pkg.featured .price { color: rgba(255,255,255,.7); }

.pkg .price b { font-weight: 500; color: var(--ink); font-size: 32px; letter-spacing: -0.02em; }

.pkg.featured .price b { color: #fff; }

.pkg .price .cyc {
    font-family: var(--font-mono); font-size: 11.5px;
    color: var(--ink-50); letter-spacing: .02em; margin-left: 4px;
  }

.pkg.featured .price .cyc { color: rgba(255,255,255,.5); }

.pkg-desc {
    font-size: 14.5px; color: var(--ink-70); line-height: 1.55;
    margin: 0;
  }

.pkg.featured .pkg-desc { color: rgba(255,255,255,.75); }

.pkg ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
  }

.pkg li {
    font-size: 13.5px;
    color: var(--ink-70);
    padding-left: 22px;
    position: relative;
    font-family: var(--font-mono);
    letter-spacing: .01em;
    line-height: 1.5;
  }

.pkg.featured li { color: rgba(255,255,255,.85); }

.pkg li::before {
    content: "";
    position: absolute; left: 0; top: 6px;
    width: 12px; height: 12px; border-radius: 999px;
    background: var(--cyan);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; background-size: 8px 8px;
  }

.pkg-cta {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 13.5px; font-weight: 500;
    background: var(--ink); color: #fff;
    align-self: flex-start;
    transition: transform .2s ease, background .2s ease;
  }

.pkg-cta:hover { transform: translateY(-1px); background: #000; }

.pkg.featured .pkg-cta { background: var(--cyan); color: #0a0a0a; }

.pkg.featured .pkg-cta:hover { background: #fff; }

.pkg-cta .arrow { transition: transform .2s ease; }

.pkg-cta:hover .arrow { transform: translateX(3px); }

.deliv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--ink-06);
    border: 1px solid var(--ink-06);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

.deliv {
    background: #fff;
    padding: 28px 32px;
    display: flex; align-items: flex-start; gap: 18px;
    transition: background .3s ease;
  }

.deliv:hover { background: var(--bg-soft); }

.deliv-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: var(--ink-03);
    display: grid; place-items: center;
    flex-shrink: 0;
  }

.deliv-icon svg { stroke: var(--ink); fill: none; stroke-width: 1.5; }

.deliv-body h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
  }

.deliv-body p {
    margin: 0;
    font-size: 13.5px; color: var(--ink-70); line-height: 1.5;
  }

