:root {
  color-scheme: dark;
  --bg: #050713;
  --bg-2: #090d1d;
  --ink: #eef7f3;
  --muted: #9badb3;
  --line: rgba(220, 238, 232, 0.16);
  --panel: rgba(9, 17, 38, 0.78);
  --panel-strong: rgba(13, 24, 52, 0.92);
  --gold: #f2b457;
  --gold-2: #ffe3a2;
  --teal: #00d4ff;
  --blue: #5787ff;
  --green: #55d88d;
  --violet: #a888ff;
  --coral: #ff7666;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-bright: 0 32px 100px rgba(0, 212, 255, 0.16);
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(0, 212, 255, 0.13), transparent 31%),
    radial-gradient(circle at 18% 24%, rgba(242, 180, 87, 0.11), transparent 34%),
    linear-gradient(180deg, #050713 0%, #07101f 48%, #050713 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

#stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  transform: translate(-220%, -220%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #101a32;
  opacity: 0;
}

.skip-link:focus {
  left: 14px;
  top: 12px;
  transform: translate(0, 0);
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(220, 238, 232, 0.12);
  background: rgba(5, 7, 19, 0.72);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(242, 180, 87, 0.42);
  border-radius: 8px;
  color: #15100a;
  background:
    linear-gradient(145deg, #fff7d7, #f2b457 45%, #a76c22 100%);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(242, 180, 87, 0.22);
}

.brand-word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(120deg, #fff9de, #f2b457 46%, #fff1b4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav {
  display: flex;
  gap: 8px;
}

nav a,
.nav-cta,
.button,
.world-close,
.pillar-card {
  border-radius: 8px;
  font: inherit;
}

nav a,
.nav-cta {
  border: 1px solid transparent;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

nav a:hover,
.nav-cta {
  border-color: rgba(242, 180, 87, 0.28);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

main {
  width: min(1500px, calc(100% - 28px));
  margin: 0 auto;
}

.section-band,
.hero-section {
  border-bottom: 1px solid rgba(220, 238, 232, 0.12);
  padding: clamp(52px, 7vw, 108px) clamp(16px, 4vw, 48px);
}

.hero-section {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 5vw, 82px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(58px, 8.2vw, 126px);
  font-weight: 700;
  line-height: 0.88;
}

h2 {
  max-width: 13ch;
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 650;
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.mission {
  max-width: 820px;
  margin-bottom: 26px;
  color: #dceae6;
  font-size: clamp(21px, 2.7vw, 34px);
  line-height: 1.16;
}

.section-text {
  max-width: 760px;
  font-size: clamp(16px, 1.7vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(220, 238, 232, 0.16);
  padding: 12px 17px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-bright);
}

.button.primary {
  border-color: rgba(242, 180, 87, 0.45);
  color: #120d07;
  background: linear-gradient(135deg, #fff8d9, #f2b457 52%, #f5d48c);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.venture-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
  perspective: 1200px;
  isolation: isolate;
}

#ventureCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(220, 238, 232, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 212, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.orbit-core {
  position: relative;
  z-index: 2;
  width: min(72%, 430px);
  border: 1px solid rgba(242, 180, 87, 0.22);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  text-align: center;
  background: linear-gradient(145deg, rgba(12, 22, 48, 0.9), rgba(7, 12, 28, 0.86));
  box-shadow: var(--shadow);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 160ms ease;
}

.orbit-core span,
.film-frame span,
.pillar-card span,
.world-gallery span,
.lifecycle-track span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.orbit-core strong {
  display: block;
  margin: 8px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 0.95;
}

.orbit-core p {
  margin-bottom: 0;
}

.orbit-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 104px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 212, 255, 0.26);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(8, 17, 38, 0.76);
  box-shadow: 0 18px 40px rgba(0, 212, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
  animation: floatNode 7s ease-in-out infinite;
}

.node-websites { left: 2%; top: 23%; }
.node-apps { right: 4%; top: 22%; animation-delay: -1.5s; }
.node-ai { left: 11%; bottom: 16%; animation-delay: -2.8s; }
.node-ops { right: 14%; bottom: 14%; animation-delay: -4s; }

.section-head {
  margin-bottom: 32px;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 82px);
  align-items: end;
}

.cinematic-montage {
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.06), transparent 36%),
    linear-gradient(250deg, rgba(242, 180, 87, 0.08), transparent 42%);
}

.film-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 16px;
}

