@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("assets/fonts/geist-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #07080a;
  --panel: #0c0e11;
  --line: rgba(235, 239, 245, 0.13);
  --line-strong: rgba(235, 239, 245, 0.22);
  --text: #f2f3f4;
  --muted: #959ba5;
  --accent: #d8ff5f;
  --radius: 14px;
  --pointer-x: 0px;
  --pointer-y: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; overflow-x: hidden; background: var(--ink); color: var(--text); font-family: "Geist", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--ink); background: var(--accent); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 20; height: 68px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 max(28px, calc((100vw - 1440px) / 2)); border-bottom: 1px solid rgba(255,255,255,.07); background: rgba(7,8,10,.68); backdrop-filter: blur(22px) saturate(130%); }
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.brand-mark { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid var(--line-strong); border-radius: 7px; font-size: 12px; }
.desktop-nav { display: flex; gap: 32px; color: #b6bbc3; font-size: 13px; }
.desktop-nav a, .nav-cta { transition: color .3s ease; }
.desktop-nav a:hover { color: var(--text); }
.nav-cta { justify-self: end; padding-bottom: 3px; border-bottom: 1px solid #667020; font-size: 13px; }
.nav-cta:hover { color: var(--accent); }
.menu-button, .mobile-nav { display: none; }

.hero-shell { position: relative; min-height: 100dvh; overflow: hidden; border-bottom: 1px solid var(--line); isolation: isolate; }
.hero-shell::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(ellipse at 73% 48%, rgba(202,210,223,.075), transparent 36%), linear-gradient(90deg, transparent 0 72%, rgba(255,255,255,.012)); pointer-events: none; }
.hero-grid { position: relative; width: min(1440px, 100%); min-height: 100dvh; margin: 0 auto; padding: 68px 28px 0; display: grid; grid-template-columns: 43% 57%; align-items: center; }
.hero-copy { position: relative; z-index: 3; min-width: 0; padding: 1vh 0 0 3.2vw; }
.eyebrow { margin: 0 0 29px; color: var(--accent); font: 540 10px/1 "Geist Mono", Consolas, monospace; letter-spacing: .2em; text-transform: uppercase; }
.hero-copy h1 { width: 9.2ch; max-width: none; margin: 0; font-size: clamp(68px, 9.25vw, 142px); line-height: .78; letter-spacing: -.082em; font-weight: 590; text-wrap: balance; }
.hero-lede { max-width: 390px; margin: 38px 0 0; color: #a9aeb6; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.55; letter-spacing: -.012em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.button { min-height: 50px; padding: 0 21px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid var(--line-strong); border-radius: 10px; font-size: 12px; font-weight: 650; white-space: nowrap; transition: transform .45s cubic-bezier(.16,1,.3,1), background .4s ease, border-color .4s ease, color .4s ease; }
.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(1px) scale(.99); }
.button-primary { color: var(--ink); background: var(--text); border-color: var(--text); }
.button-primary:hover { background: var(--accent); border-color: var(--accent); }
.button-ghost { color: #d7d9dd; background: rgba(255,255,255,.025); }
.button-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.32); }
.hero-art { position: relative; z-index: 1; height: min(78vh, 840px); margin: 1vh -3vw 0 -25%; pointer-events: none; transform: translate(var(--pointer-x), var(--pointer-y)); transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.hero-art::before { content: ""; position: absolute; inset: 8% 4% 6% 14%; z-index: 2; border-radius: 50%; background: radial-gradient(circle, transparent 48%, rgba(216,255,95,.035) 64%, transparent 67%); opacity: .7; }
.hero-art::after { content: ""; position: absolute; z-index: 3; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, transparent 19%, transparent 86%, var(--ink) 100%), linear-gradient(0deg, var(--ink) 0%, transparent 18%, transparent 86%, var(--ink) 100%); pointer-events: none; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; display: block; filter: contrast(1.05) brightness(.97); }
.hero-art-sheen { position: absolute; z-index: 4; width: 42%; height: 1px; right: 7%; top: 25%; opacity: .35; background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent); transform: rotate(-12deg); }
.load-reveal { animation: load-in .9s cubic-bezier(.16,1,.3,1) both; }
.hero-art.load-reveal { animation-delay: .12s; }

