:root {
  --bg: #050814;
  --bg-2: #08111f;
  --blue: #1e8cff;
  --blue-2: #9edbff;
  --silver: #c8d3e0;
  --white: #ffffff;
  --muted: #aab4c3;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-2: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}

body::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(30, 140, 255, 0.25), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(158, 219, 255, 0.16), transparent 25%),
    radial-gradient(circle at 70% 85%, rgba(30, 140, 255, 0.13), transparent 32%),
    linear-gradient(180deg, #050814 0%, #08111f 45%, #050814 100%);
}

body::after {
  opacity: .35;
  background-image:
    radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    radial-gradient(rgba(158,219,255,.16) 1px, transparent 1px);
  background-size: 48px 48px, 86px 86px;
  background-position: 0 0, 12px 18px;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.75; margin: 0; }
h1, h2, h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.04em;
  margin: 0;
}
h1 { font-size: clamp(4rem, 9vw, 8.8rem); line-height: .84; }
h2 { font-size: clamp(2.5rem, 5vw, 5.2rem); line-height: .96; }
h3 { font-size: 1.45rem; line-height: 1.15; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 850px; text-align: center; }
.section { position: relative; padding: 120px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-2);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .19em;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-2));
}
.lead { font-size: clamp(1.08rem, 1.8vw, 1.35rem); color: #e6edf8; }

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,140,255,.18), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  opacity: .8;
  transition: opacity .25s ease;
  mix-blend-mode: screen;
}
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2), var(--white));
  z-index: 1000;
  box-shadow: 0 0 24px rgba(30,140,255,.75);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1240px, calc(100% - 34px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(5, 8, 20, .56);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(5, 8, 20, .86); border-color: rgba(158,219,255,.18); }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 72px;
  height: 34px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.025);
  box-shadow: 0 0 34px rgba(30,140,255,.22);
}
.brand-symbol {
  width: 72px;
  height: auto;
  display: block;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-wordmark {
  display: block;
  width: 142px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(158,219,255,.24));
}
.brand-copy small {
  color: var(--blue-2);
  font-size: .64rem;
  font-weight: 800;
  margin-top: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav { display: flex; justify-content: center; gap: 24px; }
.site-nav a { color: var(--silver); font-size: .9rem; font-weight: 700; transition: color .2s ease; }
.site-nav a:hover { color: var(--white); }
.header-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--white);
  color: #07111e;
  font-weight: 800;
  font-size: .88rem;
}
.nav-toggle { display: none; }

