@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #f4f6fa;
  --surface: rgba(255, 255, 255, .72);
  --white: #fff;
  --ink: #080b12;
  --muted: #596273;
  --line: rgba(8, 11, 18, .11);
  --blue: #315cff;
  --cyan: #63e7ff;
  --violet: #8a5cff;
  --green: #33d69f;
  --sans: "Manrope", system-ui, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
::selection { color: white; background: var(--blue); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  color: white;
  background: var(--blue);
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }
.noise {
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 60;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 86px;
  padding: 1rem clamp(1.25rem, 5vw, 5rem);
}
.brand { display: inline-flex; align-items: center; gap: .85rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  color: white;
  background: var(--ink);
  border-radius: 13px;
  font: 500 .7rem var(--mono);
  letter-spacing: -.05em;
}
.brand-copy { font-weight: 700; line-height: 1.1; letter-spacing: -.03em; }
.brand-copy small {
  display: block;
  margin-top: .25rem;
  color: var(--muted);
  font: 400 .58rem var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.4rem); }
.site-nav a { color: #303846; font: 500 .69rem var(--mono); letter-spacing: .04em; }
.site-nav a:hover { color: var(--blue); }
.nav-cta {
  padding: .78rem 1rem;
  color: white !important;
  background: var(--ink);
  border-radius: 10px;
  transition: transform .2s, background .2s;
}
.nav-cta:hover { background: var(--blue); transform: translateY(-2px); }
.menu-button { display: none; color: inherit; background: none; border: 0; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  min-height: 100svh;
  padding: 9rem clamp(1.25rem, 7vw, 7.5rem) 5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 45%, rgba(99, 231, 255, .22), transparent 23%),
    radial-gradient(circle at 85% 30%, rgba(138, 92, 255, .18), transparent 28%),
    linear-gradient(#fff, #f2f5fa);
}
.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .35;
  background-image:
    linear-gradient(rgba(49, 92, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 92, 255, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0, black 55%, black 100%);
}
.hero-copy { position: relative; z-index: 3; min-width: 0; }
.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--blue);
  font: 500 clamp(.64rem, 1vw, .73rem) var(--mono);
  letter-spacing: .11em;
  text-transform: uppercase;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: .55rem;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(51, 214, 159, .12);
}
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(4.1rem, 7.5vw, 7.6rem);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.075em;
}
.hero h1 em {
  display: block;
  width: max-content;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(105deg, var(--blue), var(--violet) 52%, #06aaca);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}
.hero-intro {
  max-width: 640px;
  margin: 2rem 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 195px;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: 500 .68rem var(--mono);
  transition: transform .2s, color .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 12px 30px rgba(8, 11, 18, .12);
}
.button-primary:hover { background: var(--blue); border-color: var(--blue); box-shadow: 0 15px 36px rgba(49, 92, 255, .23); }
.button-quiet { background: rgba(255, 255, 255, .5); }
.button-quiet:hover { background: white; }
.hero-stack { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.hero-stack li {
  padding: .42rem .65rem;
  color: #4f596a;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(8, 11, 18, .08);
  border-radius: 8px;
  font: 400 .59rem var(--mono);
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 570px);
  aspect-ratio: 1;
  margin-inline: auto;
}
.orbital-stage {
  position: absolute;
  inset: 8%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(49, 92, 255, .15);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.96) 0 12%, rgba(255,255,255,.55) 13% 24%, transparent 50%),
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.18));
  box-shadow:
    inset 0 0 90px rgba(49, 92, 255, .08),
    0 30px 100px rgba(76, 103, 188, .15);
  backdrop-filter: blur(18px);
}
.orbital-stage::before, .orbital-stage::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(49, 92, 255, .18);
  border-radius: 50%;
}
.orbital-stage::before { inset: 16%; }
.orbital-stage::after { inset: 32%; border-style: dashed; }
.core {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 110px;
  aspect-ratio: 1;
  color: white;
  background: linear-gradient(145deg, #111623, #05070c);
  border-radius: 34px;
  box-shadow: 0 20px 45px rgba(8, 11, 18, .24), inset 0 0 0 1px rgba(255,255,255,.13);
  transform: rotate(45deg);
}
.core::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(99, 231, 255, .35);
  border-radius: 28px;
}
.core span { font: 500 1.1rem var(--mono); letter-spacing: -.06em; transform: rotate(-45deg); }
.orbit { position: absolute; z-index: 2; inset: 8%; border: 1px solid rgba(49, 92, 255, .23); border-radius: 50%; animation: rotate 20s linear infinite; }
.orbit-two { inset: 24%; animation-duration: 13s; animation-direction: reverse; }
.orbit i {
  position: absolute;
  top: 12%;
  right: 12%;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(49, 92, 255, .55);
}
.orbit-two i { top: auto; right: auto; bottom: -6px; left: 50%; width: 12px; height: 12px; background: var(--cyan); }
.axis { position: absolute; z-index: 1; background: linear-gradient(90deg, transparent, rgba(49, 92, 255, .15), transparent); }
.axis-x { left: 2%; width: 96%; height: 1px; }
.axis-y { top: 2%; width: 1px; height: 96%; background: linear-gradient(transparent, rgba(49, 92, 255, .15), transparent); }
.signal-card {
  position: absolute;
  z-index: 5;
  min-width: 205px;
  padding: .9rem 1rem;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(56, 74, 124, .13);
  backdrop-filter: blur(16px);
}
.signal-card-one { top: 8%; left: -2%; }
.signal-card-two { right: -2%; bottom: 12%; }
.signal-card span { display: block; margin-bottom: .3rem; color: #778093; font: 400 .53rem var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.signal-card strong { font-size: .74rem; font-weight: 600; }
.signal-card strong i { display: inline-block; width: 7px; height: 7px; margin-right: .4rem; background: var(--green); border-radius: 50%; }
.coordinates {
  position: absolute;
  right: 7%;
  bottom: 0;
  margin: 0;
  color: #6d778a;
  font: 400 .55rem var(--mono);
  letter-spacing: .08em;
}
.scroll-note {
  position: absolute;
  bottom: 1.5rem;
  left: clamp(1.25rem, 7vw, 7.5rem);
  color: #7d8696;
  font: 400 .55rem var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-note span { display: inline-block; width: 36px; height: 1px; margin-right: .7rem; background: #a4acb8; vertical-align: middle; }

.ticker {
  position: relative;
  z-index: 3;
  padding: 0 clamp(1.25rem, 7vw, 7.5rem);
  background: white;
  border-block: 1px solid var(--line);
}
.ticker div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.ticker span {
  padding: 1.25rem .75rem 1.25rem 0;
  color: #3c4554;
  border-right: 1px solid var(--line);
  font: 500 .62rem var(--mono);
  letter-spacing: .03em;
}
.ticker b {
  display: none;
  color: var(--blue);
  font: 400 .55rem var(--mono);
}

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7.5rem); }
.section-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.section-heading h2, .contact-section h2 {
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.065em;
}
.section-heading > p { max-width: 440px; margin: 0; color: var(--muted); }

.services-section {
  position: relative;
  background: white;
}
.services-section::before {
  position: absolute;
  top: 8rem;
  right: -12rem;
  width: 32rem;
  height: 32rem;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(99, 231, 255, .14), transparent 66%);
}
.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.service-card {
  position: relative;
  min-height: 330px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  background: #f7f8fb;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  z-index: 2;
  border-color: rgba(49, 92, 255, .25);
  box-shadow: 0 24px 60px rgba(39, 62, 121, .11);
  transform: translateY(-6px);
}
.service-card > span {
  color: #8c95a4;
  font: 400 .56rem var(--mono);
}
.service-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: 500 1.1rem var(--mono);
}
.service-card h3 {
  max-width: 420px;
  margin: 5rem 0 .8rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.05em;
}
.service-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}
.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.service-card li {
  padding: .38rem .58rem;
  color: #505a6a;
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: 400 .55rem var(--mono);
}
.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  color: white;
  background:
    radial-gradient(circle at 80% 50%, rgba(99,231,255,.18), transparent 28%),
    #0a0e16;
  border-radius: 20px;
}
.service-cta span {
  display: block;
  margin-bottom: .25rem;
  color: #929cad;
  font: 400 .58rem var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-cta strong {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 500;
}
.service-cta .button-primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: white;
  border-color: white;
  box-shadow: none;
}
.service-cta .button-primary:hover {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.work-section { background: #090c13; color: white; }
.work-section .eyebrow { color: var(--cyan); }
.work-section .section-heading > p { color: #98a1b1; }
.project-list { border-top: 1px solid rgba(255,255,255,.12); }
.project {
  display: grid;
  grid-template-columns: 38px minmax(250px, .78fr) minmax(370px, 1.22fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.project-index { align-self: start; padding-top: .2rem; color: var(--cyan); font: 400 .62rem var(--mono); }
.project-kicker { margin: 0 0 .65rem; color: #929daf; font: 400 .58rem var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.project h3 { margin: 0 0 1rem; font-size: clamp(2rem, 3.5vw, 3.8rem); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
.project-copy > p:not(.project-kicker) { max-width: 540px; margin: 0; color: #a6afbd; }
.tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.4rem 0; padding: 0; list-style: none; }
.tags li { padding: .36rem .55rem; color: #c5ccd7; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 7px; font: 400 .55rem var(--mono); }
.text-link { display: inline-flex; gap: 1.5rem; padding-bottom: .25rem; border-bottom: 1px solid rgba(99,231,255,.55); font: 400 .64rem var(--mono); }
.text-link span { color: var(--cyan); transition: transform .2s; }
.text-link:hover span { transform: translate(3px, -3px); }
.project-art {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #111622;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.browser-chrome, .terminal-bar, .code-head {
  display: flex;
  align-items: center;
  gap: .4rem;
  height: 38px;
  padding: 0 .8rem;
  color: #8791a3;
  background: rgba(8,11,18,.93);
  border-bottom: 1px solid rgba(255,255,255,.1);
  font: 400 .52rem var(--mono);
}
.browser-chrome i { width: 6px; height: 6px; background: #7f8999; border-radius: 50%; }
.browser-chrome i:nth-child(2) { opacity: .6; }
.browser-chrome i:nth-child(3) { opacity: .3; }
.browser-chrome span { margin-left: .5rem; }
.store-ui {
  min-height: 322px;
  padding: 2rem;
  color: #0c1113;
  background: linear-gradient(135deg, #dff0d9, #f8faf3);
}
.store-ui p { margin: 0 0 2rem; font-size: .68rem; font-weight: 700; letter-spacing: .22em; }
.store-ui strong { display: block; font-size: clamp(2.4rem, 5vw, 5.5rem); line-height: .8; letter-spacing: -.09em; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-top: 1.6rem; }
.product-grid i { height: 40px; background: #163325; border-radius: 7px; }
.product-grid i:nth-child(2) { background: #b8db67; }
.product-grid i:nth-child(3) { background: white; }
.art-events { background: linear-gradient(145deg, #131b2c, #0e1220); }
.terminal-bar { justify-content: space-between; }
.event-ui { padding: 2rem; font-family: var(--mono); }
.event-ui b { display: block; margin-bottom: 2rem; color: var(--cyan); font-size: 1.4rem; }
.event-ui span { display: block; width: max-content; margin-top: 1rem; padding: .25rem .45rem; color: white; background: var(--blue); border-radius: 5px; font-size: .55rem; }
.event-ui p { margin: .3rem 0; padding-bottom: .8rem; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; }
.art-api { background: linear-gradient(145deg, #101724, #080d16); }
.code-head { justify-content: space-between; color: var(--cyan); }
.art-api pre { margin: 0; padding: clamp(1.3rem, 3vw, 2.5rem); color: #c5ced8; font: 400 clamp(.7rem, 1.2vw, .9rem)/1.75 var(--mono); white-space: pre-wrap; }
.art-api code b { color: #a98cff; }
.art-api code i { color: var(--green); font-style: normal; }
.art-mobile { display: grid; place-items: center; min-height: 430px; background: radial-gradient(circle at 50% 30%, #426fff, #111a3b 58%, #090d17); }
.phone {
  width: 208px;
  min-height: 370px;
  padding: 1.2rem;
  color: var(--ink);
  background: white;
  border: 5px solid #080b12;
  border-radius: 30px;
  box-shadow: 18px 25px 55px rgba(0,0,0,.35);
  transform: rotate(3deg);
}
.phone-top { width: 52px; height: 5px; margin: 0 auto 1.7rem; background: #151b25; border-radius: 8px; }
.phone p { margin: 0; color: #778091; font: 400 .52rem var(--mono); text-transform: uppercase; }
.phone strong { display: block; margin: .45rem 0 1rem; font-size: 1.55rem; line-height: 1; letter-spacing: -.05em; }
.map { position: relative; height: 145px; margin-bottom: 1rem; overflow: hidden; background: #dce9f8; border-radius: 14px; }
.map::before, .map::after { position: absolute; inset: 40% -10%; content: ""; height: 10px; background: white; transform: rotate(-25deg); }
.map::after { inset: -10% 55%; width: 10px; height: 120%; transform: rotate(38deg); }
.map i { position: absolute; z-index: 2; width: 13px; height: 13px; background: var(--blue); border: 3px solid white; border-radius: 50%; }
.map i:nth-child(1) { top: 25%; left: 35%; }
.map i:nth-child(2) { top: 60%; left: 68%; }
.map i:nth-child(3) { top: 73%; left: 26%; }
.phone > span { font: 400 .52rem var(--mono); }
.art-auto { display: grid; place-items: center; background: radial-gradient(circle, #1c2639, #0a0e16 62%); }
.speedo {
  position: relative;
  display: grid;
  place-items: center;
  width: 245px;
  height: 245px;
  border: 1px solid rgba(99,231,255,.6);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(99,231,255,.08), 0 0 50px rgba(49,92,255,.12);
}
.speedo::before { position: absolute; inset: 20px; content: ""; border: 5px dotted rgba(255,255,255,.18); border-radius: 50%; clip-path: polygon(0 0, 100% 0, 100% 72%, 0 72%); }
.speedo i { position: absolute; width: 88px; height: 2px; background: var(--blue); transform: rotate(-32deg) translateX(35px); transform-origin: left; box-shadow: 0 0 12px var(--blue); }
.speedo b { color: white; font: 500 1.35rem var(--mono); }
.speedo span { position: absolute; bottom: 55px; color: #9da7b7; font: 400 .43rem var(--mono); letter-spacing: .06em; }
.all-work { display: flex; justify-content: space-between; gap: 2rem; margin-top: 2rem; padding: 1.3rem 0; color: #bdc5d1; border-bottom: 1px solid rgba(99,231,255,.4); font: 400 .66rem var(--mono); }
.all-work b { color: var(--cyan); font-weight: 400; }

.socials-section {
  color: white;
  background:
    radial-gradient(circle at 12% 15%, rgba(49, 92, 255, .2), transparent 24%),
    linear-gradient(180deg, #0e1420, #080b12);
  border-top: 1px solid rgba(255,255,255,.08);
}
.socials-section .eyebrow { color: var(--cyan); }
.socials-section .section-heading > p { color: #98a1b1; }
.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}
.reel-card {
  overflow: hidden;
  background: #111722;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}
.reel-media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #05080d;
}
.reel-media video { display: block; width: 100%; height: 100%; object-fit: cover; }
.reel-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 25%;
  pointer-events: none;
  content: "";
  background: linear-gradient(transparent, rgba(3,6,11,.7));
}
.reel-play {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding: 0;
  color: white;
  background: rgba(8,11,18,.72);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  transition: opacity .2s, transform .2s, background .2s;
}
.reel-play:hover { background: var(--blue); transform: translate(-50%, -50%) scale(1.06); }
.reel-play span { margin-left: 4px; font-size: 1rem; }
.reel-card.is-playing .reel-play { opacity: 0; }
.reel-card.is-playing .reel-media:hover .reel-play { opacity: 1; }
.reel-card.is-playing .reel-play span { margin: 0; font-size: 0; }
.reel-card.is-playing .reel-play span::after { content: "Ⅱ"; font: 600 1rem var(--sans); }
.reel-duration {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  padding: .35rem .5rem;
  color: white;
  background: rgba(8,11,18,.72);
  border-radius: 7px;
  font: 400 .52rem var(--mono);
  backdrop-filter: blur(8px);
}
.reel-copy { padding: 1.25rem; }
.reel-copy > p { margin: 0 0 .55rem; color: var(--cyan); font: 400 .55rem var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.reel-copy h3 { margin: 0 0 .6rem; font-size: clamp(1.35rem, 2.2vw, 1.8rem); font-weight: 500; letter-spacing: -.04em; }
.reel-copy > span { display: block; min-height: 3em; color: #97a2b2; font-size: .82rem; }
.reel-actions { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .75rem; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); }
.reel-actions a,
.reel-actions button { color: #c8d0dc; font: 400 .54rem var(--mono); }
.reel-actions a { color: var(--cyan); }
.reel-actions button { padding: 0; background: none; border: 0; }
.reel-actions .copy-caption { grid-column: 1 / -1; justify-self: start; }
.reel-actions a:hover,
.reel-actions button:hover { color: white; }
.social-spec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  overflow: hidden;
}
.social-spec span { padding: 1rem; color: #8692a5; border-right: 1px solid rgba(255,255,255,.1); font: 400 .52rem var(--mono); text-align: center; }
.social-spec span:last-child { color: var(--green); border: 0; }

.about-section { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 7rem); }
.about-heading { display: block; margin: 0; }
.about-heading h2 { font-size: clamp(3rem, 6vw, 5.7rem); }
.about-copy .lead { margin-top: 0; color: var(--ink); font-size: clamp(1.2rem, 1.9vw, 1.65rem); line-height: 1.4; }
.about-copy p:not(.lead) { color: var(--muted); }
.spec-panel { align-self: start; color: white; background: #0b0f17; border-radius: 20px; box-shadow: 0 24px 70px rgba(8,11,18,.17); overflow: hidden; }
.spec-title { display: flex; justify-content: space-between; padding: .9rem 1.1rem; color: var(--cyan); border-bottom: 1px solid rgba(255,255,255,.1); font: 400 .56rem var(--mono); }
.spec-panel dl { margin: 0; padding: 1rem 1.1rem; }
.spec-panel dl div { display: grid; grid-template-columns: 100px 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.spec-panel dl div:last-child { border: 0; }
.spec-panel dt { color: #8994a7; font: 400 .55rem var(--mono); text-transform: uppercase; }
.spec-panel dd { margin: 0; font-size: .82rem; }
.online { color: var(--green); }
.about-quote { position: relative; align-self: center; margin: 0; padding: 1.5rem 0 1.5rem 2.5rem; font-size: clamp(1.5rem, 2.8vw, 2.7rem); font-weight: 500; line-height: 1.2; letter-spacing: -.04em; border-left: 2px solid var(--blue); }
.about-quote span { position: absolute; top: -.5rem; left: .7rem; color: var(--blue); font-size: 3.5rem; }

.policies-section {
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(49, 92, 255, .18), transparent 26%),
    #0d111b;
}
.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .65fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.policies-section .eyebrow { color: var(--cyan); }
.policies-section h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
}
.policy-intro { max-width: 660px; margin: 1.5rem 0 2.5rem; color: #a6afbd; font-size: 1.05rem; }
.policy-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .12); }
.policy-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.policy-list li > span { padding-top: .2rem; color: var(--cyan); font: 400 .62rem var(--mono); }
.policy-list h3 { margin: 0 0 .35rem; font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 500; letter-spacing: -.025em; }
.policy-list p { max-width: 620px; margin: 0; color: #929cad; font-size: .9rem; }
.policy-note { margin: 1.25rem 0 0; color: #758095; font: 400 .58rem/1.6 var(--mono); }
.brand-downloads { display: grid; gap: 1rem; align-self: start; }
.poster-card,
.business-card-download { margin: 0; overflow: hidden; background: #151b28; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; box-shadow: 0 28px 80px rgba(0,0,0,.35); }
.poster-card img { width: 100%; height: auto; background: white; }
.poster-card figcaption,
.business-card-download figcaption { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1rem; color: #909aaa; font: 400 .56rem var(--mono); }
.poster-card a,
.business-card-download a { flex: 0 0 auto; color: var(--cyan); }
.poster-card a:hover,
.business-card-download a:hover { color: white; }
.business-card-download { background: #060b14; }
.business-card-download img { width: 100%; height: auto; aspect-ratio: 1.75; object-fit: cover; }
.business-card-download figcaption div { display: grid; gap: .2rem; }
.business-card-download figcaption small { color: #6f7b8f; font: inherit; }

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  gap: 3rem;
  min-height: 80svh;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7.5rem);
  overflow: hidden;
  color: white;
  background: #080b12;
}
.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 82% 40%, rgba(49,92,255,.32), transparent 24%),
    radial-gradient(circle at 90% 60%, rgba(99,231,255,.12), transparent 23%);
}
.contact-inner { position: relative; z-index: 2; }
.contact-section .eyebrow { color: var(--cyan); }
.contact-inner > p:not(.eyebrow) { max-width: 620px; margin: 1.5rem 0 3rem; color: #9ca6b5; font-size: 1.05rem; }
.contact-email { display: flex; justify-content: space-between; max-width: 780px; padding: 1rem 0; overflow-wrap: anywhere; color: white; border-bottom: 1px solid rgba(99,231,255,.5); font-size: clamp(1.2rem, 2.8vw, 2.4rem); font-weight: 500; letter-spacing: -.04em; }
.contact-email span { color: var(--cyan); }
.contact-email:hover { color: var(--cyan); }
.contact-links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.contact-links a { color: #909aaa; font: 400 .63rem var(--mono); }
.contact-links a:hover { color: white; }
.contact-orbit { position: relative; display: grid; place-items: center; width: min(31vw, 350px); aspect-ratio: 1; margin-inline: auto; border: 1px solid rgba(99,231,255,.23); border-radius: 50%; animation: rotate 32s linear infinite; }
.contact-orbit::before, .contact-orbit::after { position: absolute; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.contact-orbit::before { inset: 16%; }
.contact-orbit::after { inset: 32%; border-style: dashed; }
.contact-orbit b { display: grid; place-items: center; width: 70px; height: 70px; color: white; background: linear-gradient(145deg, var(--blue), var(--violet)); border-radius: 22px; font: 500 .9rem var(--mono); animation: rotate-reverse 32s linear infinite; }
.contact-orbit i { position: absolute; width: 11px; height: 11px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 18px var(--cyan); }
.contact-orbit i:nth-child(1) { top: -6px; }
.contact-orbit i:nth-child(2) { right: 8%; bottom: 18%; background: var(--violet); }
.contact-orbit i:nth-child(3) { left: 3%; top: 29%; background: var(--green); }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; padding: 1.5rem clamp(1.25rem, 5vw, 5rem); color: #8b95a6; background: #080b12; border-top: 1px solid rgba(255,255,255,.1); font: 400 .55rem var(--mono); }
.site-footer p { margin: 0; }
.site-footer a:hover { color: var(--cyan); }
.site-footer .status-dot { width: 5px; height: 5px; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes rotate-reverse { to { transform: rotate(-360deg); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: minmax(0, 1fr); padding-top: 9rem; }
  .hero-copy { max-width: 800px; }
  .hero-visual { width: min(78vw, 550px); margin-top: 2rem; }
  .scroll-note { display: none; }
  .ticker div { grid-template-columns: repeat(3, 1fr); }
  .ticker span:nth-of-type(4), .ticker span:nth-of-type(5) { display: none; }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .project { grid-template-columns: 30px 1fr; }
  .project-art { grid-column: 2; margin-top: 1rem; }
  .about-grid { gap: 4rem 2rem; }
  .policy-layout { grid-template-columns: 1fr minmax(280px, .7fr); gap: 3rem; }
  .reel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-section { grid-template-columns: 1fr; }
  .contact-orbit { width: min(58vw, 320px); }
}

@media (max-width: 720px) {
  .site-header { min-height: 76px; }
  .menu-button { position: relative; z-index: 2; display: flex; align-items: center; gap: .7rem; padding: .5rem 0; font: 400 .6rem var(--mono); }
  .menu-button i, .menu-button i::before { display: block; width: 19px; height: 1px; background: var(--ink); content: ""; transition: transform .2s; }
  .menu-button i::before { transform: translateY(6px); }
  .menu-button[aria-expanded="true"] { color: white; }
  .menu-button[aria-expanded="true"] i { background: white; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] i::before { background: white; transform: rotate(-90deg); }
  .site-nav { position: fixed; z-index: 1; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 2rem; background: rgba(8,11,18,.98); transform: translateX(100%); transition: transform .3s ease; }
  .site-nav.is-open { transform: none; }
  .site-nav a { color: white; font-size: 1.3rem; }
  .nav-cta { margin-top: 1rem; background: var(--blue); }
  .hero { min-height: auto; padding-block: 8rem 4.5rem; }
  .hero h1 { font-size: clamp(3.35rem, 15vw, 5rem); }
  .hero-actions .button { flex: 1 1 190px; min-width: 0; }
  .hero-visual { width: min(92vw, 470px); margin-block: 2rem 0; }
  .signal-card { min-width: 175px; padding: .75rem; }
  .signal-card-one { left: 0; }
  .signal-card-two { right: 0; }
  .ticker div { grid-template-columns: 1fr; }
  .ticker span { border-right: 0; border-bottom: 1px solid var(--line); }
  .ticker span:nth-of-type(2), .ticker span:nth-of-type(3) { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-card h3 { margin-top: 4rem; }
  .service-cta { align-items: stretch; flex-direction: column; }
  .service-cta .button-primary { width: 100%; }
  .project { grid-template-columns: 1fr; }
  .project-index { padding: 0; }
  .project-art { grid-column: 1; min-height: 300px; border-radius: 16px; }
  .project h3 { font-size: 2.45rem; }
  .reel-grid { grid-template-columns: 1fr; }
  .social-spec { grid-template-columns: 1fr 1fr; }
  .social-spec span:nth-child(2) { border-right: 0; }
  .social-spec span:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .art-mobile { min-height: 430px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-quote { padding-left: 2.4rem; }
  .policy-layout { grid-template-columns: 1fr; }
  .brand-downloads { width: min(100%, 480px); }
  .poster-card figcaption,
  .business-card-download figcaption { align-items: flex-start; flex-direction: column; }
  .all-work { flex-direction: column; gap: .5rem; }
  .contact-section { min-height: auto; }
  .contact-email { font-size: 1.15rem; }
  .contact-orbit { display: none; }
  .site-footer { grid-template-columns: 1fr; gap: .65rem; }
}

@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; }
}