.section { width: min(1400px, 100%); margin: 0 auto; padding: clamp(130px, 12vw, 190px) 28px; }
.section-intro { max-width: 850px; margin-bottom: clamp(62px, 7vw, 102px); }
.section h2 { margin: 0; font-size: clamp(50px, 6.8vw, 102px); line-height: .9; letter-spacing: -.065em; font-weight: 570; }
.section-intro p, .capability-lede { max-width: 560px; margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.5; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.showcase-grid { display: grid; grid-template-columns: minmax(0, 1.52fr) minmax(330px, .76fr); grid-template-rows: 356px 324px; gap: 12px; }
.showcase-card { --card-x: 50%; --card-y: 50%; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); transition: transform .7s cubic-bezier(.16,1,.3,1), border-color .6s ease, box-shadow .6s ease; }
.showcase-card:hover { border-color: rgba(235,239,245,.27); transform: translateY(-5px); box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 28px 70px rgba(0,0,0,.24); }
.tilt-card { grid-row: 1 / 3; padding: 42px; display: grid; grid-template-rows: auto 1fr; background: radial-gradient(circle at var(--card-x) var(--card-y), rgba(255,255,255,.045), transparent 32%), #0b0d10; }
.card-copy > span, .terminal-head { color: #838a94; font: 500 11px/1.4 "Geist Mono", Consolas, monospace; letter-spacing: .08em; text-transform: uppercase; }
.card-copy h3 { max-width: 450px; margin: 12px 0 0; font-size: clamp(24px, 2.5vw, 38px); line-height: 1.06; letter-spacing: -.04em; font-weight: 500; }
.tilt-stage { min-height: 0; display: grid; place-items: center; perspective: 1000px; }
.tilt-panel { position: relative; width: min(76%, 490px); aspect-ratio: 1.06; padding: 31px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; border: 1px solid rgba(255,255,255,.23); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.018) 48%, rgba(216,255,95,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 45px 100px rgba(0,0,0,.42); transform: rotate(-1.5deg) translateY(10px); transition: transform 1s cubic-bezier(.16,1,.3,1), box-shadow 1s ease, border-color 1s ease; }
.tilt-panel::before { content: ""; position: absolute; inset: 15%; border: 1px solid rgba(255,255,255,.075); border-radius: 50%; transform: scale(.8); transition: transform 1s cubic-bezier(.16,1,.3,1), opacity .8s ease; }
.tilt-card:hover .tilt-panel { transform: rotate(-9deg) translate(-5px,-8px); border-color: rgba(255,255,255,.32); box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 40px 55px 110px rgba(0,0,0,.55); }
.tilt-card:hover .tilt-panel::before { transform: scale(1.18); opacity: .35; }
.tilt-orbit { position: absolute; width: 70%; aspect-ratio: 1; left: 15%; top: 12%; border: 1px solid rgba(216,255,95,.1); border-radius: 50%; transform: rotateX(68deg); }
.tilt-word { position: relative; z-index: 2; align-self: center; margin-top: 33%; color: #e7e9ec; font-size: clamp(64px, 7.2vw, 108px); letter-spacing: -.095em; font-weight: 680; text-shadow: 0 16px 40px rgba(0,0,0,.36); }
.tilt-panel > .tilt-caption { position: relative; z-index: 2; color: #777e87; font: 500 10px "Geist Mono", Consolas, monospace; text-transform: uppercase; letter-spacing: .12em; }
.spectrum-card { padding: 32px; display: flex; flex-direction: column; justify-content: space-between; background: radial-gradient(circle at var(--card-x) var(--card-y), rgba(255,255,255,.06), transparent 38%), linear-gradient(145deg, #12151a, #0b0d10); }
.spectrum-field { position: relative; width: 100%; height: 138px; display: grid; place-items: center; perspective: 600px; }
.spectrum-field span { position: absolute; width: 54%; height: 54%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: rotateX(68deg) rotateZ(-12deg); transition: transform .9s cubic-bezier(.16,1,.3,1), border-color .8s ease; }
.spectrum-field span:nth-child(2) { width: 72%; height: 72%; opacity: .54; }
.spectrum-field span:nth-child(3) { width: 90%; height: 90%; opacity: .28; }
.spectrum-card:hover .spectrum-field span { transform: rotateX(64deg) rotateZ(-4deg) scale(1.06); border-color: rgba(255,255,255,.23); }
.spectrum-card .card-copy h3 { max-width: 470px; font-size: clamp(24px, 2.2vw, 34px); }
.spectrum-edge { position: absolute; z-index: 3; inset: 9% -2px 9% auto; width: 4px; border-radius: 50%; opacity: 0; filter: blur(3px); background: linear-gradient(to bottom, rgba(234,84,103,.5), #dfb04f, #8acc7c, #62a9ce, rgba(168,122,197,.55)); transform: scaleY(.18); transform-origin: center; transition: opacity .85s ease, transform .9s cubic-bezier(.16,1,.3,1), filter .85s ease; }
.spectrum-card:hover .spectrum-edge { opacity: .74; transform: scaleY(1); filter: blur(4px); }
.terminal-card { padding: 0; background: #0a0c0f; }
.terminal-head { height: 52px; padding: 0 24px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; border-bottom: 1px solid var(--line); }
.terminal-check { color: var(--accent); }
.terminal-body { padding: 24px; color: #7f8791; font: 500 11px/1.9 "Geist Mono", Consolas, monospace; }
.terminal-body p { margin: 0; }
.terminal-body i { display: inline-block; width: 28px; color: #4b515a; font-style: normal; }
.terminal-body p span, .terminal-body strong { color: var(--accent); }
.terminal-body strong { display: block; margin-top: 13px; font-weight: 500; }
.service-card { padding: 32px; display: grid; grid-template-columns: 96px 1fr; gap: 30px; align-items: end; background: radial-gradient(circle at 0 0, rgba(216,255,95,.09), transparent 38%), linear-gradient(135deg, #14171c, #0c0e11); }
.service-symbol { align-self: start; width: 72px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(216,255,95,.22); border-radius: 50%; color: var(--accent); font-size: 20px; transition: transform .8s cubic-bezier(.16,1,.3,1), background .8s ease; }
.service-card:hover .service-symbol { transform: rotate(18deg) scale(1.05); background: rgba(216,255,95,.06); }
.service-symbol span { transform: rotate(-8deg); font-weight: 650; }
.service-card .card-copy h3 { font-size: 28px; }
.service-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding-bottom: 4px; color: #ced1d6; border-bottom: 1px solid #4c541c; font-size: 13px; }

.capabilities-section { padding-top: clamp(150px, 14vw, 220px); padding-bottom: clamp(150px, 14vw, 220px); }
.capabilities-heading { max-width: 910px; }
.capability-list { margin-top: 100px; border-top: 1px solid var(--line); }
.capability-row { min-height: 150px; padding: 30px 0; display: grid; grid-template-columns: 90px 1fr minmax(280px, 440px); gap: 20px; align-items: center; border-bottom: 1px solid var(--line); transition: padding .65s cubic-bezier(.16,1,.3,1), opacity .9s, transform .9s, background .5s ease; }
.capability-row:hover { padding-left: 13px; padding-right: 13px; }
.capability-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; color: var(--accent); font: 600 12px "Geist Mono", Consolas, monospace; }
.capability-row h3 { margin: 0; font-size: clamp(25px, 3vw, 42px); letter-spacing: -.04em; font-weight: 500; }
.capability-row p { margin: 0; color: var(--muted); line-height: 1.55; }

.statement-section { width: min(1400px, calc(100% - 28px)); margin: 0 auto 14px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 80% 35%, rgba(216,255,95,.045), transparent 25%), var(--panel); perspective: 1100px; }
.statement-inner { min-height: 83dvh; padding: clamp(65px, 9vw, 130px); display: flex; flex-direction: column; justify-content: space-between; transform-origin: center bottom; }
.statement-kicker { margin: 0; color: var(--muted); font-size: 15px; }
.statement-inner h2 { margin: 70px 0; font-size: clamp(53px, 10.3vw, 158px); line-height: .78; letter-spacing: -.08em; font-weight: 700; }
.statement-inner h2 span { display: inline-block; margin-left: 13vw; color: transparent; -webkit-text-stroke: 1px rgba(242,243,244,.52); transform: skewX(-9deg); }
.statement-bottom { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.statement-bottom p { max-width: 400px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.5; }
footer { min-height: 96px; padding: 24px 40px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; border-top: 1px solid var(--line); color: #777e88; font-size: 12px; }
footer p { margin: 0; }
footer p:last-child { justify-self: end; }

@keyframes load-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 20px; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-button { display: grid; place-items: center; gap: 5px; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: #0d0f12; }
  .menu-button span { display: block; width: 16px; height: 1px; background: var(--text); transition: transform .25s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-nav:not([hidden]) { position: absolute; top: 64px; left: 12px; right: 12px; display: grid; padding: 10px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(13,15,18,.98); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
  .mobile-nav a { padding: 16px; border-radius: 9px; color: #d2d5da; }
  .mobile-nav a:hover { background: rgba(255,255,255,.05); }
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto 39vh; padding: 164px 20px 0; }
  .hero-copy { padding: 0; }
  .hero-copy h1 { width: auto; font-size: clamp(58px, 15vw, 95px); }
  .hero-lede { margin-top: 26px; }
  .hero-art { height: 43vh; margin: -4vh -19vw 0 -23vw; }
  .hero-art img { object-fit: contain; object-position: center; }
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: 620px 300px 280px 300px; }
  .tilt-card { grid-row: auto; }
  .capability-row { grid-template-columns: 70px 1fr; }
  .capability-row p { grid-column: 2; }
  .statement-inner { min-height: 74dvh; padding: 70px 30px; }
  .statement-inner h2 span { margin-left: 0; }
  footer { grid-template-columns: 1fr 1fr; }
  footer p:nth-child(2) { display: none; }
}

@media (max-width: 560px) {
  .hero-grid { min-height: 100dvh; grid-template-rows: auto 34vh; padding-top: 180px; }
  .eyebrow { margin-bottom: 20px; }
  .hero-copy h1 { font-size: clamp(54px, 17vw, 78px); line-height: .86; }
  .hero-lede { max-width: 350px; font-size: 15px; }
  .hero-actions { width: 100%; }
  .hero-actions { flex-wrap: nowrap; }
  .hero-actions .button { min-width: 0; flex: 1 1 0; padding: 0 9px; font-size: 11.5px; }
  .hero-art { height: 37vh; margin: -2vh -25vw 0 -28vw; }
  .section { padding: 105px 16px; }
  .section-intro { margin-bottom: 46px; }
  .section h2 { font-size: clamp(43px, 13vw, 62px); }
  .showcase-grid { grid-template-rows: 510px 290px 280px 300px; gap: 10px; }
  .tilt-card, .spectrum-card, .service-card { padding: 24px; }
  .tilt-panel { width: 88%; padding: 20px; }
  .service-card { grid-template-columns: 1fr; gap: 20px; }
  .capabilities-section { padding-top: 120px; padding-bottom: 120px; }
  .capability-list { margin-top: 65px; }
  .capability-row { min-height: 0; padding: 28px 0; grid-template-columns: 52px 1fr; gap: 14px; }
  .capability-row p { font-size: 14px; }
  .capability-row:hover { padding-left: 0; padding-right: 0; }
  .statement-section { width: calc(100% - 20px); margin-bottom: 10px; }
  .statement-inner { min-height: 620px; padding: 54px 22px; }
  .statement-inner h2 { font-size: clamp(50px, 17vw, 78px); line-height: .82; }
  .statement-bottom { align-items: stretch; flex-direction: column; }
  .statement-bottom .button { align-self: flex-start; }
  footer { padding: 25px 20px; }
}

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

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--ink); backdrop-filter: none; }
}