.hero { min-height: 100vh; display: grid; align-items: center; padding: 150px 0 90px; overflow: hidden; }
.noise {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.hero::before {
  content: "";
  position: absolute;
  inset: 12% -10% auto auto;
  width: 56vw;
  height: 56vw;
  background: radial-gradient(circle, rgba(30,140,255,.24), transparent 62%);
  filter: blur(16px);
  animation: pulseGlow 6s ease-in-out infinite alternate;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 50px; }
.hero-copy { max-width: 680px; }
.hero-copy .lead { margin-top: 28px; }
.hero-note { margin-top: 20px; max-width: 640px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: .98rem;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #66c8ff);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(30,140,255,.28);
}
.btn-secondary {
  background: rgba(255,255,255,.04);
  color: var(--silver);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { border-color: rgba(158,219,255,.45); box-shadow: 0 0 34px rgba(30,140,255,.14); }

.hero-visual { min-height: 610px; position: relative; display: grid; place-items: center; }
.portal { position: relative; width: min(480px, 76vw); height: min(480px, 76vw); display: grid; place-items: center; }
.portal::before,
.portal::after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background: conic-gradient(from 20deg, transparent, rgba(158,219,255,.45), rgba(30,140,255,.15), transparent, rgba(255,255,255,.25), transparent);
  filter: blur(2px);
  animation: rotate 18s linear infinite;
}
.portal::after { inset: 24%; animation-direction: reverse; opacity: .9; }
.portal-ring {
  position: absolute;
  border: 1px solid rgba(158,219,255,.28);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(30,140,255,.18), 0 0 70px rgba(30,140,255,.18);
}
.ring-1 { inset: 0; animation: breathe 4.5s ease-in-out infinite; }
.ring-2 { inset: 10%; animation: breathe 5s ease-in-out infinite reverse; }
.ring-3 { inset: 21%; animation: breathe 6s ease-in-out infinite; }
.orb {
  position: relative;
  z-index: 3;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, #fff 0 4%, #dff5ff 10%, transparent 28%),
    radial-gradient(circle at 50% 55%, #74d6ff, #1e8cff 45%, #0d2a66 78%);
  box-shadow: 0 0 70px rgba(30,140,255,.72), inset -24px -38px 74px rgba(1,7,22,.68);
  animation: float 4.6s ease-in-out infinite;
}
.spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 24px var(--blue-2);
  animation: orbit 11s linear infinite;
}
.s1 { transform-origin: 180px 40px; top: 50%; left: 50%; }
.s2 { transform-origin: -160px -70px; top: 42%; left: 48%; animation-duration: 14s; }
.s3 { transform-origin: 80px -190px; top: 54%; left: 52%; animation-duration: 16s; }
.s4 { transform-origin: -70px 180px; top: 50%; left: 50%; animation-duration: 12s; }
.floating-card {
  position: absolute;
  z-index: 5;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,17,31,.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.floating-card span { display: block; color: var(--blue-2); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.floating-card strong { display: block; margin-top: 4px; color: var(--white); font-size: .95rem; }
.card-a { top: 13%; left: 3%; }
.card-b { right: 1%; top: 48%; animation-delay: .6s; }
.card-c { left: 10%; bottom: 9%; animation-delay: 1s; }

.intro {
  background:
    linear-gradient(180deg, transparent, rgba(8,17,31,.92), transparent),
    radial-gradient(circle at 50% 50%, rgba(30,140,255,.16), transparent 50%);
}
.intro .narrow { position: relative; }
.intro .narrow::before {
  content: "W";
  position: absolute;
  inset: -80px 0 auto;
  z-index: -1;
  font-family: "Space Grotesk";
  font-size: 22rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(255,255,255,.035);
  text-align: center;
}
.intro h2 { margin-bottom: 26px; }
.intro p + p { margin-top: 18px; }

.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading p:not(.eyebrow) { margin-top: 18px; font-size: 1.08rem; }
.section-heading.compact { margin-bottom: 30px; }
.card-grid { display: grid; gap: 24px; }
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.glass-card, .feature-card, .step, .quote-card, .project-form {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--glass-2), rgba(255,255,255,.035));
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}
.glass-card {
  min-height: 280px;
  padding: 32px;
  border-radius: var(--radius);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.glass-card:hover { transform: translateY(-8px); border-color: rgba(158,219,255,.35); box-shadow: 0 28px 80px rgba(30,140,255,.12); }
.icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 48px;
  border-radius: 16px;
  color: var(--blue-2);
  background: rgba(30,140,255,.10);
  border: 1px solid rgba(158,219,255,.2);
  font-size: 1.3rem;
}
.glass-card h3 { margin-bottom: 14px; }
.glass-card p { font-size: .98rem; }

.why { background: linear-gradient(180deg, transparent, rgba(3,6,15,.75), transparent); }
.why-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.feature-card {
  position: relative;
  min-height: 300px;
  padding: 36px;
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,140,255,.25), transparent 70%);
}
.feature-card span {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--blue-2);
  font-family: "Space Grotesk";
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -.06em;
}
.feature-card h3 { margin-bottom: 14px; }

.ai-lab {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 50%, rgba(30,140,255,.27), transparent 32%),
    linear-gradient(120deg, rgba(5,8,20,.95), rgba(8,17,31,.72));
}
.ai-lab::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 12%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  border: 1px solid rgba(158,219,255,.18);
  background: conic-gradient(from 110deg, transparent, rgba(30,140,255,.24), transparent, rgba(255,255,255,.12), transparent);
  filter: blur(1px);
  animation: rotate 30s linear infinite;
}
.ai-grid { position: relative; display: grid; grid-template-columns: .96fr 1.04fr; gap: 50px; align-items: center; }
.ai-copy p:not(.eyebrow) { margin-top: 18px; font-size: 1.05rem; }
.quote-card {
  display: grid;
  place-items: center;
  min-height: 420px;
  border-radius: 42px;
  padding: 46px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(158,219,255,.18), transparent 48%),
    rgba(255,255,255,.05);
}
.quote-card p {
  color: var(--white);
  font-family: "Space Grotesk";
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.timeline { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158,219,255,.45), transparent);
}
.step {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  min-height: 270px;
}
.step span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 54px;
  border-radius: 50%;
  background: rgba(30,140,255,.12);
  border: 1px solid rgba(158,219,255,.25);
  color: var(--blue-2);
  font-family: "Space Grotesk";
  font-weight: 800;
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: .96rem; }

.capabilities { background: rgba(8,17,31,.35); }
.pill-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.pill-grid span {
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: #e8f4ff;
  font-weight: 750;
  box-shadow: 0 10px 38px rgba(0,0,0,.14);
}
.coming-soon { margin-top: 28px; color: var(--blue-2); }


