:root {
  --navy: #263359;
  --navy-2: #1d2647;
  --navy-deep: #131a33;
  --navy-darker: #0a0f20;
  --red: #d74742;
  --red-bright: #ef5a55;
  --red-dim: #b03a36;
  --gray: #dfdbde;
  --gray-2: #c9c4c8;
  --cream: #f6f3f0;
  --bg: #fbfaf8;
  --ink: #0a0f20;
  --muted: #5b6577;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: 'Manrope', system-ui, sans-serif; font-size: 16px; line-height: 1.5; overflow-x: hidden; }
section[id] { scroll-margin-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.font-display { font-family: 'Space Grotesk', system-ui, sans-serif; letter-spacing: -0.02em; }
.font-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.02em; }

/* Selection */
::selection { background: var(--red); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }

/* Layout */
.container-x { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container-x { padding: 0 20px; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; font-family: 'Space Grotesk'; font-weight: 600; font-size: 15px; letter-spacing: -0.01em; border-radius: 999px; cursor: pointer; border: none; transition: all .25s cubic-bezier(.2,.7,.2,1); position: relative; overflow: hidden; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-bright); transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(215,71,66,.6); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--navy); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(38,51,89,.18); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(38,51,89,.04); }
.btn-onDark { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.btn-onDark:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.36); }

.btn .arrow { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.btn:hover .arrow { transform: translateX(4px); }

/* Pill / eyebrow */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(38,51,89,.16); background: rgba(255,255,255,.6); backdrop-filter: blur(8px); font-family: 'JetBrains Mono'; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--navy); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--red); box-shadow: 0 0 0 3px rgba(215,71,66,.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(215,71,66,.18); } 50% { box-shadow: 0 0 0 6px rgba(215,71,66,.05); } }

.eyebrow-dark { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); color: var(--gray); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }
.reveal[data-delay="6"] { transition-delay: .48s; }
.reveal[data-delay="7"] { transition-delay: .56s; }
.reveal[data-delay="8"] { transition-delay: .64s; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .35s, backdrop-filter .35s, border-color .35s, padding .35s; padding: 18px 0; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(251,250,248,.78); backdrop-filter: saturate(180%) blur(14px); border-bottom-color: rgba(38,51,89,.08); padding: 12px 0; }
.site-header .row { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.site-header .nav { display: flex; align-items: center; gap: 32px; }
.site-header .nav a { color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 500; opacity: .76; transition: opacity .2s; position: relative; }
.site-header .nav a:hover { opacity: 1; }
.site-header .nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--red); transition: right .3s; }
.site-header .nav a:hover::after { right: 0; }
.site-header .logo { height: 26px; width: auto; display: block; }
.site-header .actions { display: flex; align-items: center; gap: 12px; }
.mobile-menu-btn { flex-shrink: 0; }
@media (max-width: 980px) { .site-header .nav { display: none; } }
@media (max-width: 600px) {
  .site-header .actions .btn-dark { display: none; }
  .site-header .logo { height: 22px; }
  .site-header { padding: 14px 0; }
  .site-header.scrolled { padding: 10px 0; }
}

/* Hero */
.hero { position: relative; padding: 160px 0 120px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } .hero { padding: 130px 0 80px; } }

.hero h1 { font-family: 'Space Grotesk'; font-weight: 600; font-size: clamp(40px, 6vw, 76px); line-height: 1.02; letter-spacing: -0.035em; margin: 24px 0 20px; color: var(--ink); }
.hero h1 .accent { color: var(--red); font-style: italic; font-weight: 500; position: relative; display: inline-block; }
.hero h1 .accent::before { content: ''; position: absolute; left: -4px; right: -4px; bottom: 6px; height: 14px; background: rgba(215,71,66,.14); z-index: -1; transform: skewX(-12deg); }
.hero p.sub { font-size: 19px; line-height: 1.55; color: var(--muted); max-width: 540px; margin: 0 0 36px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .meta-row { display: flex; gap: 32px; margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(38,51,89,.1); }
.hero .meta { font-family: 'JetBrains Mono'; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.hero .meta strong { display: block; font-family: 'Space Grotesk'; font-size: 28px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; margin-top: 4px; text-transform: none; }

/* Hero background */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.hero-bg .grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(38,51,89,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(38,51,89,.06) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at 60% 30%, #000 0%, transparent 70%); }
.hero-bg .glow-red { position: absolute; top: 5%; right: -10%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(215,71,66,.18) 0%, transparent 65%); filter: blur(12px); animation: float 14s ease-in-out infinite; }
.hero-bg .glow-navy { position: absolute; bottom: -20%; left: -10%; width: 560px; height: 560px; background: radial-gradient(circle, rgba(38,51,89,.22) 0%, transparent 65%); filter: blur(10px); animation: float 18s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-30px) scale(1.06); } }

