:root {
  --ink: #071127;
  --ink-2: #0b1b3d;
  --ink-3: #102b5f;
  --cyan: #00d9ef;
  --cyan-bright: #15efff;
  --blue: #1674ff;
  --ice: #eef8ff;
  --paper: #f8fbff;
  --white: #ffffff;
  --muted: #66738a;
  --line: #dce7f2;
  --line-dark: rgba(255,255,255,.13);
  --shadow: 0 30px 80px rgba(3, 16, 42, .16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
button { color: inherit; }

::selection { background: var(--cyan); color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(5, 14, 34, .86);
  box-shadow: 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
}
.brand-mark img { width: 41px; height: 36px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong {
  font-size: 1.27rem;
  letter-spacing: .12em;
  font-weight: 850;
}
.brand-copy small {
  margin-top: 6px;
  color: var(--cyan);
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
}
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > a {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: .91rem;
  font-weight: 620;
  transition: color .2s ease;
}
.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--cyan);
  transition: right .25s ease;
}
.primary-nav > a:hover,
.primary-nav > a:focus-visible { color: var(--white); }
.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: var(--white) !important;
  background: rgba(255,255,255,.06);
}
.nav-cta:hover { border-color: var(--cyan); background: rgba(0,217,239,.1); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 910px;
  padding: 148px 0 48px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(12,35,78,.45) 0%, transparent 44%),
    linear-gradient(180deg, #07132c 0%, #030914 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
}
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .22;
  pointer-events: none;
}
.hero-glow-one { width: 420px; height: 420px; background: var(--blue); right: -100px; top: 40px; }
.hero-glow-two { width: 320px; height: 320px; background: var(--cyan); left: -140px; bottom: 50px; opacity: .11; }
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(390px, .72fr);
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
}
.hero-copy { padding-top: 20px; }
.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: .76rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 820;
}
.eyebrow { color: var(--cyan); }
.eyebrow span {
  width: 24px;
  height: 1px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor;
}
.hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.2vw, 5.55rem);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 790;
}
.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--cyan-bright);
  font-style: normal;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 1%;
  right: -1%;
  bottom: .03em;
  height: .12em;
  background: var(--blue);
  transform: skewX(-10deg);
  opacity: .7;
}
.hero-lead {
  max-width: 680px;
  margin-bottom: 36px;
  color: rgba(231,239,255,.73);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 760;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 3px solid rgba(0,217,239,.36); outline-offset: 3px; }