.works {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(30,140,255,.22), transparent 34%),
    linear-gradient(180deg, rgba(3,6,15,.2), rgba(8,17,31,.72));
}
.works::before {
  content: "";
  position: absolute;
  left: -14vw;
  bottom: -22vw;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158,219,255,.13), transparent 68%);
  pointer-events: none;
}
.works-grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 50px;
  align-items: center;
}
.works-copy p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 1.08rem;
  max-width: 650px;
}
.works-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.youtube-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 390px;
  padding: 36px;
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.16), transparent 27%),
    radial-gradient(circle at 50% 48%, rgba(30,140,255,.28), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.youtube-card:hover {
  transform: translateY(-8px);
  border-color: rgba(158,219,255,.42);
  box-shadow: 0 34px 100px rgba(30,140,255,.18);
}
.youtube-card::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(158,219,255,.17);
  background: conic-gradient(from 40deg, transparent, rgba(158,219,255,.24), transparent, rgba(30,140,255,.18), transparent);
  animation: rotate 24s linear infinite;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #07111e;
  font-size: 2rem;
  box-shadow: 0 0 70px rgba(30,140,255,.48);
}
.youtube-card small,
.youtube-card strong,
.youtube-card em {
  position: relative;
  z-index: 2;
}
.youtube-card small {
  color: var(--blue-2);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.youtube-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Space Grotesk";
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.youtube-card em {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.contact {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(30,140,255,.22), transparent 34%),
    radial-gradient(circle at 85% 72%, rgba(158,219,255,.12), transparent 30%);
}
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 50px; align-items: start; }
.contact-copy p:not(.eyebrow) { margin-top: 22px; font-size: 1.08rem; }
.contact-links { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact-list li { color: var(--muted); }
.contact-list a { color: var(--blue-2); text-decoration: none; overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--white); }
.contact-list strong { color: var(--white); display: inline-block; min-width: 105px; }
.project-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-radius: 34px;
  padding: 30px;
}
.project-form label { display: grid; gap: 8px; }
.project-form span { color: var(--silver); font-size: .9rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  color: var(--white);
  padding: 15px 16px;
  font: inherit;
  outline: none;
}
select { color: var(--white); }
select option { color: #07111e; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(158,219,255,.5); box-shadow: 0 0 0 4px rgba(30,140,255,.10); }
.full { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; font-size: .85rem; }
button.full { width: 100%; border: none; }

.footer { padding: 34px 0; border-top: 1px solid rgba(255,255,255,.1); background: #030610; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 24px; align-items: center; }
.footer-brand { display: grid; gap: 10px; }
.footer-logo-lockup { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.footer-symbol {
  width: 76px;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 0 18px rgba(30,140,255,.18));
}
.footer-wordmark { display: block; width: 148px; height: auto; }
.footer-logo-lockup small {
  display: block;
  margin-top: 3px;
  color: var(--blue-2);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer strong { font-family: "Space Grotesk"; }
.footer p { font-size: .92rem; }
.socials { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.socials a { color: var(--silver); font-size: .9rem; font-weight: 700; }
.socials a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes breathe { 0%, 100% { transform: scale(.98); opacity: .55; } 50% { transform: scale(1.03); opacity: .95; } }
@keyframes pulseGlow { from { opacity: .55; transform: scale(.98); } to { opacity: 1; transform: scale(1.04); } }
@keyframes orbit { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; }
  .header-cta { display: none; }
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    justify-self: end;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(255,255,255,.06);
  }
  .nav-toggle span { display: block; width: 18px; height: 2px; background: var(--white); border-radius: 3px; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    padding: 20px;
    border-radius: 24px;
    background: rgba(5,8,20,.96);
    border: 1px solid rgba(255,255,255,.1);
  }
  .site-nav.open { display: flex; }
  .hero-grid, .ai-grid, .works-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-visual { min-height: 420px; }
  .services-grid, .why-grid, .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .socials { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 84px 0; }
  .site-header { width: calc(100% - 20px); margin-top: 10px; border-radius: 24px; }
  .brand-logo-wrap { width: 58px; height: 28px; border-radius: 8px; }
  .brand-symbol { width: 58px; }
  .brand-wordmark { width: 120px; }
  .brand-copy small { display: none; }
  h1 { font-size: clamp(3.3rem, 18vw, 5rem); }
  h2 { font-size: clamp(2.25rem, 12vw, 3.3rem); }
  .hero-copy .lead { margin-top: 22px; }
  .hero-actions, .works-actions, .contact-links { flex-direction: column; }
  .btn { width: 100%; }
  .floating-card { display: none; }
  .portal { width: 330px; height: 330px; }
  .orb { width: 138px; height: 138px; }
  .glass-card, .feature-card, .step { padding: 26px; min-height: auto; }
  .icon, .feature-card span, .step span { margin-bottom: 32px; }
  .quote-card { min-height: 310px; padding: 30px; border-radius: 28px; }
  .project-form { grid-template-columns: 1fr; padding: 22px; border-radius: 26px; }
  .contact-list strong { display: block; margin-bottom: 3px; }
}
