:root {
  --base: #0F172A;
  --panel: #334155;
  --panel-bright: #3B4B62;
  --orange: #F97316;
  --text: #D9E2EC;
  --muted: #8492A6;
  --line: rgba(148, 163, 184, .24);
  --font-display: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--base); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--base);
  color: var(--text);
  font-family: var(--font-body);
}
::selection { background: var(--orange); color: var(--base); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}
.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 78% 8%, rgba(249,115,22,.09), transparent 24rem),
    radial-gradient(circle at 4% 72%, rgba(71,85,105,.2), transparent 28rem),
    var(--base);
}
.site-shell::after {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  content: "";
  opacity: .035;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.12) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 4px);
}
.content-wrap { width: min(1440px, calc(100% - 80px)); margin: 0 auto; }
.section { position: relative; }
.mono-label {
  color: #68788E;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow-line { width: 32px; height: 1px; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand-name, .statement, .card-title {
  font-family: var(--font-display);
  letter-spacing: -.06em;
}
h1, h2 { font-weight: 600; }
h1 span, h2 span { color: var(--orange); }

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 20;
  padding: 0 40px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  min-height: 62px;
  margin: 0 auto;
  padding: 10px 16px;
  border: 1px solid rgba(100, 116, 139, .5);
  background: rgba(15, 23, 42, .75);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.5);
  background: rgba(30,41,59,.6);
}
.brand-line { position: absolute; width: 1px; height: 52px; transition: transform .5s ease; }
.brand-line-left { transform: rotate(26deg); background: var(--orange); }
.brand-line-right { transform: rotate(-26deg); background: rgba(226,232,240,.8); }
.brand:hover .brand-line-left { transform: rotate(52deg); }
.brand:hover .brand-line-right { transform: rotate(-52deg); }
.brand-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.brand-name { color: #F1F5F9; font-size: .78rem; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a, .header-cta, .back-top {
  font-family: var(--font-mono);
  font-size: .63rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.main-nav a { color: #8492A6; transition: color .25s ease; }
.main-nav a:hover, .main-nav a.active { color: #FDBA74; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(249,115,22,.65);
  color: #FDBA74;
  transition: color .25s ease, background .25s ease;
}
.header-cta:hover { color: var(--base); background: var(--orange); }
.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid #475569;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 1px; margin: 4px 0; background: #CBD5E1; transition: transform .25s ease; }
.mobile-nav { display: none; }

.hero {
  display: flex;
  align-items: flex-end;
  min-height: 900px;
  padding: 145px 0 112px;
  overflow: hidden;
}
.line-grid {
  background-image: linear-gradient(rgba(148,163,184,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,.1) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero-grid { position: absolute; inset: 64px 0 0; opacity: .5; }
.parallax-mark {
  position: absolute;
  top: 11%;
  right: -12%;
  width: min(63vw, 900px);
  height: min(63vw, 900px);
  color: rgba(100,116,139,.18);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform .18s ease-out;
}
.virelith-mark { width: 100%; height: 100%; }
.float-slow { animation: float-slow 9s ease-in-out infinite; }
.hero-rule { position: absolute; right: 10%; bottom: 18%; width: 38%; height: 1px; background: linear-gradient(90deg, transparent, rgba(148,163,184,.5), transparent); }
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 430px); align-items: end; gap: 80px; }
.hero-copy { max-width: 760px; }
h1 { margin: 32px 0 0; color: #F1F5F9; font-size: clamp(3.8rem, 9.7vw, 9.3rem); line-height: .84; }
.hero-intro { display: flex; align-items: flex-start; gap: 20px; max-width: 490px; margin-top: 40px; }
.intro-dot { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(249,115,22,.12); }
.hero-intro p { margin: 0; color: #CBD5E1; font-size: 1.04rem; line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 38px; padding-bottom: 12px; border-bottom: 1px solid rgba(249,115,22,.7); color: #F8FAFC; font-size: .9rem; transition: color .25s ease; }
.text-link span { color: var(--orange); font-size: 1.2rem; transition: transform .25s ease; }
.text-link:hover { color: #FDBA74; }
.text-link:hover span { transform: translate(4px, 4px); }
.glass-panel { border: 1px solid rgba(148,163,184,.24); background: rgba(51,65,85,.66); box-shadow: 0 22px 70px rgba(2,6,23,.22), inset 0 1px rgba(255,255,255,.06); backdrop-filter: blur(18px); }
.hero-card-wrap { position: relative; margin-bottom: 24px; }
.hero-card { position: relative; padding: 28px; }
.card-topline, .card-bottomline { display: flex; align-items: center; justify-content: space-between; }
.card-topline, .card-bottomline span { color: #8492A6; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .15em; line-height: 1.6; text-transform: uppercase; }
.scan-icon { color: var(--orange); font-size: 1.35rem; }
.card-rule { height: 1px; margin: 64px 0 28px; background: rgba(148,163,184,.25); }
.card-title { max-width: 290px; margin: 0; color: #F1F5F9; font-size: 1.6rem; line-height: 1.08; }
.card-bottomline { align-items: flex-end; margin-top: 36px; }
.orbit-icon { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(249,115,22,.65); border-radius: 50%; color: var(--orange); font-size: 1.2rem; }
.card-corner { position: absolute; right: -12px; bottom: -12px; width: 56px; height: 56px; border-right: 1px solid rgba(249,115,22,.8); border-bottom: 1px solid rgba(249,115,22,.8); }
.scroll-prompt { position: absolute; bottom: 24px; left: max(40px, calc((100% - 1440px) / 2)); display: flex; align-items: center; gap: 12px; color: #68788E; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-prompt span { width: 1px; height: 32px; background: var(--orange); }

.signal-section { border-top: 1px solid rgba(71,85,105,.6); border-bottom: 1px solid rgba(71,85,105,.6); padding: 38px 0; }
.signal-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.marquee-window { min-width: 0; overflow: hidden; color: #68788E; }
.marquee { display: flex; align-items: center; gap: 34px; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { color: rgba(249,115,22,.65); font-size: 1.5rem; }
.marquee b { font-family: var(--font-mono); font-size: .65rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; }

.services { padding: 160px 0; }
.asymmetric-layout { display: grid; }
.services-layout { grid-template-columns: .72fr 1.28fr; gap: 80px; }
.sticky-copy { position: sticky; top: 128px; align-self: start; }
h2 { margin: 24px 0 0; color: #F1F5F9; font-size: clamp(3rem, 5vw, 5.2rem); line-height: .94; }
.body-copy { max-width: 420px; margin: 28px 0 0; color: #9AA8BA; font-size: .95rem; line-height: 1.85; }
.small-copy { max-width: 330px; margin: 20px 0 0; color: #68788E; font-size: .78rem; line-height: 1.7; }
.service-list { display: grid; gap: 12px; }
.service-card { position: relative; display: flex; justify-content: space-between; gap: 24px; overflow: hidden; padding: 32px; border: 1px solid rgba(100,116,139,.7); background: rgba(51,65,85,.65); transition: border-color .5s ease, background .5s ease, transform .5s ease; }
.service-card:hover { border-color: rgba(249,115,22,.65); background: var(--panel-bright); transform: translateX(-8px); }
.service-sheen { position: absolute; top: 0; right: 0; width: 36%; height: 100%; background: rgba(249,115,22,.04); transform: translateX(48%) skewX(-20deg); transition: transform .7s ease; }
.service-card:hover .service-sheen { transform: translateX(0) skewX(-20deg); }
.service-main { position: relative; display: flex; gap: 24px; }
.service-number { flex: 0 0 auto; padding-top: 4px; color: var(--orange); font-family: var(--font-mono); font-size: .62rem; }
.service-card h3 { margin: 0; color: #F1F5F9; font-size: 1.5rem; font-weight: 500; }
.service-card p { max-width: 470px; margin: 12px 0 0; color: #CBD5E1; font-size: .86rem; line-height: 1.7; }
.service-card .service-detail { margin-top: 14px; color: #8492A6; font-size: .74rem; line-height: 1.6; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tags span { padding: 5px 8px; border: 1px solid rgba(100,116,139,.7); color: #8492A6; font-family: var(--font-mono); font-size: .55rem; letter-spacing: .14em; text-transform: uppercase; }
.service-icon { position: relative; flex: 0 0 auto; color: #8492A6; font-size: 1.4rem; transition: color .4s ease; }
.service-card:hover .service-icon { color: var(--orange); }

.about { padding: 140px 0; overflow: hidden; background: #172338; }
.about-side-grid { position: absolute; inset: 0 0 0 50%; border-left: 1px solid rgba(71,85,105,.4); opacity: .6; }
.about-side-grid .line-grid { width: 100%; height: 100%; }
.section-bar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(100,116,139,.6); }
.about-layout { grid-template-columns: .9fr 1.1fr; gap: 96px; margin-top: 56px; }
.statement { max-width: 420px; margin: 0; color: #F1F5F9; font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1.04; }
.about-copy { max-width: 600px; color: #CBD5E1; font-size: 1.03rem; line-height: 2; }
.about-copy p { margin: 0 0 20px; }
.accent-note { display: flex; align-items: center; gap: 16px; padding-top: 12px; color: #FB923C; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; }
.accent-note span { width: 48px; height: 1px; background: var(--orange); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 80px; border: 1px solid rgba(100,116,139,.6); background: rgba(100,116,139,.6); }
.principles > div { min-height: 168px; padding: 28px; background: #172338; }
.principles span, .studio-steps span { color: var(--orange); font-family: var(--font-mono); font-size: .6rem; }
.principles h3 { margin: 30px 0 8px; color: #F1F5F9; font-size: 1.25rem; font-weight: 500; }
.principles p { margin: 0; color: #8492A6; font-size: .8rem; line-height: 1.6; }

.studio { padding: 160px 0; }
.studio-layout { grid-template-columns: 1fr .8fr; align-items: center; gap: 96px; }
.studio-diagram { position: relative; min-height: 440px; overflow: hidden; padding: 34px; border: 1px solid rgba(100,116,139,.6); background: #111D31; }
.diagram-lines { position: absolute; inset: 0; opacity: .7; }
.diagram-vertical { position: absolute; top: 12%; left: 18%; width: 1px; height: 70%; background: rgba(249,115,22,.7); }
.diagram-horizontal { position: absolute; top: 12%; left: 18%; width: 65%; height: 1px; background: rgba(249,115,22,.7); }
.diagram-diagonal { position: absolute; right: 15%; bottom: 18%; width: 55%; height: 1px; transform: rotate(-31deg); background: rgba(148,163,184,.6); }
.diagram-point { position: absolute; width: 12px; height: 12px; border-radius: 50%; }
.diagram-point-one { top: calc(12% - 5px); left: calc(18% - 5px); background: var(--orange); }
.diagram-point-two { right: calc(15% - 5px); bottom: calc(18% - 5px); border: 1px solid var(--orange); background: #111D31; }
.diagram-orbit { position: absolute; top: 12%; left: 18%; width: 70%; height: 78%; border: 1px solid rgba(148,163,184,.35); border-radius: 50%; }
.diagram-content { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 372px; }
.diagram-header, .diagram-footer { display: flex; justify-content: space-between; }
.diagram-header span, .diagram-footer span, .diagram-message > span { color: #68788E; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; }
.diagram-header b { color: var(--orange); font-size: 1.2rem; font-weight: 400; }
.diagram-message > span { display: block; margin-bottom: 10px; color: var(--orange); }
.diagram-message strong { display: block; max-width: 330px; color: #F1F5F9; font-family: var(--font-display); font-size: 1.85rem; font-weight: 400; letter-spacing: -.06em; line-height: 1.02; }
.diagram-footer { padding-top: 16px; border-top: 1px solid rgba(100,116,139,.6); }
.studio-copy h2 { margin-top: 22px; }
.studio-copy h2 span { color: #8492A6; }
.studio-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 440px; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(100,116,139,.6); }
.studio-steps p { margin: 8px 0 0; color: #68788E; font-size: .72rem; line-height: 1.6; }

.contact { padding: 96px 0 160px; }
.contact-rule { position: absolute; top: 0; right: max(40px, calc((100% - 1440px) / 2)); left: max(40px, calc((100% - 1440px) / 2)); height: 1px; background: linear-gradient(90deg, var(--orange), rgba(100,116,139,.8), transparent); }
.contact-layout { grid-template-columns: .9fr 1.1fr; gap: 96px; align-items: start; }
.contact h2 { max-width: 540px; font-size: clamp(3.5rem, 7vw, 7rem); line-height: .87; }
.contact-card { padding: 36px; }
.contact-lead { max-width: 430px; margin: 0; color: #E2E8F0; font-size: 1.15rem; line-height: 1.55; }
.contact-support { max-width: 430px; margin: 16px 0 0; color: #8492A6; font-size: .86rem; line-height: 1.65; }
.email-link { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 38px; padding-bottom: 20px; border-bottom: 1px solid rgba(100,116,139,.7); color: #F1F5F9; font-size: .93rem; transition: color .25s ease, border-color .25s ease; }
.email-link:hover { border-color: var(--orange); color: #FDBA74; }
.email-link > span:first-child { display: flex; align-items: center; gap: 12px; }
.email-icon, .pin-icon { color: var(--orange); font-size: 1.15rem; }
.address { display: flex; align-items: flex-start; gap: 12px; margin-top: 28px; color: #8492A6; font-size: .85rem; line-height: 1.7; }
.first-note { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(100,116,139,.6); }
.first-note span { color: #68788E; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; }
.first-note p { margin: 10px 0 0; color: #CBD5E1; font-size: .8rem; line-height: 1.65; }

.site-footer { padding: 28px 0; border-top: 1px solid rgba(71,85,105,.6); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; color: #68788E; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.back-top { color: #8492A6; transition: color .25s ease; }
.back-top:hover { color: var(--orange); }

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible { animation: reveal-in .8s cubic-bezier(.22,1,.36,1) both; }
.reveal-delay-1.is-visible { animation-delay: .12s; }
.reveal-delay-2.is-visible { animation-delay: .22s; }
.reveal-delay-3.is-visible { animation-delay: .34s; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float-slow { 0%, 100% { transform: translate3d(0,0,0) rotate(-7deg); } 50% { transform: translate3d(0,-12px,0) rotate(-4deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .content-wrap { width: min(100% - 48px, 720px); }
  .site-header { padding: 0 24px; }
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { display: none; max-width: 720px; margin: 8px auto 0; padding: 4px 16px; border: 1px solid rgba(100,116,139,.5); background: rgba(27,41,64,.96); backdrop-filter: blur(18px); }
  .mobile-nav.is-open { display: block; }
  .mobile-nav a { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgba(100,116,139,.4); color: #CBD5E1; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
  .mobile-nav a:last-child { border-bottom: 0; }
  .mobile-nav a span { color: var(--orange); }
  .hero { min-height: 780px; padding: 140px 0 100px; }
  .hero-content, .services-layout, .about-layout, .studio-layout, .contact-layout { grid-template-columns: 1fr; gap: 56px; }
  .hero-card-wrap { width: min(100%, 430px); justify-self: end; }
  .hero-rule { bottom: 30%; }
  .parallax-mark { top: 17%; right: -32%; width: 720px; height: 720px; }
  .services, .studio { padding: 110px 0; }
  .sticky-copy { position: static; }
  .about { padding: 110px 0; }
  .about-side-grid { left: 42%; }
  .principles { margin-top: 56px; }
  .contact { padding: 80px 0 110px; }
  .footer-inner { align-items: flex-start; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .content-wrap { width: calc(100% - 40px); }
  .site-header { inset: 12px 0 auto; padding: 0 12px; }
  .header-inner { min-height: 56px; padding: 8px 12px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: 730px; padding: 128px 0 82px; }
  h1 { font-size: clamp(3.4rem, 18vw, 5.8rem); }
  h2 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  .hero-intro { margin-top: 28px; }
  .hero-intro p { font-size: .92rem; line-height: 1.65; }
  .hero-card-wrap { width: 100%; margin-bottom: 10px; }
  .hero-card { padding: 22px; }
  .card-rule { margin-top: 45px; }
  .card-title { font-size: 1.4rem; }
  .scroll-prompt { bottom: 16px; left: 20px; }
  .signal-inner { display: block; }
  .marquee-window { margin-top: 20px; }
  .service-card { padding: 22px 18px; }
  .service-main { gap: 14px; }
  .service-card h3 { font-size: 1.3rem; }
  .service-card p { font-size: .8rem; }
  .service-icon { display: none; }
  .section-bar { display: block; }
  .section-bar .mono-label { display: block; margin-top: 16px; }
  .about-layout { gap: 28px; margin-top: 42px; }
  .about-copy { font-size: .92rem; line-height: 1.8; }
  .principles { grid-template-columns: 1fr; }
  .principles > div { min-height: auto; padding: 22px; }
  .principles h3 { margin-top: 20px; }
  .studio-diagram { min-height: 370px; padding: 22px; }
  .diagram-content { min-height: 320px; }
  .diagram-message strong { font-size: 1.55rem; }
  .studio-steps { gap: 8px; }
  .studio-steps p { font-size: .65rem; }
  .contact-card { padding: 24px 20px; }
  .contact-lead { font-size: 1rem; }
  .email-link { align-items: flex-start; font-size: .75rem; }
  .footer-inner { display: grid; grid-template-columns: 1fr; }
  .footer-inner p { order: 3; line-height: 1.6; }
}
@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; }
}