.film-frame {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(220, 238, 232, 0.14);
  border-radius: 8px;
  background: #0b1327 center / cover no-repeat;
  box-shadow: var(--shadow);
}

.film-frame:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
}

.film-frame:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=80");
}

.film-frame:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80");
}

.film-frame.large {
  grid-row: span 2;
  min-height: 536px;
}

.film-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.03);
  animation: cinemaDrift 18s ease-in-out infinite alternate;
}

.film-frame:nth-child(2) img {
  animation-delay: -5s;
}

.film-frame:nth-child(3) img {
  animation-delay: -9s;
}

.film-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 19, 0.08), rgba(5, 7, 19, 0.78)),
    linear-gradient(90deg, rgba(0, 212, 255, 0.18), transparent 58%);
}

.film-frame div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  max-width: 680px;
}

.film-frame strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(20px, 2.5vw, 36px);
  line-height: 1.06;
}

.proof-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(242, 180, 87, 0.1), transparent 30%),
    radial-gradient(circle at 86% 68%, rgba(0, 212, 255, 0.09), transparent 34%);
}

.proof-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  min-height: 420px;
  border: 1px solid rgba(220, 238, 232, 0.14);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(13, 24, 52, 0.9), rgba(8, 14, 32, 0.84));
  box-shadow: var(--shadow);
}

.proof-card p {
  margin: 18px 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card h3 {
  margin-bottom: 8px;
}

.proof-card strong {
  color: #dceae6;
  font-size: 14px;
  line-height: 1.45;
}

.artifact-mock {
  position: relative;
  height: 210px;
  overflow: hidden;
  border: 1px solid rgba(220, 238, 232, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 12%, rgba(0, 212, 255, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
}

.artifact-mock::before,
.artifact-mock::after,
.artifact-mock span {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: rgba(238, 247, 243, 0.1);
}

.artifact-mock::before {
  left: 18px;
  top: 18px;
  width: 54%;
  height: 12px;
  background: var(--gold);
}

.artifact-mock::after {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 58px;
  border: 1px solid rgba(220, 238, 232, 0.16);
}

.artifact-mock span:nth-child(1) {
  left: 18px;
  top: 50px;
  width: 76%;
  height: 34px;
}

.artifact-mock span:nth-child(2) {
  left: 18px;
  top: 96px;
  width: 34%;
  height: 76px;
  background: rgba(0, 212, 255, 0.16);
}

.artifact-mock span:nth-child(3) {
  right: 18px;
  top: 96px;
  width: 45%;
  height: 76px;
  background: rgba(242, 180, 87, 0.14);
}

.app-surface {
  width: 62%;
  margin-inline: auto;
  border-radius: 26px;
}

.data-surface::after {
  height: 88px;
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.38) 0 18%, transparent 18% 23%, rgba(242, 180, 87, 0.34) 23% 52%, transparent 52% 57%, rgba(85, 216, 141, 0.3) 57% 100%);
}

.agent-surface span:nth-child(2),
.agent-surface span:nth-child(3) {
  border-radius: 999px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pillar-card {
  position: relative;
  min-height: 360px;
  overflow: visible;
  border: 1px solid rgba(220, 238, 232, 0.14);
  padding: 22px;
  text-align: left;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 212, 255, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(13, 24, 52, 0.9), rgba(8, 14, 32, 0.86));
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pillar-card:nth-child(2) { background: radial-gradient(circle at 78% 12%, rgba(87, 135, 255, 0.18), transparent 28%), linear-gradient(145deg, rgba(13, 24, 52, 0.9), rgba(8, 14, 32, 0.86)); }
.pillar-card:nth-child(3) { background: radial-gradient(circle at 78% 12%, rgba(168, 136, 255, 0.18), transparent 28%), linear-gradient(145deg, rgba(13, 24, 52, 0.9), rgba(8, 14, 32, 0.86)); }
.pillar-card:nth-child(4) { background: radial-gradient(circle at 78% 12%, rgba(242, 180, 87, 0.18), transparent 28%), linear-gradient(145deg, rgba(13, 24, 52, 0.9), rgba(8, 14, 32, 0.86)); }
.pillar-card:nth-child(5) { background: radial-gradient(circle at 78% 12%, rgba(85, 216, 141, 0.18), transparent 28%), linear-gradient(145deg, rgba(13, 24, 52, 0.9), rgba(8, 14, 32, 0.86)); }

.pillar-card:hover,
.pillar-card.active {
  transform: translateY(-6px);
  border-color: rgba(242, 180, 87, 0.32);
  box-shadow: var(--shadow-bright);
}

.pillar-card h3 {
  margin-top: 62px;
}

.pillar-card i {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #dceae6;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.intake-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.venture-intake {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(220, 238, 232, 0.14);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(145deg, rgba(13, 24, 52, 0.9), rgba(8, 14, 32, 0.86));
  box-shadow: var(--shadow);
}

.intake-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.intake-progress span,
.world-flow span,
fieldset label {
  border: 1px solid rgba(220, 238, 232, 0.14);
  border-radius: 999px;
  padding: 8px 10px;
  color: #dceae6;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 800;
}

.intake-progress .active {
  border-color: rgba(242, 180, 87, 0.4);
  color: var(--gold-2);
}

.brief-preview {
  border: 1px solid rgba(242, 180, 87, 0.22);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 16%, rgba(242, 180, 87, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.brief-preview span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-preview strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 23px);
}

.brief-preview p {
  margin-bottom: 12px;
}

.brief-preview ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #dceae6;
  font-size: 13px;
  line-height: 1.45;
}

label,
legend {
  color: #dceae6;
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(220, 238, 232, 0.16);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

select {
  color: #061020;
  background: #eef7f3;
}

fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 0;
  margin: 0;
  padding: 0;
}

fieldset legend {
  flex-basis: 100%;
  margin-bottom: 2px;
}

fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

fieldset input {
  width: auto;
  margin: 0;
}

fieldset label:has(input:checked) {
  border-color: rgba(242, 180, 87, 0.48);
  color: var(--gold-2);
  background: rgba(242, 180, 87, 0.12);
  box-shadow: 0 0 18px rgba(242, 180, 87, 0.12);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-note {
  margin: -2px 0 0;
  font-size: 12px;
}

.lifecycle-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  position: relative;
}

.lifecycle-track article {
  min-height: 220px;
  border: 1px solid rgba(220, 238, 232, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(13, 24, 52, 0.84), rgba(8, 14, 32, 0.78));
  box-shadow: var(--shadow);
}

.world-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(2, 4, 12, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.world-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.world-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--world-origin-x, 50%) var(--world-origin-y, 50%), rgba(242, 180, 87, 0.24), transparent 28%),
    rgba(2, 4, 12, 0.72);
  backdrop-filter: blur(16px);
}

