/* ---------- Tokens ---------- */
:root {
  --bg: #000;
  --surface: #0a0a0a;
  --surface-2: #141414;
  --surface-3: #1c1c1c;
  --ink: #f5f5f5;
  --muted: #8a8a8a;
  --faint: #555;
  --line: #1c1c1c;
  --line-2: #2a2a2a;
  --glass: rgba(10, 10, 10, 0.72);
  --accent: #3b82f6;
  --green: #22c55e;
  --radius: 24px;
  --max: 1160px;
  --display: "Space Grotesk", system-ui, sans-serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol, fieldset, legend { margin: 0; padding: 0; }
ul, ol { list-style: none; }
fieldset { border: 0; min-width: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: #fff; color: #000; }
.i { width: 16px; height: 16px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); }
.muted { color: var(--muted); }
.dim { color: var(--faint); }
.small { font-size: 14px; }
.strong { font-weight: 500; }
.center { text-align: center; }
.grow { flex: 1; min-width: 0; }

/* ---------- Type ---------- */
h1, h2, h3, .logo, .big-n, .wordmark { font-family: var(--display); font-weight: 600; }
h1 { font-size: clamp(56px, 10vw, 128px); line-height: 0.92; letter-spacing: -0.045em; }
h2 { font-size: clamp(36px, 4.8vw, 60px); line-height: 1; letter-spacing: -0.035em; }
h2.big { font-size: clamp(44px, 6.4vw, 84px); }
h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.25; }
.h-lg { font-size: clamp(26px, 2.6vw, 32px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.b-kicker { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.lead { font-size: 18px; color: var(--muted); max-width: 520px; }

/* ---------- Buttons & pills ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 26px; border-radius: 999px; border: 1px solid transparent;
  font-size: 16px; font-weight: 500; cursor: pointer; white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, transform .35s var(--ease);
}
.btn .i { transition: transform .25s var(--ease); }
.btn:hover .i { transform: translateX(3px); }
.btn-sm { height: 36px; padding: 0 16px; font-size: 14px; gap: 8px; }
.btn-light { background: #fff; color: #000; box-shadow: 0 0 0 0 rgba(255,255,255,0); transition: box-shadow .3s ease, transform .35s var(--ease); }
.btn-light:hover { box-shadow: 0 0 32px -4px rgba(255,255,255,.35); }
.btn-ghost { background: rgba(255,255,255,.03); border-color: var(--line-2); }
.btn-ghost:hover { border-color: #444; background: rgba(255,255,255,.06); }
.btn-block { width: 100%; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 14px;
  border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255,255,255,.02);
  font-size: 13px; color: var(--muted); white-space: nowrap; cursor: pointer;
}
a.pill:hover, button.pill:hover { color: var(--ink); border-color: #444; }
.live { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,.18); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } }
.tag {
  display: inline-flex; align-items: center; height: 38px; padding: 0 18px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--surface); font-size: 14px; font-weight: 500; color: #cfcfcf; white-space: nowrap;
}
.tag.sm { height: 26px; padding: 0 10px; font-size: 12px; font-weight: 400; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- Progress & header ---------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 100; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, #fff, #888); }
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; padding: 12px 16px 0; pointer-events: none; }
.header-inner {
  pointer-events: auto; max-width: var(--max); margin: 0 auto; height: 54px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8px 0 24px; border-radius: 999px; border: 1px solid transparent;
  transition: max-width .5s var(--ease), background-color .3s ease, border-color .3s ease;
}
.header.scrolled .header-inner {
  max-width: 640px; background: var(--glass); border-color: var(--line-2);
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.logo { font-size: 18px; letter-spacing: -0.02em; }
.logo-dot { color: var(--accent); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; padding: 150px 0 60px; overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.beam {
  position: absolute; left: 50%; top: -30%; width: 1400px; height: 1000px; transform: translateX(-50%);
  background: radial-gradient(ellipse 35% 50% at 50% 0%, rgba(255,255,255,.14), transparent 70%);
  animation: breathe 8s ease-in-out infinite;
}
@keyframes breathe { 50% { opacity: .6; } }
.dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px); background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, #000 15%, transparent 72%);
}
.cursor-light {
  position: absolute; width: 600px; height: 600px; left: var(--mx, 50%); top: var(--my, 40%);
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 60%);
  transition: left .6s var(--ease), top .6s var(--ease);
}
.hero-inner { position: relative; z-index: 1; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.sep { color: var(--faint); }

/* Headline: words blur in */
.blur-words span {
  display: inline-block; opacity: 0; filter: blur(16px); transform: translateY(24px) scale(.98);
  animation: blurIn 1.1s var(--ease) forwards; animation-delay: calc(var(--i) * 160ms + 150ms);
  background: linear-gradient(180deg, #fff 30%, #9a9a9a); -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: .06em;
}
@keyframes blurIn { to { opacity: 1; filter: blur(0); transform: none; } }
.fade-in { opacity: 0; transform: translateY(12px); animation: fadeUp .9s var(--ease) forwards; animation-delay: var(--d, 0ms); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.rotator { margin-top: 28px; font-size: clamp(20px, 2.2vw, 26px); font-weight: 500; display: flex; gap: 10px; justify-content: center; align-items: baseline; }
.scramble { font-family: var(--mono); font-size: .9em; letter-spacing: -0.02em; min-width: 11ch; text-align: left; }
.scramble::after { content: "_"; color: var(--muted); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero .lead { margin: 22px auto 0; font-size: 19px; max-width: 600px; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 38px; }

.marquees { width: 100%; margin-top: 88px; display: flex; flex-direction: column; gap: 12px; }
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.marquee-track { display: flex; gap: 12px; width: max-content; animation: scroll 40s linear infinite; }
.marquee.reverse .marquee-track { animation-direction: reverse; animation-duration: 46s; }
@keyframes scroll { to { transform: translateX(calc(-50% - 6px)); } }

/* ---------- Sections ---------- */
.section { position: relative; padding: 140px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.section-head .lead { margin-bottom: 6px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

/* Heading lines slide up from a mask */
.lines > span { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.lines > span > span { display: inline-block; transform: translateY(105%); transition: transform 1s var(--ease); }
.lines > span:nth-child(2) > span { transition-delay: .1s; }
.lines.in > span > span { transform: none; }

/* ---------- Bento ---------- */
.bento {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "ai ai mobile" "auto web mobile" "code cloud cloud";
}
.b-ai { grid-area: ai; } .b-mobile { grid-area: mobile; } .b-auto { grid-area: auto; }
.b-web { grid-area: web; } .b-code { grid-area: code; } .b-cloud { grid-area: cloud; }

/* Spotlight border: 1px padding shows a gradient that follows the cursor */
.b-card {
  --x: -1000px; --y: -1000px;
  position: relative; padding: 1px; border-radius: var(--radius);
  background: radial-gradient(420px circle at var(--x) var(--y), rgba(255,255,255,.38), transparent 45%), var(--line-2);
}
.b-inner {
  position: relative; height: 100%; border-radius: calc(var(--radius) - 1px); overflow: hidden;
  background: radial-gradient(600px circle at var(--x) var(--y), rgba(255,255,255,.045), transparent 45%), var(--surface);
  display: flex; flex-direction: column;
}
.b-copy { padding: 0 28px 28px; margin-top: auto; }
.b-copy h3 { margin-top: 10px; }
.b-copy p:last-child { margin-top: 8px; color: var(--muted); font-size: 15px; max-width: 440px; }
.viz { position: relative; margin: 20px 20px 24px; border-radius: 16px; background: var(--surface-2); border: 1px solid var(--line); overflow: hidden; }

/* AI chat */
.chat { padding: 20px; display: flex; flex-direction: column; gap: 14px; min-height: 250px; }
.msg { font-size: 14px; max-width: 85%; }
.msg.user { align-self: flex-end; background: #fff; color: #000; padding: 10px 14px; border-radius: 16px 16px 4px 16px; font-weight: 500; }
.msg.bot { display: flex; gap: 12px; color: #d4d4d4; max-width: 100%; }
.bot-av { width: 28px; height: 28px; flex: none; display: grid; place-items: center; border-radius: 9px; background: var(--surface-3); border: 1px solid var(--line-2); }
.bot-av .i { width: 14px; height: 14px; }
.js-stream { min-height: 44px; }
.js-stream::after { content: "▍"; color: var(--muted); animation: blink 1s steps(1) infinite; }
.js-stream.done::after { content: ""; }
.chat-table { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; opacity: 0; transform: translateY(6px); transition: opacity .5s ease, transform .5s var(--ease); }
.chat-table.show { opacity: 1; transform: none; }
.chat-table div { background: var(--surface-3); border: 1px solid var(--line-2); border-radius: 12px; padding: 10px 12px; }
.chat-table span { display: block; font-size: 11px; color: var(--muted); }
.chat-table b { font-family: var(--display); font-size: 22px; }

/* Mobile */
.phone-wrap { flex: 1; display: flex; justify-content: center; align-items: flex-start; padding-top: 36px; background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.08), transparent 60%), var(--surface-2); min-height: 380px; }
.phone {
  position: relative; width: 240px; height: 520px; border-radius: 40px; border: 1px solid #333;
  background: #050505; box-shadow: inset 0 0 0 5px #111, 0 30px 60px -20px rgba(0,0,0,.9);
  padding: 48px 14px 14px; overflow: hidden; margin-bottom: -120px;
}
.notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 70px; height: 20px; border-radius: 99px; background: #000; border: 1px solid #1e1e1e; }
.phone-time { text-align: center; font-family: var(--display); font-size: 52px; font-weight: 500; letter-spacing: -0.03em; color: #eee; line-height: 1; margin: 18px 0 28px; }
.notifs { display: flex; flex-direction: column; gap: 8px; }
.notif {
  display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 16px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.06); backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(-14px) scale(.96);
}
.notif b { display: block; font-size: 12px; font-weight: 600; }
.notif small { display: block; font-size: 11px; color: var(--muted); }
.n-ic { width: 28px; height: 28px; flex: none; border-radius: 8px; background: #fff; color: #000; display: grid; place-items: center; font-size: 13px; font-weight: 700; }
.playing .notif { animation: notifIn 8s var(--ease) infinite; }
.playing .notif:nth-child(2) { animation-delay: .8s; }
.playing .notif:nth-child(3) { animation-delay: 1.6s; }
.playing .notif:nth-child(4) { animation-delay: 2.4s; }
@keyframes notifIn {
  0% { opacity: 0; transform: translateY(-14px) scale(.96); }
  8%, 80% { opacity: 1; transform: none; }
  90%, 100% { opacity: 0; transform: translateY(0) scale(.96); }
}

/* Automations */
.flow { height: 180px; }
.flow svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.wire { fill: none; stroke: #2e2e2e; stroke-width: 1.2; stroke-dasharray: 3 4; }
.pulse-dot { fill: #fff; filter: drop-shadow(0 0 4px #fff); }
.node {
  position: absolute; transform: translateY(-50%); padding: 5px 10px; border-radius: 8px;
  background: var(--surface-3); border: 1px solid var(--line-2); font-size: 11px; font-family: var(--mono); color: #ccc;
}
.node-core { transform: translate(-50%, -50%); background: #fff; color: #000; font-weight: 700; padding: 8px 12px; box-shadow: 0 0 24px rgba(255,255,255,.25); animation: corePulse 2.4s ease-in-out infinite; }
@keyframes corePulse { 50% { box-shadow: 0 0 40px rgba(255,255,255,.45); } }

/* Web */
.browser { height: 180px; display: flex; flex-direction: column; }
.browser-bar { display: flex; align-items: center; gap: 5px; padding: 9px 12px; border-bottom: 1px solid var(--line); }
.browser-bar span { width: 7px; height: 7px; border-radius: 50%; background: #333; }
.browser-bar p { margin-left: 8px; font-size: 10px; color: var(--faint); }
.dash { flex: 1; display: flex; gap: 14px; padding: 14px; align-items: stretch; }
.kpi { display: flex; flex-direction: column; justify-content: space-between; }
.kpi small { font-size: 11px; color: var(--muted); }
.kpi b { font-size: 20px; }
.kpi em { font-style: normal; font-size: 11px; color: var(--green); }
.bars { flex: 1; display: flex; align-items: flex-end; gap: 6px; }
.bars i { flex: 1; height: var(--h); border-radius: 4px 4px 2px 2px; background: linear-gradient(180deg, #fff, #3a3a3a); transform-origin: bottom; transform: scaleY(0); }
.in .bars i { animation: grow 1.2s var(--ease) forwards; }
.bars i:nth-child(n) { animation-delay: calc(var(--n, 0) * 1ms); }
@keyframes grow { to { transform: scaleY(1); } }

/* Code */
.code { height: 200px; padding: 16px 18px; }
.code pre { margin: 0; font-size: 12.5px; line-height: 1.75; color: #bdbdbd; white-space: pre; }
.code .k { color: #fff; font-weight: 600; }
.code .s { color: #8f8f8f; }
.code .c { color: #4d4d4d; }
.code .ln { color: #3a3a3a; user-select: none; display: inline-block; width: 22px; }
.code pre::after { content: "▍"; color: var(--muted); animation: blink 1s steps(1) infinite; }

/* Cloud */
.deploy { display: grid; grid-template-columns: 1.4fr 1fr; min-height: 200px; }
.deploy-log { padding: 16px 18px; font-size: 12px; line-height: 1.9; color: var(--muted); }
.deploy-log div { animation: fadeUp .4s var(--ease) both; }
.deploy-log .ok { color: #fff; }
.deploy-log .ok::before { content: "✓ "; color: var(--green); }
.regions { border-left: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; }
.region { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: #bbb; border-bottom: 1px solid var(--line); }
.region:nth-child(odd) { border-right: 1px solid var(--line); }
.region:nth-child(n+3) { border-bottom: 0; }
.ping { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.ping::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--green); animation: ping 2s ease-out infinite; }
.region:nth-child(2) .ping::after { animation-delay: .5s; }
.region:nth-child(3) .ping::after { animation-delay: 1s; }
.region:nth-child(4) .ping::after { animation-delay: 1.5s; }
@keyframes ping { to { transform: scale(3.2); opacity: 0; } }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.process-sticky { position: sticky; top: 140px; align-self: start; }
.step-counter { margin-top: 48px; font-size: clamp(64px, 8vw, 120px); line-height: 1; letter-spacing: -0.05em; font-family: var(--display); font-weight: 600; }
.step-counter .js-step-n { display: inline-block; transition: transform .4s var(--ease), opacity .4s ease; }
.step-counter .js-step-n.flip { transform: translateY(-20%); opacity: 0; }
.steps { position: relative; padding-left: 40px; }
.steps-rail { position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--line-2); border-radius: 2px; }
.steps-fill { position: absolute; inset: 0; background: linear-gradient(180deg, #fff, #888); transform-origin: top; transform: scaleY(0); border-radius: 2px; }
.step { position: relative; padding: 8px 0 110px; opacity: .3; transition: opacity .5s ease; }
.step:last-child { padding-bottom: 8px; }
.step.active { opacity: 1; }
.step-dot { position: absolute; left: -40px; top: 12px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg); border: 2px solid var(--line-2); transition: border-color .4s ease, box-shadow .4s ease; }
.step.active .step-dot { border-color: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.08), 0 0 20px rgba(255,255,255,.3); }
.step h3 { font-size: clamp(28px, 3vw, 40px); margin-top: 10px; letter-spacing: -0.035em; }
.step p:last-child { margin-top: 12px; color: var(--muted); font-size: 17px; max-width: 440px; }

/* ---------- Globe ---------- */
.globe-card {
  position: relative; display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; overflow: hidden;
  border: 1px solid var(--line-2); border-radius: 32px;
  background: radial-gradient(900px circle at 80% 50%, rgba(255,255,255,.05), transparent 60%), var(--surface);
}
.globe-copy { padding: 64px 0 64px 56px; position: relative; z-index: 2; }
.globe-copy .lead { margin-top: 18px; }
.cities { margin-top: 32px; display: flex; flex-direction: column; gap: 4px; max-width: 400px; }
.cities button {
  width: 100%; display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 14px;
  border: 1px solid transparent; background: none; cursor: pointer; text-align: left;
  transition: background-color .25s ease, border-color .25s ease;
}
.cities button:hover { background: rgba(255,255,255,.03); }
.cities button.active { background: var(--surface-2); border-color: var(--line-2); }
.c-dot { width: 8px; height: 8px; border-radius: 50%; background: #333; transition: background-color .25s ease, box-shadow .25s ease; }
.cities button.active .c-dot { background: #fff; box-shadow: 0 0 12px #fff; }
.c-name { flex: 1; font-weight: 500; }
.c-name small { display: block; font-size: 12px; color: var(--muted); font-weight: 400; }
.c-time { font-size: 13px; color: var(--muted); }
.globe-stage { position: relative; aspect-ratio: 1; width: 100%; max-width: 620px; justify-self: end; margin: -20px -40px -20px 0; }
.globe-glow { position: absolute; inset: 12%; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.1), transparent 65%); filter: blur(30px); }
.js-globe { position: relative; width: 100%; height: 100%; cursor: grab; opacity: 0; transition: opacity 1.2s ease; contain: layout paint size; }
.js-globe.ready { opacity: 1; }
.js-globe:active { cursor: grabbing; }
.globe-hint { position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%); font-size: 11px; color: var(--faint); letter-spacing: .1em; text-transform: uppercase; }
.globe-label { display: none; }
@supports (position-anchor: --a) {
  .globe-label {
    display: block; position: absolute; position-anchor: --cobe-limassol;
    bottom: anchor(top); left: anchor(center); translate: -50% -8px;
    padding: 4px 10px; border-radius: 999px; background: #fff; color: #000; font-size: 12px; font-weight: 600;
    opacity: var(--cobe-visible-limassol, 0); filter: blur(calc((1 - var(--cobe-visible-limassol, 0)) * 6px));
    transition: opacity .3s, filter .3s; pointer-events: none; white-space: nowrap;
  }
}

/* ---------- Engagements ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.project { padding: 36px; }
.project-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.big-n { font-size: 28px; color: var(--faint); line-height: 1; }
.project .muted { margin-top: 12px; max-width: 420px; }
.project-foot { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* ---------- Contact ---------- */
.contact-section { overflow: hidden; }
.contact-glow { position: absolute; left: 50%; bottom: -400px; width: 1200px; height: 700px; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(255,255,255,.08), transparent 65%); pointer-events: none; }
.contact-section .lead { margin-top: 22px; }
.shine {
  background: linear-gradient(110deg, #6b6b6b 35%, #fff 50%, #6b6b6b 65%); background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent; animation: shine 5s linear infinite;
}
@keyframes shine { from { background-position: 100% 0; } to { background-position: -150% 0; } }
.info-card { display: flex; align-items: center; gap: 16px; padding: 16px 18px; margin-top: 14px; border-radius: 18px; border: 1px solid var(--line-2); background: var(--surface); }
.info-card:first-of-type { margin-top: 40px; }
.icon-box { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 12px; background: var(--surface-3); }
.icon-box .i { width: 18px; height: 18px; }

.form {
  position: relative; padding: 36px; display: flex; flex-direction: column; gap: 22px;
  border-radius: var(--radius); border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)), var(--surface);
  backdrop-filter: blur(20px);
}
.form label, .form legend { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 500; color: #d4d4d4; }
.form legend { margin-bottom: 10px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form input:not([type=checkbox]), .form textarea {
  width: 100%; border: 1px solid var(--line-2); background: var(--bg); border-radius: 14px;
  padding: 13px 16px; font-size: 15px; font-weight: 400; outline: 0; resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form input:focus, .form textarea:focus { border-color: #666; box-shadow: 0 0 0 4px rgba(255,255,255,.06); }
::placeholder { color: #4a4a4a; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex; align-items: center; height: 36px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line-2); font-size: 14px; font-weight: 400; color: var(--muted);
  transition: all .2s ease;
}
.chip:hover span { border-color: #444; color: var(--ink); }
.chip input:checked + span { background: #fff; color: #000; border-color: #fff; }
.chip input:focus-visible + span { outline: 2px solid #fff; outline-offset: 2px; }

/* ---------- Footer ---------- */
.footer { position: relative; padding: 96px 0 0; border-top: 1px solid var(--line); overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
.footer-blurb { margin-top: 16px; max-width: 320px; }
.links { display: flex; flex-direction: column; gap: 12px; }
.links li, .links a { color: var(--muted); font-size: 15px; }
.links a:hover { color: var(--ink); }
.footer-bottom { margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.wordmark {
  margin: 40px 0 0; text-align: center; line-height: .78; letter-spacing: -0.06em;
  font-size: clamp(90px, 25vw, 380px); user-select: none;
  background: linear-gradient(180deg, #2a2a2a, #000 85%); -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: 120px; margin-bottom: -40px;
}

/* ---------- Dock ---------- */
.dock {
  position: fixed; bottom: 20px; left: 50%; z-index: 60;
  display: flex; align-items: center; gap: 4px; padding: 7px;
  background: var(--glass); border: 1px solid var(--line-2); border-radius: 20px;
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.8);
  transform: translate(-50%, 140%); transition: transform .6s var(--ease);
}
.dock.show { transform: translate(-50%, 0); }
.dock a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; color: var(--muted); transition: background-color .2s ease, color .2s ease, transform .2s var(--ease); }
.dock a:hover { color: var(--ink); transform: translateY(-3px); }
.dock a.active { background: var(--surface-3); color: #fff; }
.dock .i { width: 18px; height: 18px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .bento { grid-template-columns: 1fr 1fr; grid-template-areas: "ai ai" "auto web" "mobile code" "cloud cloud"; }
  .split, .process-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-sticky { position: static; }
  .step-counter { display: none; }
  .step { padding-bottom: 56px; }
  .globe-card { grid-template-columns: 1fr; }
  .globe-copy { padding: 48px 40px 0; }
  .globe-stage { justify-self: center; margin: 0 auto -8%; max-width: 520px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .header { padding: 8px 12px 0; }
  .header-inner { padding: 0 6px 0 16px; }
  .pill-status { display: none; }
  .hero { padding-top: 120px; min-height: auto; }
  .eyebrow { font-size: 11px; letter-spacing: .16em; }
  .hero .lead { font-size: 17px; }
  .marquees { margin-top: 64px; }
  .section { padding: 96px 0; }
  .bento { grid-template-columns: 1fr; grid-template-areas: "ai" "mobile" "auto" "web" "code" "cloud"; }
  .b-copy { padding: 0 22px 22px; }
  .viz { margin: 16px 16px 20px; }
  .chat-table { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .chat-table b { font-size: 18px; }
  .deploy { grid-template-columns: 1fr; }
  .regions { border-left: 0; border-top: 1px solid var(--line); height: 90px; }
  .globe-copy { padding: 36px 22px 0; }
  .grid-2, .row-2 { grid-template-columns: 1fr; }
  .project, .form { padding: 24px; }
  .project-foot { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .dock { bottom: 12px; padding: 5px; }
  .dock a { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition: none !important; }
  .reveal, .fade-in, .blur-words span { opacity: 1; transform: none; filter: none; }
  .lines > span > span { transform: none; }
  html { scroll-behavior: auto; }
}