/* Hero visual / dashboard mock */
.hero-visual { position: relative; aspect-ratio: 1 / 1.02; }
.hv-card { position: absolute; border-radius: 18px; background: #fff; box-shadow: 0 30px 60px -30px rgba(13,18,36,.32), 0 0 0 1px rgba(38,51,89,.06); padding: 18px; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.hv-main { inset: 0 0 18% 0; padding: 22px; background: linear-gradient(180deg, #fff, #fbfaf8); }
.hv-stat { position: absolute; bottom: 0; right: -10px; width: 56%; background: linear-gradient(140deg, var(--navy-deep), var(--navy)); color: #fff; box-shadow: 0 24px 50px -22px rgba(38,51,89,.5); }
.hv-flow { position: absolute; bottom: 8%; left: -14px; width: 46%; }

@media (max-width: 600px) {
  .hero-visual { aspect-ratio: auto; display: flex; flex-direction: column; gap: 14px; }
  .hv-card { position: relative; inset: auto; top: auto; right: auto; bottom: auto; left: auto; width: 100%; }
  .hv-main, .hv-stat, .hv-flow { width: 100%; }
}

.hv-toolbar { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.hv-dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(38,51,89,.16); }
.hv-dot.r { background: rgba(215,71,66,.6); }
.hv-tab { margin-left: auto; font-family: 'JetBrains Mono'; font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

.hv-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px dashed rgba(38,51,89,.1); font-size: 13px; }
.hv-row:last-child { border-bottom: none; }
.hv-row .name { font-weight: 500; }
.hv-tag { font-family: 'JetBrains Mono'; font-size: 10px; padding: 3px 7px; border-radius: 999px; }
.hv-tag.green { background: rgba(34,139,87,.1); color: #228b57; }
.hv-tag.amber { background: rgba(217,150,46,.12); color: #b67d1e; }
.hv-tag.red { background: rgba(215,71,66,.12); color: var(--red); }

.hv-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-top: 12px; }
.hv-chart .bar { flex: 1; background: rgba(255,255,255,.18); border-radius: 4px 4px 0 0; transition: height .8s; }
.hv-chart .bar.active { background: var(--red); }

.hv-flow-node { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: rgba(38,51,89,.04); border-radius: 12px; border: 1px solid rgba(38,51,89,.08); font-family: 'JetBrains Mono'; font-size: 11px; color: var(--ink); }
.hv-flow-line { width: 2px; height: 14px; margin-left: 18px; background: rgba(38,51,89,.18); }
.hv-flow-node .pin { width: 22px; height: 22px; border-radius: 6px; background: var(--navy); color: #fff; display: grid; place-items: center; }
.hv-flow-node.red .pin { background: var(--red); }

/* Trust strip */
.trust { padding: 32px 0; border-top: 1px solid rgba(38,51,89,.08); border-bottom: 1px solid rgba(38,51,89,.08); background: linear-gradient(180deg, rgba(223,219,222,.16), transparent); }
.trust .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 760px) { .trust .row { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item .num { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--red); letter-spacing: 0.1em; }
.trust-item .label { font-family: 'Space Grotesk'; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); font-size: 16px; line-height: 1.25; }

/* Section base */
section { position: relative; }
.section-head { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 64px; }
.section-head h2 { font-family: 'Space Grotesk'; font-weight: 600; font-size: clamp(34px, 4.6vw, 56px); line-height: 1.05; letter-spacing: -0.03em; margin: 0; max-width: 18ch; color: var(--ink); }
.section-head h2 .accent { color: var(--red); }
.section-head .lede { color: var(--muted); font-size: 18px; max-width: 56ch; }
.section-head .row-between { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; width: 100%; }
@media (max-width: 760px) { .section-head .row-between { flex-direction: column; align-items: flex-start; } }

/* Services */
.services { padding: 130px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service { padding: 36px 32px 36px; background: var(--bg); border: 1px solid rgba(38,51,89,.16); border-radius: 18px; transition: background .35s, border-color .35s, box-shadow .35s; cursor: pointer; position: relative; min-height: 280px; display: flex; flex-direction: column; gap: 18px; overflow: hidden; }
.service::before { content: ''; position: absolute; left: 32px; top: 0; width: 0; height: 3px; background: var(--red); transition: width .4s cubic-bezier(.2,.7,.2,1); }
.service:hover { background: #fff; border-color: rgba(38,51,89,.28); box-shadow: 0 24px 50px -30px rgba(13,18,36,.22); }
.service:hover::before { width: 48px; }
.service .icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(38,51,89,.06); display: grid; place-items: center; color: var(--navy); transition: background .35s, color .35s, transform .35s; }
.service:hover .icon { background: var(--ink); color: #fff; transform: rotate(-6deg); }
.service .num { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--muted); letter-spacing: 0.12em; position: absolute; top: 28px; right: 32px; }
.service h3 { font-family: 'Space Grotesk'; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.service p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.55; }
.service .more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); opacity: 0; transition: opacity .3s; }
.service:hover .more { opacity: 1; }

/* Problem / Solution */
.ps-section { padding: 130px 0; background: var(--cream); position: relative; overflow: hidden; }
.ps-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 25% 30%, rgba(38,51,89,.04) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(215,71,66,.05) 0%, transparent 50%); pointer-events: none; }
.ps-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: stretch; position: relative; }
@media (max-width: 880px) { .ps-grid { grid-template-columns: 1fr; gap: 24px; } .ps-divider .arrow svg { transform: rotate(90deg); } }
.ps-col { background: #fff; border-radius: 22px; padding: 36px; box-shadow: 0 30px 60px -40px rgba(13,18,36,.2); }
.ps-col h3 { font-family: 'Space Grotesk'; font-size: 14px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 26px; }
.ps-col.left h3 { color: var(--red); }
.ps-col.right h3 { color: #228b57; }
.ps-list { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; list-style: none; }
.ps-item { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; font-size: 15px; line-height: 1.4; }
.ps-col.left .ps-item { background: rgba(215,71,66,.06); color: var(--ink); }
.ps-col.right .ps-item { background: rgba(34,139,87,.06); color: var(--ink); font-weight: 500; }
.ps-icon { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.ps-col.left .ps-icon { background: rgba(215,71,66,.16); color: var(--red); }
.ps-col.right .ps-icon { background: rgba(34,139,87,.16); color: #228b57; }
.ps-divider { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; min-width: 80px; }
.ps-divider .arrow { width: 56px; height: 56px; border-radius: 999px; background: var(--ink); color: #fff; display: grid; place-items: center; box-shadow: 0 20px 40px -16px rgba(13,18,36,.4); }
.ps-divider .label { font-family: 'JetBrains Mono'; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* Process */
.process { padding: 130px 0; background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%); }
.process .section-head h2 { color: #fff; }
.process .section-head h2 .accent { color: var(--red-bright); }
.process .section-head .lede { color: rgba(255,255,255,.6); }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-timeline::before { content: ''; position: absolute; top: 26px; left: 6%; right: 6%; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 10%, rgba(255,255,255,.18) 90%, transparent 100%); }
@media (max-width: 880px) { .process-timeline { grid-template-columns: 1fr; gap: 32px; } .process-timeline::before { display: none; } }
.step { position: relative; padding-top: 64px; }
@media (max-width: 880px) { .step { padding-top: 0; padding-left: 64px; } .step:not(:last-child)::before { content: ''; position: absolute; left: 26px; top: 60px; bottom: -38px; width: 1px; background: linear-gradient(180deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,.12) 100%); } }
.step .marker { position: absolute; top: 0; left: 0; width: 54px; height: 54px; border-radius: 999px; background: var(--navy-darker); border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; font-family: 'Space Grotesk'; font-weight: 600; color: rgba(255,255,255,.8); transition: all .35s; }
.step:hover .marker { background: var(--red); border-color: var(--red); color: #fff; transform: scale(1.06); }
.step .marker .digit { font-size: 20px; }
.step .marker::after { content: ''; position: absolute; inset: -6px; border-radius: 999px; border: 1px dashed rgba(255,255,255,.2); animation: spin 30s linear infinite; }
.step h4 { font-family: 'Space Grotesk'; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: #fff; margin: 0 0 10px; }
.step .label { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--red-bright); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.55; margin: 0; max-width: 30ch; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Work / Concepts */
.work { padding: 130px 0; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .work-grid { grid-template-columns: 1fr; } }
.work-card { position: relative; border-radius: 22px; overflow: hidden; background: #fff; border: 1px solid rgba(38,51,89,.1); transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s; }
.work-card:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -40px rgba(13,18,36,.28); }
.work-preview { height: 280px; background: var(--navy-deep); position: relative; overflow: hidden; border-bottom: 1px solid rgba(38,51,89,.08); }
.work-info { padding: 24px 26px 28px; }
.work-info .kicker { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.work-info h4 { font-family: 'Space Grotesk'; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 6px; color: var(--ink); }
.work-info p { color: var(--muted); margin: 0; font-size: 14px; }
.work-info .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.work-info .tag { font-family: 'JetBrains Mono'; font-size: 10px; padding: 4px 9px; border-radius: 999px; background: rgba(38,51,89,.06); color: var(--ink); letter-spacing: 0.1em; text-transform: uppercase; }

/* Why us */
.why { padding: 130px 0; background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr; gap: 48px; } .why-visual { aspect-ratio: auto !important; height: auto; } .why-visual > div { height: auto !important; gap: 26px; } }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 28px; }
@media (max-width: 600px) { .why-list { grid-template-columns: 1fr; } }
.why-item { padding-left: 18px; border-left: 2px solid rgba(38,51,89,.16); transition: border-color .25s; }
.why-item:hover { border-color: var(--red); }
.why-item h5 { font-family: 'Space Grotesk'; font-size: 17px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 6px; color: var(--ink); }
.why-item p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }
.why-visual { aspect-ratio: 1 / 1.05; position: relative; border-radius: 22px; background: linear-gradient(140deg, var(--navy) 0%, var(--navy-darker) 100%); padding: 28px; color: #fff; box-shadow: 0 40px 80px -40px rgba(13,18,36,.5); overflow: hidden; }
.why-visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 36px 36px; mask-image: radial-gradient(ellipse at 70% 30%, #000, transparent 70%); }

/* CTA banner */
.cta { padding: 0; }
.cta-inner { position: relative; padding: 100px 60px; background: linear-gradient(120deg, var(--navy-darker) 0%, var(--navy-deep) 60%, var(--navy) 100%); border-radius: 28px; color: #fff; overflow: hidden; margin: 60px 0; box-shadow: 0 60px 120px -60px rgba(13,18,36,.6); }
@media (max-width: 760px) { .cta-inner { padding: 60px 28px; border-radius: 22px; } }
.cta-inner::before { content: ''; position: absolute; top: -30%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(215,71,66,.28) 0%, transparent 60%); filter: blur(20px); animation: float 16s ease-in-out infinite; pointer-events: none; }
.cta-inner::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at 30% 50%, #000 0%, transparent 70%); pointer-events: none; }
.cta-content { position: relative; max-width: 760px; }
.cta-content h2 { font-family: 'Space Grotesk'; font-size: clamp(36px, 5vw, 60px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 600; margin: 24px 0 18px; }
.cta-content h2 .accent { color: var(--red-bright); font-style: italic; font-weight: 500; }
.cta-content p { color: rgba(255,255,255,.7); font-size: 18px; max-width: 56ch; margin: 0 0 36px; }
.cta-content .row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,.65); padding: 80px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer img { height: 32px; margin-bottom: 20px; }
.footer h6 { font-family: 'Space Grotesk'; font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--red-bright); }
.footer .desc { font-size: 14px; max-width: 38ch; line-height: 1.55; }
.footer .bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 12px; font-family: 'JetBrains Mono'; color: rgba(255,255,255,.4); letter-spacing: 0.06em; }
.footer .bottom .socials { display: flex; gap: 8px; }
.footer .bottom .socials a { width: 34px; height: 34px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: rgba(255,255,255,.6); transition: all .25s; }
.footer .bottom .socials a:hover { background: var(--red); color: #fff; border-color: var(--red); }
@media (max-width: 520px) { .footer .bottom { flex-direction: column; align-items: flex-start; gap: 18px; } .footer .bottom .socials a { width: 40px; height: 40px; } }

/* Marquee */
.marquee { overflow: hidden; padding: 28px 0; border-top: 1px solid rgba(38,51,89,.08); border-bottom: 1px solid rgba(38,51,89,.08); background: var(--ink); color: var(--gray); }
.marquee-track { display: flex; gap: 64px; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item { display: inline-flex; align-items: center; gap: 14px; font-family: 'Space Grotesk'; font-size: 26px; font-weight: 500; letter-spacing: -0.02em; }
.marquee-item .star { color: var(--red); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Inquiry modal */
.inq-overlay { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; background: rgba(10,15,32,.55); backdrop-filter: blur(6px); animation: inqFade .25s ease; }
@keyframes inqFade { from { opacity: 0; } to { opacity: 1; } }
.inq-card { position: relative; width: 100%; max-width: 520px; max-height: calc(100vh - 48px); overflow-y: auto; background: var(--bg); border-radius: 22px; box-shadow: 0 40px 90px -30px rgba(10,15,32,.6); border: 1px solid rgba(38,51,89,.1); animation: inqRise .3s cubic-bezier(.2,.7,.2,1); }
@keyframes inqRise { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.inq-head { padding: 32px 36px 22px; border-bottom: 1px solid rgba(38,51,89,.1); }
.inq-head .eyebrow { margin-bottom: 16px; }
.inq-head h3 { font-family: 'Space Grotesk'; font-weight: 600; font-size: 28px; letter-spacing: -0.025em; margin: 0 0 8px; color: var(--ink); }
.inq-head p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.inq-close { position: absolute; top: 20px; right: 20px; width: 38px; height: 38px; border-radius: 999px; border: none; background: rgba(38,51,89,.06); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: background .2s; }
.inq-close:hover { background: rgba(38,51,89,.14); }
.inq-form { padding: 26px 36px 34px; display: flex; flex-direction: column; gap: 18px; }
.inq-field { display: flex; flex-direction: column; gap: 7px; }
.inq-field.full { grid-column: 1 / -1; }
.inq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .inq-row { grid-template-columns: 1fr; } .inq-head, .inq-form { padding-left: 24px; padding-right: 24px; } }
.inq-field label { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.inq-field label .req { color: var(--red); }
.inq-field input, .inq-field textarea { font-family: 'Manrope', system-ui, sans-serif; font-size: 15px; color: var(--ink); background: #fff; border: 1px solid rgba(38,51,89,.18); border-radius: 12px; padding: 12px 14px; transition: border-color .2s, box-shadow .2s; resize: none; }
.inq-field textarea { min-height: 96px; line-height: 1.5; }
.inq-field input:focus, .inq-field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(215,71,66,.12); }
.inq-form .btn-primary { justify-content: center; margin-top: 6px; }
.inq-success { padding: 48px 36px 52px; text-align: center; }
.inq-success .tick { width: 64px; height: 64px; border-radius: 999px; background: rgba(34,139,87,.12); color: #228b57; display: grid; place-items: center; margin: 0 auto 22px; }
.inq-success h3 { font-family: 'Space Grotesk'; font-weight: 600; font-size: 26px; letter-spacing: -0.02em; margin: 0 0 10px; color: var(--ink); }
.inq-success p { margin: 0 auto 26px; color: var(--muted); font-size: 15px; line-height: 1.55; max-width: 36ch; }

/* Mobile menu */
.mobile-menu-btn { display: none; }
@media (max-width: 980px) { .mobile-menu-btn { display: grid; place-items: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: rgba(38,51,89,.06); border: none; cursor: pointer; color: var(--ink); } }

/* SEO/accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.logo-link {
  display: inline-flex;
}
.footer ul span {
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