.button-primary {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 0 12px 34px rgba(0,217,239,.22);
}
.button-primary:hover { background: var(--cyan-bright); box-shadow: 0 15px 40px rgba(0,217,239,.3); }
.button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.19);
  background: rgba(255,255,255,.045);
}
.button-secondary:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.09); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--ink-3); }
.hero-signature {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 48px;
}
.signature-line { width: 36px; height: 36px; border: 1px solid rgba(0,217,239,.38); border-radius: 50%; position: relative; }
.signature-line::before,
.signature-line::after { content: ""; position: absolute; background: var(--cyan); }
.signature-line::before { width: 14px; height: 1px; left: 10px; top: 17px; }
.signature-line::after { width: 1px; height: 14px; left: 17px; top: 10px; }
.hero-signature div { display: flex; flex-direction: column; gap: 2px; }
.hero-signature strong { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-signature div > span { color: rgba(255,255,255,.53); font-size: .82rem; }

.hero-media { position: relative; width: min(100%, 470px); justify-self: end; }
.media-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(0,217,239,.18);
  border-radius: 50%;
}
.orbit-one { width: 570px; height: 570px; left: 50%; top: 49%; transform: translate(-50%,-50%); }
.orbit-two { width: 440px; height: 440px; left: 50%; top: 49%; transform: translate(-50%,-50%); border-style: dashed; animation: orbit 28s linear infinite; }
@keyframes orbit { to { transform: translate(-50%,-50%) rotate(360deg); } }
.video-shell {
  position: relative;
  width: min(100%, 390px);
  margin-inline: auto;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 29px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035));
  box-shadow: 0 44px 100px rgba(0,0,0,.42);
  backdrop-filter: blur(10px);
}
.video-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(0,217,239,.34), transparent 40%, rgba(22,116,255,.25));
  opacity: .45;
}
.video-topbar {
  height: 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 0 8px;
  color: rgba(255,255,255,.64);
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.video-topbar span:nth-child(2) { font-weight: 750; color: rgba(255,255,255,.86); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(0,217,239,.1); }
.video-stage { position: relative; overflow: hidden; aspect-ratio: 31 / 54; border-radius: 20px; background: #02050a; }
.video-stage video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,13,.08), transparent 46%, rgba(2,6,13,.72));
  pointer-events: none;
}
.video-caption { position: absolute; left: 22px; right: 70px; bottom: 22px; display: flex; flex-direction: column; gap: 4px; }
.video-caption span { color: var(--cyan); font-size: .65rem; letter-spacing: .17em; text-transform: uppercase; font-weight: 800; }
.video-caption strong { color: var(--white); font-size: 1.12rem; line-height: 1.16; letter-spacing: -.02em; }
.video-control {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  color: var(--white);
  background: rgba(4,12,28,.58);
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.video-control svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.video-control .icon-play { display: none; fill: currentColor; stroke: none; }
.video-control.is-paused .icon-pause { display: none; }
.video-control.is-paused .icon-play { display: block; }
.media-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(5,14,33,.82);
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  font-size: .72rem;
  font-weight: 650;
}
.media-chip span { display: grid; place-items: center; min-width: 27px; height: 27px; padding-inline: 5px; border-radius: 999px; color: var(--ink); background: var(--cyan); font-size: .64rem; font-weight: 850; }
.chip-top { right: -20px; top: 95px; }
.chip-bottom { left: -56px; bottom: 80px; }
.chip-bottom span { color: var(--white); background: var(--blue); }
.hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 76px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-foot > p { max-width: 390px; margin: 0; color: rgba(255,255,255,.53); font-size: .84rem; }
.hero-capabilities { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 760; }
.hero-capabilities i { width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); }

.section { padding: 122px 0; }
.section-light { background: var(--paper); }
.section-dark { color: var(--white); background: var(--ink); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: clamp(45px, 9vw, 130px);
  align-items: end;
  margin-bottom: 64px;
}
.section-heading h2,
.process-intro h2,
.studio-copy h2,
.contact-copy h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 770;
}
.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}
.section-heading-dark > p { color: rgba(255,255,255,.56); }
.section-heading-dark .section-kicker { color: var(--cyan); }

.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  position: relative;
  min-height: 430px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.36);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { z-index: 2; transform: translateY(-4px); background: var(--white); box-shadow: var(--shadow); }
.service-card-featured { background: var(--white); }
.service-card-dark { color: var(--white); background: var(--ink); }
.service-card-dark:hover { background: var(--ink-2); }
.service-index { color: #97a8bd; font-size: .69rem; letter-spacing: .16em; font-weight: 800; }
.service-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 44px 0 28px;
  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, #eef8ff, #e4f4ff);
}
.service-icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card-dark .service-icon { color: var(--cyan); background: rgba(0,217,239,.1); }
.service-card h3 { margin-bottom: 13px; font-size: 1.42rem; line-height: 1.2; letter-spacing: -.025em; }
.service-card p { margin-bottom: 22px; color: var(--muted); font-size: .94rem; }
.service-card-dark p { color: rgba(255,255,255,.6); }
.service-card ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; color: #33445d; font-size: .84rem; font-weight: 600; }
.service-card li::before { content: "↳"; margin-right: 8px; color: var(--blue); }
.service-card-dark a { display: inline-flex; gap: 9px; margin-top: 20px; color: var(--cyan); font-size: .88rem; font-weight: 750; }

.work-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 22px; }
.work-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #0a1936;
}
.work-card-large { grid-column: 1 / -1; min-height: 610px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 45px; align-items: center; padding: 48px; background: linear-gradient(135deg, #0b1c3f 0%, #07152f 56%, #08122a 100%); }
.work-card-large::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  top: -220px;
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(100px);
  opacity: .12;
}
.work-content { position: relative; z-index: 2; }
.work-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 30px; color: rgba(255,255,255,.5); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 760; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border: 1px solid rgba(0,217,239,.26); border-radius: 999px; color: var(--cyan); background: rgba(0,217,239,.07); }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(0,217,239,.1); }
.status-pill-soft { color: #a9c5ff; border-color: rgba(120,165,255,.22); background: rgba(120,165,255,.07); }
.work-card h3 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1; letter-spacing: -.045em; }
.work-card p { max-width: 540px; margin-bottom: 26px; color: rgba(255,255,255,.61); line-height: 1.75; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 8px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.035); font-size: .72rem; font-weight: 650; }
.text-link { display: inline-flex; gap: 10px; margin-top: 32px; color: var(--cyan); font-size: .88rem; font-weight: 780; }