.world-panel {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  border: 1px solid rgba(220, 238, 232, 0.16);
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 212, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(13, 24, 52, 0.98), rgba(5, 8, 21, 0.96));
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.72);
  transform: translateY(18px) scale(0.99);
  transition: transform 420ms cubic-bezier(.16, 1, .3, 1);
}

.world-overlay.open .world-panel {
  transform: translateY(0) scale(1);
}

.world-scroll {
  height: 100%;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 76px);
}

.world-close {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 6;
  border: 1px solid rgba(220, 238, 232, 0.18);
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(5, 8, 21, 0.82);
  backdrop-filter: blur(18px);
}

.world-hero {
  min-height: min(820px, calc(100vh - 56px));
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.9fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
}

.world-copy h2 {
  max-width: 11ch;
  font-size: clamp(52px, 7vw, 116px);
}

.world-copy p {
  max-width: 760px;
  font-size: clamp(16px, 1.6vw, 21px);
}

.world-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.world-visual {
  min-height: 560px;
  border: 1px solid rgba(220, 238, 232, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 212, 255, 0.18), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.world-visual::before,
.world-visual::after,
.device-card {
  content: "";
  position: absolute;
}

.world-visual::before,
.world-visual::after {
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 999px;
  animation: rotate 18s linear infinite;
}

.world-visual::before {
  inset: 18%;
  transform: rotateX(64deg) rotateZ(12deg);
}

.world-visual::after {
  inset: 30%;
  border-color: rgba(242, 180, 87, 0.28);
  animation-duration: 24s;
  animation-direction: reverse;
}

.world-visual.apps {
  background:
    radial-gradient(circle at 55% 42%, rgba(87, 135, 255, 0.25), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.world-visual.ai {
  background:
    radial-gradient(circle at 52% 42%, rgba(168, 136, 255, 0.25), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.world-visual.content {
  background:
    radial-gradient(circle at 52% 42%, rgba(242, 180, 87, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.world-visual.supply {
  background:
    radial-gradient(circle at 52% 42%, rgba(85, 216, 141, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.device-card {
  border: 1px solid rgba(220, 238, 232, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 80% 10%, rgba(0, 212, 255, 0.22), transparent 28%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
  animation: settleIn 900ms cubic-bezier(.16, 1, .3, 1) both;
}

.device-card::before,
.device-card::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: rgba(238, 247, 243, 0.12);
}

.device-card::before {
  left: 18px;
  top: 18px;
  width: 42%;
  height: 10px;
  background: var(--gold);
}

.device-card::after {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 58px;
  border: 1px solid rgba(220, 238, 232, 0.16);
}

.device-card.browser {
  inset: 12% 9% auto auto;
  width: 68%;
  height: 54%;
}

.device-card.phone {
  left: 10%;
  bottom: 9%;
  width: 30%;
  height: 54%;
  border-radius: 26px;
  animation-delay: 90ms;
}

.device-card.dashboard {
  right: 8%;
  bottom: 12%;
  width: 52%;
  height: 34%;
  animation-delay: 180ms;
}

.device-card.graph {
  left: 12%;
  top: 16%;
  width: 76%;
  height: 70%;
  clip-path: polygon(0 8%, 100% 0, 96% 88%, 10% 100%);
}

.world-section {
  margin-top: clamp(34px, 6vw, 84px);
}

.world-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 16px;
}

.world-section-head h3 {
  max-width: 18ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.96;
}

.world-artifacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.world-artifacts article,
.world-gallery article {
  border: 1px solid rgba(220, 238, 232, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.26);
}

.world-artifacts article {
  min-height: 390px;
  padding: 14px;
}

.world-artifacts .artifact-mock {
  height: 180px;
  margin-bottom: 14px;
}

.world-artifacts span,
.world-gallery span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.world-artifacts strong,
.world-gallery strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--ink);
}

.world-artifacts p {
  min-height: 58px;
}

.world-artifacts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.world-artifacts li {
  border: 1px solid rgba(220, 238, 232, 0.14);
  border-radius: 999px;
  padding: 6px 8px;
  color: #dceae6;
  background: rgba(255, 255, 255, 0.055);
  font-size: 11px;
  font-weight: 800;
}

.world-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.world-gallery article {
  min-height: 190px;
  padding: 14px;
}

.world-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  counter-reset: flow;
}

.world-flow span {
  display: grid;
  align-content: start;
  min-height: 142px;
  border-radius: 8px;
  padding: 14px;
  white-space: normal;
}

.world-flow span::before {
  counter-increment: flow;
  content: "0" counter(flow);
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
}

.world-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(38px, 6vw, 90px);
  border: 1px solid rgba(242, 180, 87, 0.24);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 36px);
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 180, 87, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.055);
}

.world-cta h3 {
  max-width: 20ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.96;
}

.world-transition-card {
  position: fixed;
  z-index: 90;
  overflow: hidden;
  border: 1px solid rgba(242, 180, 87, 0.34);
  border-radius: 8px;
  padding: 22px;
  color: var(--ink);
  background: linear-gradient(145deg, rgba(13, 24, 52, 0.98), rgba(8, 14, 32, 0.94));
  box-shadow: 0 44px 140px rgba(0, 0, 0, 0.72);
  transition:
    left 760ms cubic-bezier(.16, 1, .3, 1),
    top 760ms cubic-bezier(.16, 1, .3, 1),
    width 760ms cubic-bezier(.16, 1, .3, 1),
    height 760ms cubic-bezier(.16, 1, .3, 1),
    border-radius 760ms cubic-bezier(.16, 1, .3, 1),
    opacity 240ms ease;
}

.world-transition-card.expand {
  left: 0 !important;
  top: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0;
}

.world-transition-card h3 {
  margin-top: 8vh;
  max-width: 11ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.9;
}

.world-transition-card span {
  color: var(--gold);
  font-weight: 900;
}

.world-transition-card p {
  max-width: 34ch;
  margin-top: 18px;
  color: #dceae6;
  font-weight: 800;
}

body.world-open {
  overflow: hidden;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1500px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px clamp(16px, 4vw, 48px) 44px;
  color: var(--muted);
}

footer strong {
  display: block;
  color: var(--ink);
}

footer a {
  color: var(--gold-2);
  font-weight: 900;
  text-decoration: none;
}

/* ReactBits-inspired Border Glow and Spotlight adaptations for static HTML. */
.rb-border-glow {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 22;
  --color-sensitivity: 44;
  --glow-padding: 30px;
  --cone-spread: 24;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.rb-border-glow::before,
.rb-border-glow::after,
.rb-border-glow > .edge-light {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.rb-border-glow::before {
  z-index: -1;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(7, 13, 31, 0.98) 0 100%) padding-box,
    radial-gradient(at 80% 55%, rgba(0, 212, 255, 0.95), transparent 48%) border-box,
    radial-gradient(at 69% 34%, rgba(242, 180, 87, 0.9), transparent 50%) border-box,
    radial-gradient(at 8% 6%, rgba(85, 216, 141, 0.82), transparent 48%) border-box,
    linear-gradient(135deg, rgba(0, 212, 255, 0.7), rgba(242, 180, 87, 0.62)) border-box;
  mask-image:
    conic-gradient(
      from var(--cursor-angle) at center,
      black calc(var(--cone-spread) * 1%),
      transparent calc((var(--cone-spread) + 14) * 1%),
      transparent calc((100 - var(--cone-spread) - 14) * 1%),
      black calc((100 - var(--cone-spread)) * 1%)
    );
  opacity: max(0, calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity))));
}

.rb-border-glow::after {
  z-index: 0;
  background:
    radial-gradient(at 80% 55%, rgba(0, 212, 255, 0.46), transparent 48%),
    radial-gradient(at 22% 20%, rgba(242, 180, 87, 0.38), transparent 52%);
  mask-image: radial-gradient(ellipse at 50% 50%, black 34%, transparent 68%);
  opacity: max(0, calc(0.24 * (var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity))));
  mix-blend-mode: soft-light;
}

.rb-border-glow > :not(.edge-light) {
  position: relative;
  z-index: 1;
}

.rb-border-glow > .edge-light {
  display: block;
  inset: calc(var(--glow-padding) * -1);
  z-index: 2;
  mask-image: conic-gradient(from var(--cursor-angle) at center, black 2%, transparent 10%, transparent 90%, black 98%);
  opacity: max(0, calc((var(--edge-proximity) - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity))));
  mix-blend-mode: plus-lighter;
}

