:root {
  --background: #05050a;
  --foreground: #f7f7fb;
  --primary: #168bff;
  --primary-foreground: #ffffff;
  --border: rgba(255,255,255,.12);
  --ring: #a84bff;
  --radius: .85rem;
  --blue: #168bff;
  --purple: #b33dff;
  --muted: #a7a7b4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: Inter, Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
em { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }

.site-header {
  position: absolute; inset: 0 0 auto; z-index: 20; height: 92px; display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 clamp(24px, 5vw, 84px);
  border-bottom: 1px solid rgba(255,255,255,.13); background: linear-gradient(#05050ad9, transparent);
}
.brand { width: max-content; display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-size: 25px; font-weight: 800; letter-spacing: .18em; }
.brand-mark span { color: var(--blue); text-shadow: 11px 0 18px #a63cff; }
.brand-sub { margin-top: 5px; color: #a9a9b5; font-size: 8px; letter-spacing: .43em; text-transform: uppercase; }
nav { display: flex; gap: 34px; color: #d5d5dd; font-size: 13px; }
nav a, .text-link { transition: color .2s ease; }
nav a:hover, .text-link:hover { color: var(--blue); }
.site-header > .button { justify-self: end; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 25px;
  border: 1px solid #2b9bff; border-radius: 4px; background: linear-gradient(110deg, #047dff, #8536ee);
  box-shadow: 0 10px 35px rgba(65,79,255,.28); color: white; font-size: 13px; font-weight: 700;
  letter-spacing: .04em; transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 45px rgba(112,55,255,.4); }
.button-small { min-height: 40px; padding-inline: 17px; font-size: 11px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #d8d8e0; font-size: 13px; font-weight: 600; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; isolation: isolate; padding: 140px clamp(24px, 8vw, 150px) 120px; }
.hero-image { position: absolute; inset: 0; z-index: -4; background-image: linear-gradient(90deg, rgba(2,2,8,.96) 0%, rgba(2,2,8,.72) 48%, rgba(2,2,8,.45) 100%), url('/nova-hero.png'); background-size: cover; background-position: center; opacity: .7; }
.hero::after { content: ''; position: absolute; inset: auto 0 0; height: 34%; z-index: -1; background: linear-gradient(transparent, #05050a); }
.hero-glow { position: absolute; z-index: -2; width: 420px; height: 420px; border-radius: 50%; filter: blur(100px); opacity: .16; }
.hero-glow-blue { left: -200px; bottom: 5%; background: #006cff; }
.hero-glow-purple { right: -180px; top: 20%; background: #a000ff; }
.hero-content { width: min(720px, 100%); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 22px; color: #7fbaff; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
h1, h2 { margin: 0; font-weight: 650; letter-spacing: -.055em; line-height: .96; }
h1 { font-size: clamp(58px, 7.3vw, 112px); }
h1 em, h2 em { background: linear-gradient(100deg, #0a91ff 15%, #c344ff 80%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy { width: min(590px, 100%); margin: 30px 0 0; color: #bebeca; font-size: clamp(16px, 1.45vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.hero-tags { position: absolute; left: clamp(24px, 8vw, 150px); bottom: 38px; display: flex; gap: 30px; color: #c4c4ce; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.hero-tags span { display: flex; align-items: center; gap: 8px; }
.hero-tags svg { color: #588eff; }
.scroll-hint { position: absolute; right: 5vw; bottom: 32px; width: 22px; height: 44px; border: 1px solid #666675; border-radius: 20px; }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; border-radius: 4px; background: #fff; transform: translateX(-50%); animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,15px); } }

.section { padding: 120px clamp(24px, 7vw, 120px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; max-width: 1400px; margin: 0 auto 58px; }
.section-heading h2, .statement h2, .cta h2 { font-size: clamp(43px, 5vw, 74px); }
.section-heading > p { max-width: 430px; margin: 0 0 5px; color: var(--muted); line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1400px; margin: auto; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.service-card { min-height: 360px; display: flex; flex-direction: column; padding: 34px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(145deg, rgba(255,255,255,.025), transparent); transition: background .25s, transform .25s; }
.service-card:hover { background: linear-gradient(145deg, rgba(16,125,255,.12), rgba(168,55,255,.06)); transform: translateY(-5px); }
.service-top { display: flex; align-items: center; justify-content: space-between; color: #488fff; }
.service-top span { color: #5e5e6d; font-size: 11px; letter-spacing: .15em; }
.service-card h3, .step h3 { margin: auto 0 15px; font-size: 21px; }
.service-card p, .step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card a { display: flex; align-items: center; gap: 7px; margin-top: 25px; color: #8dbdff; font-size: 12px; font-weight: 700; }

.statement { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 690px; background: #08080f; border-block: 1px solid var(--border); }
.statement-media { position: relative; min-height: 560px; overflow: hidden; background: radial-gradient(circle at 50% 40%, #233eaa 0, #101530 24%, #080810 58%); }
.orb { position: absolute; left: 50%; top: 50%; width: 330px; aspect-ratio: 1; border: 2px solid #3997ff; border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 35px #0084ff, inset -25px 5px 50px #7e16d3; }
.orb::before, .orb::after { content: ''; position: absolute; inset: -42px; border: 1px solid rgba(87,151,255,.25); border-radius: 50%; }
.orb::after { inset: -94px; border-color: rgba(178,57,255,.18); }
.tech-lines { position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(54,121,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(54,121,255,.18) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(90deg,transparent,#000,transparent); }
.vertical-label { position: absolute; left: 24px; bottom: 36px; color: #737384; font-size: 9px; letter-spacing: .3em; text-transform: uppercase; writing-mode: vertical-rl; }
.statement-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(40px, 8vw, 140px); }
.statement-copy .lead { max-width: 650px; margin: 32px 0; color: #b8b8c4; font-size: 17px; line-height: 1.8; }
.checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; color: #dedee6; font-size: 13px; }
.checks span { display: flex; align-items: center; gap: 9px; }
.checks svg { color: #3f99ff; }

.process { background: linear-gradient(180deg,#05050a,#080813); }
.compact { justify-content: center; text-align: center; }
.compact .eyebrow { justify-content: center; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1120px; margin: auto; }
.step { position: relative; padding: 30px 50px; text-align: center; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 58px; right: -20%; width: 40%; height: 1px; background: linear-gradient(90deg,#157fff,#a443ff); }
.step-icon { width: 60px; height: 60px; display: grid; place-items: center; margin: 0 auto 25px; border: 1px solid #2366ae; border-radius: 50%; color: #70aefe; background: #0a1831; }
.step > span { color: #6d6d7a; font-size: 10px; letter-spacing: .2em; }
.step h3 { margin: 10px 0 12px; }

.cta { position: relative; overflow: hidden; padding: 120px 24px; text-align: center; background: radial-gradient(circle at 50% 130%, rgba(64,80,255,.34), transparent 50%), #08080e; border-top: 1px solid var(--border); }
.cta::before { content: ''; position: absolute; left: 50%; top: -350px; width: 700px; height: 700px; border: 1px solid rgba(134,57,255,.13); border-radius: 50%; transform: translateX(-50%); box-shadow: 0 0 0 80px rgba(51,121,255,.025), 0 0 0 180px rgba(141,58,255,.02); }
.cta-icon { position: relative; margin-bottom: 24px; color: #8a69ff; }
.cta .eyebrow { position: relative; justify-content: center; }
.cta > p:not(.eyebrow) { position: relative; max-width: 570px; margin: 28px auto; color: var(--muted); line-height: 1.7; }
.contact-actions { position: relative; display: flex; justify-content: center; align-items: center; gap: 28px; }
.cta small { position: relative; display: block; margin-top: 22px; color: #686876; font-size: 10px; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 40px clamp(24px, 7vw, 120px); border-top: 1px solid var(--border); color: #70707d; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
footer > div { display: flex; align-items: center; gap: 25px; }
footer > div span { display: flex; align-items: center; gap: 6px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: 880px; }
  .hero-image { background-position: 65% center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .statement { grid-template-columns: 1fr; }
  .statement-media { min-height: 470px; }
  .statement-copy { padding-block: 80px; }
  footer { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .site-header { height: 76px; padding-inline: 20px; }
  .site-header .button { padding: 0 11px; font-size: 9px; }
  .brand-mark { font-size: 21px; }
  .brand-sub { font-size: 6px; }
  .hero { min-height: 800px; padding: 115px 24px 105px; }
  .hero-image { background-position: 70% center; opacity: .52; }
  .hero-copy { font-size: 15px; }
  .hero-actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link, .contact-actions .text-link { justify-content: center; min-height: 40px; }
  .hero-tags { left: 24px; right: 24px; bottom: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
  .scroll-hint { display: none; }
  .section { padding: 85px 24px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 26px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .statement-media { min-height: 390px; }
  .orb { width: 220px; }
  .statement-copy { padding: 72px 24px; }
  .checks { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 27px 15px; }
  .step:not(:last-child)::after { display: none; }
  footer { align-items: flex-start; flex-direction: column; }
  footer > div { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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