.dashboard-mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  color: var(--ink);
  background: #f6f9fd;
  box-shadow: 0 35px 80px rgba(0,0,0,.3);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transform-origin: center;
}
.mockup-bar { height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid #e3eaf3; background: var(--white); }
.mockup-brand { display: flex; align-items: center; gap: 8px; font-size: .75rem; font-weight: 800; }
.mockup-brand span { width: 16px; height: 16px; border: 4px solid var(--cyan); border-right-color: var(--blue); transform: rotate(45deg); }
.mockup-avatar { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: var(--white); background: var(--ink); font-size: .55rem; font-weight: 800; }
.mockup-body { display: grid; grid-template-columns: 46px 1fr; min-height: 420px; }
.mockup-sidebar { display: flex; flex-direction: column; align-items: center; gap: 17px; padding-top: 24px; border-right: 1px solid #e3eaf3; background: #edf3f9; }
.mockup-sidebar span { width: 16px; height: 16px; border-radius: 4px; background: #c5d1df; }
.mockup-sidebar .is-active { background: var(--blue); box-shadow: 0 5px 14px rgba(22,116,255,.28); }
.mockup-main { padding: 22px; }
.mockup-title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mockup-title-row div { display: flex; flex-direction: column; }
.mockup-title-row small { color: #8a98aa; font-size: .55rem; }
.mockup-title-row strong { font-size: 1rem; }
.mockup-title-row button { padding: 6px 9px; border: 1px solid #d8e1ec; border-radius: 7px; color: #5b6b7d; background: var(--white); font-size: .55rem; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.metric-grid > div { position: relative; display: flex; flex-direction: column; min-height: 77px; padding: 11px; border: 1px solid #e0e8f1; border-radius: 10px; background: var(--white); }
.metric-grid small { color: #8290a2; font-size: .49rem; }
.metric-grid strong { margin-top: 5px; font-size: .95rem; letter-spacing: -.03em; }
.metric-grid span { margin-top: auto; color: #8090a2; font-size: .46rem; }
.metric-grid .metric-up { color: #08a87c; }
.chart-panel { margin: 11px 0; padding: 12px; border: 1px solid #e0e8f1; border-radius: 10px; background: var(--white); }
.chart-head { display: flex; justify-content: space-between; color: #8290a2; font-size: .48rem; }
.chart-head strong { color: var(--ink); font-size: .6rem; }
.bar-chart { height: 85px; display: flex; align-items: flex-end; gap: 8px; margin-top: 10px; padding: 0 6px 0; border-bottom: 1px solid #e8eef5; background-image: linear-gradient(#edf2f7 1px, transparent 1px); background-size: 100% 25%; }
.bar-chart i { flex: 1; height: var(--h); min-width: 7px; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--cyan), var(--blue)); opacity: .9; }
.student-row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 9px; margin-top: 8px; padding: 8px 10px; border: 1px solid #e4ebf3; border-radius: 9px; background: var(--white); }
.student-avatar { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: var(--blue); background: #e9f2ff; font-size: .45rem; font-weight: 800; }
.student-row div { display: flex; flex-direction: column; }
.student-row strong { font-size: .54rem; }
.student-row small { color: #8997a8; font-size: .45rem; }
.student-row b { padding: 4px 7px; border-radius: 999px; color: #078e69; background: #e7faf3; font-size: .43rem; }
.student-row b.pending { color: #bb7300; background: #fff5dd; }

.work-card-guidora { background: linear-gradient(145deg, #11244e, #09162f); }
.work-card-ops { background: linear-gradient(145deg, #071b36, #061124); }
.book-visual { position: relative; height: 225px; margin: 38px auto 34px; perspective: 900px; }
.book-cover,
.book-page { position: absolute; left: 50%; top: 50%; width: 155px; height: 205px; border-radius: 5px 13px 13px 5px; transform-origin: left center; }
.book-cover { z-index: 4; display: flex; flex-direction: column; padding: 20px; color: var(--ink); background: linear-gradient(150deg, #17efff, #42a0ff 70%, #2861ff); box-shadow: -16px 26px 40px rgba(0,0,0,.35); transform: translate(-30%,-50%) rotateY(-28deg) rotateZ(-4deg); }
.book-cover::after { content: ""; position: absolute; left: 9px; top: 0; bottom: 0; width: 1px; background: rgba(6,17,39,.22); }
.book-cover span { font-size: .46rem; letter-spacing: .15em; font-weight: 850; }
.book-cover strong { margin-top: 46px; font-size: 1.3rem; letter-spacing: .05em; }
.book-cover small { margin-top: auto; font-size: .48rem; }
.book-page { border: 1px solid rgba(255,255,255,.1); background: #f6f0e8; }
.page-one { z-index: 3; transform: translate(-21%,-49%) rotateY(-23deg) rotateZ(-1deg); }
.page-two { z-index: 2; transform: translate(-14%,-48%) rotateY(-18deg) rotateZ(2deg); background: #ddd6cc; }
.book-shadow { position: absolute; width: 245px; height: 45px; left: 50%; bottom: -2px; border-radius: 50%; background: rgba(0,0,0,.35); filter: blur(18px); transform: translateX(-42%); }

.ops-visual { position: relative; display: grid; grid-template-columns: 40px 1fr; height: 220px; margin: 38px 0 34px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: #eef4f9; box-shadow: 0 24px 50px rgba(0,0,0,.27); }
.ops-nav { display: flex; flex-direction: column; align-items: center; gap: 15px; padding-top: 13px; background: #0b1c3d; }
.ops-nav i { width: 13px; height: 13px; border-radius: 3px; background: rgba(255,255,255,.18); }
.ops-logo { width: 18px; height: 18px; margin-bottom: 7px; border: 4px solid var(--cyan); transform: rotate(45deg); }
.ops-content { padding: 18px; }
.ops-head { display: flex; justify-content: space-between; }
.ops-head span:first-child { width: 35%; height: 11px; border-radius: 4px; background: #182a49; }
.ops-head span:last-child { width: 18%; height: 20px; border-radius: 6px; background: var(--blue); }
.ops-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 17px 0 13px; }
.ops-cards i { height: 50px; border: 1px solid #d7e1eb; border-radius: 8px; background: var(--white); }
.ops-table { display: grid; gap: 8px; padding: 12px; border: 1px solid #d7e1eb; border-radius: 8px; background: var(--white); }
.ops-table span { display: block; height: 9px; border-radius: 3px; background: linear-gradient(90deg, #d5e0eb 0 23%, transparent 23% 28%, #e7edf3 28% 73%, transparent 73% 79%, #dce6ef 79%); }
.ops-pulse { position: absolute; right: 18px; bottom: 18px; display: flex; flex-direction: column; min-width: 78px; padding: 10px 12px; border-radius: 10px; color: var(--white); background: var(--blue); box-shadow: 0 12px 26px rgba(22,116,255,.32); }
.ops-pulse b { font-size: .93rem; }
.ops-pulse small { font-size: .48rem; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }

.process-section { border-bottom: 1px solid var(--line); }
.process-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 10vw, 140px); align-items: start; }
.process-intro { position: sticky; top: 120px; }
.process-intro h2 { margin-bottom: 26px; }
.process-intro > p { max-width: 510px; margin-bottom: 32px; color: var(--muted); line-height: 1.78; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 58px 1fr 36px; gap: 22px; align-items: start; min-height: 175px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-number { padding-top: 4px; color: var(--blue); font-size: .72rem; letter-spacing: .12em; font-weight: 850; }
.process-list h3 { margin-bottom: 11px; font-size: 1.45rem; letter-spacing: -.025em; }
.process-list p { max-width: 540px; margin: 0; color: var(--muted); }
.process-arrow { justify-self: end; color: #9cafc3; font-size: 1.35rem; }

.studio-section { padding: 30px 0 120px; background: var(--paper); }
.studio-card { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 690px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 28px 90px rgba(4,22,55,.1); }
.studio-visual { position: relative; display: grid; place-items: center; min-height: 600px; overflow: hidden; background: linear-gradient(145deg, #06142f, #071d42); }
.studio-visual::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size: 42px 42px; }
.studio-visual::after { content: ""; position: absolute; width: 380px; height: 380px; border: 1px solid rgba(0,217,239,.18); border-radius: 50%; }
.studio-logo-panel { position: relative; z-index: 2; display: grid; place-items: center; width: min(70%, 330px); aspect-ratio: 1; padding: 30px; border-radius: 26px; background: rgba(255,255,255,.97); box-shadow: 0 30px 70px rgba(0,0,0,.34); transform: rotate(-3deg); }
.studio-logo-panel img { width: 100%; max-height: 100%; object-fit: contain; }
.studio-code { position: absolute; z-index: 3; left: 28px; bottom: 28px; display: flex; flex-direction: column; color: var(--white); }
.studio-code span { color: var(--cyan); font-size: .65rem; letter-spacing: .14em; }
.studio-code strong { margin-top: 2px; font-size: .75rem; letter-spacing: .14em; }
.studio-code small { margin-top: 4px; color: rgba(255,255,255,.42); font-size: .48rem; letter-spacing: .12em; }
.studio-copy { padding: clamp(50px, 7vw, 88px); }
.studio-copy h2 { margin-bottom: 28px; }
.studio-copy h2 em { color: var(--blue); font-style: normal; }
.studio-lead { max-width: 690px; margin-bottom: 43px; color: var(--muted); font-size: 1.03rem; line-height: 1.78; }
.principles-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principles-grid > div { min-height: 165px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles-grid span { color: var(--blue); font-size: .62rem; letter-spacing: .12em; font-weight: 850; }
.principles-grid h3 { margin: 18px 0 7px; font-size: 1rem; }
.principles-grid p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.58; }

.contact-section { position: relative; overflow: hidden; padding: 124px 0; color: var(--white); background: #041024; }
.contact-grid-bg { position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px); background-size: 64px 64px; -webkit-mask-image: radial-gradient(circle at 70% 50%, black, transparent 70%); mask-image: radial-gradient(circle at 70% 50%, black, transparent 70%); }
.contact-section::before { content: ""; position: absolute; width: 520px; height: 520px; right: -150px; bottom: -260px; border-radius: 50%; background: var(--blue); filter: blur(130px); opacity: .22; }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.section-kicker-light { color: var(--cyan); }
.contact-copy h2 { margin-bottom: 26px; }
.contact-copy > p { max-width: 560px; color: rgba(255,255,255,.58); line-height: 1.78; }
.contact-details { display: grid; gap: 22px; margin-top: 50px; }
.contact-details div { display: flex; flex-direction: column; gap: 3px; padding-left: 17px; border-left: 2px solid var(--cyan); }
.contact-details span { color: rgba(255,255,255,.45); font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 760; }
.contact-details a,
.contact-details strong { font-size: .95rem; font-weight: 680; }
.contact-details a:hover { color: var(--cyan); }
.contact-form { display: grid; gap: 20px; padding: 36px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.055); box-shadow: 0 28px 80px rgba(0,0,0,.24); backdrop-filter: blur(12px); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: rgba(255,255,255,.72); font-size: .76rem; font-weight: 680; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; color: var(--white); background: rgba(2,9,22,.54); transition: border-color .2s ease, background .2s ease; }
.contact-form input,
.contact-form select { height: 51px; padding: 0 14px; }
.contact-form textarea { min-height: 132px; resize: vertical; padding: 13px 14px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.28); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--cyan); background: rgba(2,9,22,.78); }
.contact-form select option { color: var(--ink); background: var(--white); }
.form-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 5px; }
.form-footer p { max-width: 260px; margin: 0; color: rgba(255,255,255,.36); font-size: .68rem; line-height: 1.5; }

.site-footer { color: var(--white); background: #020711; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; padding: 42px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-top > p { margin: 0; color: rgba(255,255,255,.45); font-size: .8rem; line-height: 1.6; }
.footer-up { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--cyan); transition: background .2s ease, transform .2s ease; }
.footer-up:hover { transform: translateY(-3px); background: rgba(0,217,239,.08); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 26px; color: rgba(255,255,255,.32); font-size: .67rem; letter-spacing: .04em; }

.toast { position: fixed; z-index: 300; left: 50%; bottom: 26px; max-width: min(90vw, 520px); padding: 12px 17px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; color: var(--white); background: rgba(5,14,34,.94); box-shadow: 0 16px 45px rgba(0,0,0,.28); opacity: 0; pointer-events: none; transform: translate(-50%, 18px); transition: opacity .25s ease, transform .25s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.65,.2,1), transform .7s cubic-bezier(.2,.65,.2,1); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --container: 980px; }
  .primary-nav { gap: 20px; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: minmax(0,1fr) 360px; gap: 48px; }
  .hero h1 { font-size: clamp(3.2rem, 6vw, 4.8rem); }
  .chip-top { right: -6px; }
  .chip-bottom { left: -28px; }
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .work-card-large { grid-template-columns: .78fr 1.22fr; gap: 28px; padding: 38px; }
  .studio-card { grid-template-columns: .72fr 1.28fr; }
  .studio-copy { padding: 54px; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .site-header { background: rgba(5,14,34,.74); backdrop-filter: blur(16px); }
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 45px;
    height: 45px;
    padding: 0 11px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 100%; height: 1px; background: var(--white); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    border-top: 1px solid rgba(255,255,255,.09);
    background: rgba(4,12,29,.98);
    box-shadow: 0 30px 60px rgba(0,0,0,.3);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav > a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1rem; }
  .primary-nav .nav-cta { margin-top: 16px; justify-content: center; border: 1px solid rgba(255,255,255,.18); }
  .hero { padding-top: 124px; }
  .hero-layout { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .hero-signature { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-media { justify-self: center; }
  .hero-foot { flex-direction: column; text-align: center; }
  .hero-capabilities { justify-content: center; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading > p { max-width: 690px; }
  .work-card-large { grid-template-columns: 1fr; }
  .dashboard-mockup { max-width: 700px; margin-inline: auto; transform: none; }
  .process-layout { grid-template-columns: 1fr; gap: 60px; }
  .process-intro { position: static; }
  .studio-card { grid-template-columns: 1fr; }
  .studio-visual { min-height: 500px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { max-width: 690px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-copy strong { font-size: 1.06rem; }
  .brand-copy small { font-size: .54rem; }
  .brand-mark { width: 42px; height: 42px; }
  .hero { padding: 116px 0 36px; }
  .hero h1 { font-size: clamp(2.65rem, 12.5vw, 4.1rem); }
  .hero h1 em { white-space: normal; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-signature { text-align: left; align-items: flex-start; }
  .signature-line { flex: 0 0 auto; }
  .hero-media { width: 100%; }
  .video-shell { width: min(100%, 330px); }
  .orbit-one { width: 440px; height: 440px; }
  .orbit-two { width: 350px; height: 350px; }
  .chip-top { right: -2px; top: 75px; }
  .chip-bottom { left: 0; bottom: 46px; }
  .media-chip { padding: 8px 10px; font-size: .62rem; }
  .hero-foot { margin-top: 54px; }
  .hero-capabilities { gap: 9px; font-size: .61rem; }
  .section { padding: 86px 0; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .process-intro h2, .studio-copy h2, .contact-copy h2 { font-size: clamp(2.18rem, 10vw, 3.25rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; padding: 28px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card, .work-card-large { grid-column: auto; padding: 26px; }
  .work-card-large { min-height: 0; }
  .work-meta { align-items: flex-start; flex-direction: column; }
  .dashboard-mockup { min-height: 390px; }
  .mockup-body { min-height: 340px; }
  .mockup-main { padding: 14px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric-grid > div:nth-child(3) { display: none; }
  .chart-panel { margin-top: 8px; }
  .student-row:nth-of-type(2) { display: none; }
  .process-list li { grid-template-columns: 44px 1fr; min-height: 0; }
  .process-arrow { display: none; }
  .studio-section { padding-bottom: 86px; }
  .studio-card { border-radius: 24px; }
  .studio-visual { min-height: 420px; }
  .studio-logo-panel { width: min(72%, 270px); }
  .studio-copy { padding: 36px 25px 42px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid > div { min-height: 135px; }
  .contact-section { padding: 86px 0; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { flex-direction: column; }
}

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