.rb-border-glow > .edge-light::before {
  content: "";
  position: absolute;
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(0, 212, 255, 0.78),
    inset 0 0 24px rgba(0, 212, 255, 0.18),
    0 0 22px rgba(0, 212, 255, 0.22),
    0 0 48px rgba(242, 180, 87, 0.14);
}

.spotlight {
  --spot-x: 50%;
  --spot-y: 50%;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(13, 24, 52, 0.9), rgba(8, 14, 32, 0.86));
}

@keyframes floatNode {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes rotate {
  to { rotate: 360deg; }
}

@keyframes cinemaDrift {
  from { transform: scale(1.03) translate3d(-1.5%, -1%, 0); }
  to { transform: scale(1.1) translate3d(1.5%, 1%, 0); }
}

@keyframes settleIn {
  from { opacity: 0; transform: translate3d(0, 22px, 0) rotate(-2deg); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(0deg); }
}

@media (max-width: 1200px) {
  .hero-section,
  .intake-section,
  .section-head.split,
  .world-hero,
  .world-section-head {
    grid-template-columns: 1fr;
  }

  .venture-orbit {
    min-height: 560px;
  }

  .pillar-grid,
  .proof-wall,
  .lifecycle-track,
  .world-artifacts,
  .world-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .film-strip {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .film-frame.large {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(52px, 17vw, 72px);
  }

  h2 {
    max-width: 11ch;
  }

  .hero-section,
  .section-band {
    padding-inline: 14px;
  }

  .venture-orbit {
    min-height: 380px;
  }

  .world-scroll {
    padding: 24px 14px 46px;
  }

  .world-hero {
    min-height: auto;
    padding-top: 36px;
  }

  .world-visual {
    min-height: 390px;
  }

  .orbit-node {
    width: 74px;
    font-size: 11px;
  }

  .pillar-grid,
  .proof-wall,
  .lifecycle-track,
  .field-grid,
  .world-gallery,
  .world-artifacts,
  .world-flow {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 250px;
  }

  .film-frame,
  .film-frame.large {
    min-height: 340px;
  }

  .proof-card {
    min-height: 360px;
  }

  .world-copy h2 {
    font-size: clamp(46px, 14vw, 70px);
  }

  .world-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .orbit-node,
  .world-visual::before,
  .world-visual::after,
  .film-frame img,
  .device-card {
    animation: none;
  }

  .world-panel,
  .world-transition-card {
    transition-duration: 1ms;
  }

  .rb-border-glow::before,
  .rb-border-glow::after,
  .rb-border-glow > .edge-light {
    display: none;
  }
}
