@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700;800;900&display=swap');

:root {
  --ink: #06070b;
  --ink-soft: #0b0e16;
  --panel: rgba(14, 18, 29, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --muted: #8d94a7;
  --white: #f6f7fb;
  --cyan: #55f7ff;
  --violet: #a66cff;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    radial-gradient(circle at 72% 7%, rgba(102, 55, 175, .16), transparent 28%),
    var(--ink);
  background-size: 72px 72px, 72px 72px, auto, auto;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.section-shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

.ambient {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
  pointer-events: none;
}
.ambient-cyan { left: -260px; top: 38vh; background: var(--cyan); }
.ambient-violet { right: -250px; bottom: 0; background: var(--violet); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(6, 7, 11, .72);
  backdrop-filter: blur(18px);
}

.scroll-progress {
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 12px rgba(85,247,255,.7);
  transform: scaleX(0);
  transform-origin: left;
}

.header-inner {
  width: min(1200px, calc(100% - 48px));
  height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.06em;
}
.brand span { color: var(--cyan); }
.brand i { color: var(--violet); font-style: normal; text-shadow: 0 0 12px var(--violet); }

nav { display: flex; align-items: center; gap: 34px; }
nav a { color: #c4c8d3; font-size: 13px; font-weight: 600; transition: color .25s ease; }
nav a:hover { color: var(--cyan); }
.nav-cta { padding: 11px 18px; border: 1px solid rgba(85,247,255,.55); border-radius: 999px; color: var(--white); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 74px;
}

.hero-copy { position: relative; z-index: 2; padding-bottom: 18px; animation: hero-enter .85s cubic-bezier(.2,.7,.2,1) both; }
.eyebrow, .section-kicker {
  margin: 0 0 24px;
  color: #7f879a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 30px; height: 1px; background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }

h1 { margin: 0; font-family: "Montserrat", sans-serif; font-size: clamp(72px, 10vw, 142px); font-weight: 900; line-height: .83; letter-spacing: -.09em; }
.hero-name { color: var(--white); text-shadow: 0 0 34px rgba(255,255,255,.12); }
.hero-name.accent { color: transparent; -webkit-text-stroke: 2px var(--cyan); text-shadow: 0 0 16px rgba(85,247,255,.38), 8px 10px 0 rgba(166,108,255,.12); }

.hero-role { min-height: 1.5em; margin: 34px 0 12px; font-family: "Montserrat", sans-serif; font-size: clamp(19px, 2.2vw, 29px); font-weight: 600; letter-spacing: -.025em; }
.typing-cursor { display: inline-block; width: 2px; height: .95em; margin-left: 5px; vertical-align: -.08em; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: cursor-blink .8s steps(1) infinite; }
.hero-note { max-width: 560px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--cyan); color: #05080c; box-shadow: 0 12px 40px rgba(85,247,255,.18); }
.button-primary:hover { box-shadow: 0 14px 54px rgba(85,247,255,.3); }
.text-link { color: #cbd0dc; font-size: 13px; font-weight: 600; }
.text-link span { color: var(--violet); margin-left: 8px; }

.hero-orbit { position: relative; aspect-ratio: 1; width: min(100%, 500px); justify-self: end; }
.orbit { position: absolute; inset: 9%; border: 1px solid rgba(85,247,255,.24); border-radius: 50%; box-shadow: inset 0 0 45px rgba(85,247,255,.035); }
.orbit-one::before, .orbit-two::before { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); }
.orbit-one { animation: orbit-spin 22s linear infinite; }
.orbit-one::before { left: 10%; top: 17%; }
.orbit-two { inset: 23%; border-color: rgba(166,108,255,.28); animation: orbit-spin-reverse 15s linear infinite; }
.orbit-two::before { right: 1%; bottom: 26%; background: var(--violet); box-shadow: 0 0 20px var(--violet); }
.orbit-core { position: absolute; inset: 34%; display: grid; place-content: center; border: 1px solid var(--line); background: rgba(10,13,22,.74); transform: rotate(45deg); box-shadow: 0 0 70px rgba(102,74,180,.18); }
.orbit-core span, .orbit-core strong { transform: rotate(-45deg); text-align: center; }
.orbit-core span { color: var(--muted); font-size: 9px; letter-spacing: .25em; }
.orbit-core strong { font-family: "Montserrat"; font-size: 58px; letter-spacing: -.08em; }
.orbit-label { position: absolute; margin: 0; color: #60687a; font-size: 9px; letter-spacing: .2em; }
.orbit-label-top { top: 8%; right: 14%; }
.orbit-label-bottom { left: 4%; bottom: 14%; }

.scroll-cue { position: absolute; left: 0; bottom: 38px; display: flex; align-items: center; gap: 12px; color: #60687a; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; }
.scroll-cue i { width: 42px; height: 1px; background: #4b5260; }

.content-section { padding-top: 120px; padding-bottom: 72px; }
.section-kicker { margin-bottom: 13px; color: var(--cyan); }
.outline-title { margin: 0 0 54px; color: transparent; -webkit-text-stroke: 1px rgba(236,240,250,.76); font-family: "Montserrat", sans-serif; font-size: clamp(52px, 8vw, 104px); font-weight: 900; line-height: 1; letter-spacing: -.07em; text-shadow: 0 0 24px rgba(85,247,255,.09); }

.project-card { overflow: visible; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); }
.project-browser { padding: 18px; background: radial-gradient(circle at 76% 10%, rgba(85,247,255,.13), transparent 32%), linear-gradient(135deg, #0c111a, #151224 68%, #090b11); }
.project-browser-bar { height: 52px; display: grid; grid-template-columns: 110px minmax(180px, 1fr) minmax(78px, auto); align-items: center; border: 1px solid rgba(255,255,255,.13); border-bottom: 0; border-radius: 10px 10px 0 0; background: #0c0f15; color: #737b8b; }
.browser-dots { display: flex; gap: 7px; padding-left: 17px; }
.browser-dots i { width: 8px; height: 8px; border-radius: 50%; background: #404755; }
.browser-dots i:first-child { background: #ff6d68; }
.browser-dots i:nth-child(2) { background: #f4c65a; }
.browser-dots i:last-child { background: #56c56f; }
.browser-address { justify-self: center; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; letter-spacing: .06em; }
.project-controls { justify-self: end; display: flex; align-items: center; padding-right: 16px; }
.project-counter { color: #747d8e; font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.project-stage { position: relative; }
.project-side-arrow {
  position: absolute;
  z-index: 12;
  top: 50%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(85,247,255,.78);
  border-radius: 50%;
  background: rgba(7, 11, 18, .9);
  color: var(--white);
  box-shadow: 0 0 0 7px rgba(5,8,13,.68), 0 0 34px rgba(85,247,255,.33);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
  animation: project-arrow-in .32s cubic-bezier(.2,.7,.2,1) both;
}
.project-side-arrow span { display: block; font: 600 32px/1 "Inter", sans-serif; transform: translateY(-1px); }
.project-side-arrow--prev { left: -36px; }
.project-side-arrow--next { right: -36px; }
.project-side-arrow:hover { border-color: var(--cyan); background: rgba(85,247,255,.14); color: var(--cyan); box-shadow: 0 0 0 7px rgba(5,8,13,.74), 0 0 48px rgba(85,247,255,.52); transform: translateY(-50%) scale(1.08); }
.project-side-arrow:focus-visible { outline: 3px solid var(--violet); outline-offset: 5px; }
.project-frame-wrap { position: relative; height: min(720px, 78svh); min-height: 560px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 0 0 10px 10px; background: #080908; box-shadow: 0 28px 75px rgba(0,0,0,.42); }
.project-frame-wrap iframe { width: 100%; height: 100%; display: block; border: 0; background: #080908; }
.project-slide { animation: project-slide-in .42s cubic-bezier(.2,.7,.2,1) both; }
.project-empty-frame { position: relative; min-height: min(720px, 78svh); overflow: hidden; display: flex; align-items: center; padding: clamp(44px, 8vw, 110px); border: 1px solid rgba(255,255,255,.13); border-radius: 0 0 10px 10px; background: linear-gradient(125deg, #080b12 12%, #0b1420 56%, #161025); isolation: isolate; }
.project-empty-frame::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .26; background-image: linear-gradient(rgba(85,247,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(85,247,255,.1) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(90deg, #000, transparent 78%); }
.project-empty-glow { position: absolute; z-index: -1; width: min(52vw, 660px); aspect-ratio: 1; right: -10%; top: -18%; border: 1px solid rgba(85,247,255,.22); border-radius: 50%; box-shadow: 0 0 110px rgba(166,108,255,.18), inset 0 0 90px rgba(85,247,255,.06); }
.project-empty-glow::before, .project-empty-glow::after { content: ""; position: absolute; border-radius: 50%; }
.project-empty-glow::before { inset: 17%; border: 1px solid rgba(166,108,255,.25); }
.project-empty-glow::after { inset: 38%; background: rgba(85,247,255,.08); box-shadow: 0 0 70px rgba(85,247,255,.22); }
.project-empty-number { position: absolute; right: clamp(30px, 7vw, 92px); bottom: -0.15em; color: rgba(255,255,255,.035); font-family: "Montserrat", sans-serif; font-size: clamp(180px, 31vw, 450px); font-weight: 900; line-height: .8; letter-spacing: -.12em; user-select: none; }
.project-empty-copy { position: relative; z-index: 1; max-width: 790px; }
.project-empty-copy > span { display: block; margin-bottom: 22px; color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.project-empty-copy h3 { margin: 0; font-family: "Montserrat", sans-serif; font-size: clamp(42px, 6.4vw, 88px); font-weight: 900; line-height: .94; letter-spacing: -.065em; }
.project-empty-copy h3 em { color: transparent; -webkit-text-stroke: 1.5px var(--cyan); font-style: normal; text-shadow: 0 0 26px rgba(85,247,255,.18); }
.project-empty-copy p { max-width: 610px; margin: 30px 0 35px; color: #9aa2b2; font-size: 15px; line-height: 1.7; }
.project-empty-copy .button { min-width: 190px; }
.project-info { display: grid; grid-template-columns: minmax(0, 1fr) 250px; align-items: end; gap: 48px; padding: 38px; }
.project-copy { min-width: 0; }
.project-number { color: var(--cyan); font-size: 10px; letter-spacing: .18em; }
.project-heading-row { display: flex; align-items: center; gap: 18px; margin: 9px 0 13px; }
.project-info h3 { margin: 0; font-family: "Montserrat"; font-size: 40px; letter-spacing: -.04em; }
.project-price { flex: 0 0 auto; padding: 8px 12px; border: 1px solid rgba(85,247,255,.32); border-radius: 999px; background: rgba(85,247,255,.07); color: var(--cyan); font-size: 13px; box-shadow: 0 0 26px rgba(85,247,255,.08); }
.project-info p { max-width: 790px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.project-features { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.project-features li { padding: 7px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: #aab1c0; font-size: 10px; letter-spacing: .02em; }
.project-interaction-note { display: grid; grid-template-columns: 38px 1fr; gap: 13px; padding: 17px; border: 1px solid rgba(166,108,255,.22); background: rgba(166,108,255,.055); }
.project-interaction-note > span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(85,247,255,.28); border-radius: 50%; color: var(--cyan); }
.project-interaction-note p { color: #858d9d; font-size: 11px; line-height: 1.5; }
.project-interaction-note strong { display: block; margin-bottom: 2px; color: var(--white); font-size: 12px; }
.project-empty-info { min-height: 150px; display: flex; align-items: center; justify-content: space-between; gap: 42px; padding: 36px 38px; }
.project-empty-info p { max-width: 720px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.project-empty-info p strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 18px; }
.project-empty-info a { flex: 0 0 auto; padding-bottom: 5px; border-bottom: 1px solid rgba(85,247,255,.35); color: var(--white); font-size: 12px; font-weight: 700; }
.project-empty-info a span { margin-left: 8px; color: var(--cyan); }

.price-list { border-top: 1px solid var(--line); }
.price-row { min-height: 112px; display: grid; grid-template-columns: 54px 1fr 150px 190px 24px; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.price-row:hover { padding-inline: 15px; background: rgba(85,247,255,.035); }
.price-index { color: #586071; font-size: 10px; letter-spacing: .15em; }
.price-row h3 { margin: 0; font-family: "Montserrat"; font-size: 23px; letter-spacing: -.035em; }
.price-row p { margin: 0; color: var(--muted); font-size: 12px; }
.price-row strong { font-size: 15px; text-align: right; }
.price-arrow { color: var(--cyan); transition: transform .25s ease; }
.price-row:hover .price-arrow { transform: translate(3px, -3px); }

.contact-section { padding-top: 140px; padding-bottom: 130px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-lead p { margin: 0 0 12px; color: var(--violet); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-lead h3 { margin: 0; font-family: "Montserrat"; font-size: clamp(28px, 4vw, 48px); line-height: 1.14; letter-spacing: -.055em; }
.contact-links { border-top: 1px solid var(--line); }
.contact-links a { position: relative; display: grid; grid-template-columns: 28px 1fr; gap: 3px 12px; padding: 20px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease, color .25s ease; }
.contact-links a:hover { padding-left: 10px; color: var(--cyan); }
.contact-links a > span { grid-row: 1/3; padding-top: 5px; color: var(--cyan); }
.contact-links small { color: #6e7585; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-links strong { overflow-wrap: anywhere; font-size: 16px; font-weight: 600; }

.site-footer { min-height: 100px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: #6d7484; font-size: 11px; }
.site-footer .brand { color: var(--white); font-size: 17px; }
.site-footer > a:last-child { transition: color .25s ease; }
.site-footer > a:last-child:hover { color: var(--cyan); }

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0ms);
}
.js-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.js-ready .delay-1 { --delay: 40ms; }
.js-ready .delay-2 { --delay: 110ms; }
.js-ready .delay-3 { --delay: 180ms; }
.js-ready .delay-4 { --delay: 250ms; }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-reverse { to { transform: rotate(-360deg); } }
@keyframes cursor-blink { 0%, 45% { opacity: 1; } 46%, 100% { opacity: 0; } }
@keyframes project-slide-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes project-arrow-in {
  from { opacity: 0; transform: translateY(-50%) scale(.72); }
  to { opacity: 1; transform: translateY(-50%) scale(1); }
}

@media (max-width: 1320px) {
  .project-side-arrow--prev { left: 18px; }
  .project-side-arrow--next { right: 18px; }
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-orbit { position: absolute; width: 420px; right: -180px; top: 20%; opacity: .52; }
  .hero-copy { max-width: 680px; }
  .project-info { grid-template-columns: 1fr; gap: 28px; }
  .project-interaction-note { max-width: 360px; }
  .project-empty-frame { min-height: 600px; }
  .price-row { grid-template-columns: 42px 1fr 135px 20px; }
  .price-row p { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 54px; }
}

@media (max-width: 620px) {
  .section-shell, .header-inner { width: min(100% - 32px, 1200px); }
  .header-inner { height: 68px; }
  nav { gap: 15px; }
  nav a { font-size: 11px; }
  .nav-cta { padding: 9px 11px; }
  .hero { min-height: 760px; padding-top: 126px; }
  h1 { font-size: clamp(59px, 19vw, 92px); }
  .hero-role { margin-top: 28px; line-height: 1.35; }
  .hero-note { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .hero-orbit { width: 350px; right: -205px; top: 26%; opacity: .35; }
  .scroll-cue { bottom: 30px; }
  .content-section { padding-top: 96px; }
  .outline-title { margin-bottom: 38px; font-size: 52px; -webkit-text-stroke-width: .8px; }
  .project-browser { padding: 8px; }
  .project-browser-bar { height: 48px; grid-template-columns: 62px minmax(0, 1fr) 48px; }
  .browser-dots { gap: 5px; padding-left: 12px; }
  .browser-dots i { width: 6px; height: 6px; }
  .browser-address { justify-self: start; font-size: 9px; }
  .project-controls { padding-right: 10px; }
  .project-counter { display: none; }
  .project-side-arrow { width: 54px; height: 54px; box-shadow: 0 0 0 5px rgba(5,8,13,.66), 0 0 28px rgba(85,247,255,.3); }
  .project-side-arrow span { font-size: 25px; }
  .project-side-arrow--prev { left: 12px; }
  .project-side-arrow--next { right: 12px; }
  .project-frame-wrap { height: 640px; min-height: 0; }
  .project-empty-frame { min-height: 560px; padding: 38px 24px; }
  .project-empty-frame::before { background-size: 42px 42px; }
  .project-empty-glow { width: 420px; right: -58%; top: -2%; }
  .project-empty-copy > span { max-width: 230px; font-size: 8px; line-height: 1.6; }
  .project-empty-copy h3 { font-size: clamp(39px, 12vw, 57px); }
  .project-empty-copy p { margin: 24px 0 29px; font-size: 13px; }
  .project-empty-number { right: 10px; bottom: 12px; font-size: 160px; }
  .project-info { padding: 27px 22px; }
  .project-heading-row { align-items: flex-start; flex-direction: column; gap: 10px; }
  .project-info h3 { font-size: 32px; }
  .project-interaction-note { max-width: none; }
  .project-empty-info { min-height: 190px; align-items: flex-start; flex-direction: column; gap: 24px; padding: 28px 22px; }
  .price-row { min-height: 96px; grid-template-columns: 28px 1fr 18px; gap: 10px; }
  .price-row strong { grid-column: 2; grid-row: 2; text-align: left; color: var(--muted); font-size: 12px; }
  .price-arrow { grid-column: 3; grid-row: 1/3; }
  .price-row h3 { font-size: 18px; }
  .contact-section { padding-top: 110px; padding-bottom: 90px; }
  .site-footer { min-height: 130px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 12px; }
}

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