﻿:root {
  color-scheme: dark;
  --ink: #f7f3ea;
  --muted: rgba(247, 243, 234, 0.7);
  --faint: rgba(247, 243, 234, 0.46);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --glass: rgba(255, 255, 255, 0.075);
  --glass-deep: rgba(6, 7, 9, 0.58);
  --champagne: #d9c89c;
  --platinum: #f0ede5;
  --neon-cyan: #bceff;
  --neon-gold: #d9c89c;
  --ember: #ff8f70;
  --violet: #9d7cff;
  --black: #050507;
  --max: none;
  --accent-glow: rgba(188, 239, 255, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(188, 239, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(217, 200, 156, 0.12) 0%, transparent 50%),
    linear-gradient(140deg, #050608 0%, #0a0b12 50%, #1a1610 100%);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

/* Base Grain & High-Freq Grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
    linear-gradient(rgba(188, 239, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 239, 255, 0.02) 1px, transparent 1px);
  background-size: 100px 100px, 40px 40px, 40px 40px;
  opacity: 0.4;
  pointer-events: none;
  z-index: -10;
  mix-blend-mode: overlay;
}

/* Interesting Links */
a {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

a:not(.brand):not(.primary-button):not(.secondary-button)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

a:not(.brand):not(.primary-button):not(.secondary-button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

img {
  display: block;
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
}

h1 {
  max-width: 880px;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 0.95;
}

h3 {
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 0.98;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(188, 239, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.ambient-orbit {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orbit span {
  position: absolute;
  width: clamp(280px, 28vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 200, 156, 0.16);
  border-radius: 50%;
  opacity: 0.42;
  animation: orbitBreathe 10s ease-in-out infinite;
}

.ambient-orbit span:nth-child(1) {
  top: 12%;
  right: 7%;
  box-shadow: inset 0 0 80px rgba(188, 239, 255, 0.06), 0 0 90px rgba(188, 239, 255, 0.05);
}

.ambient-orbit span:nth-child(2) {
  bottom: -14%;
  left: 8%;
  border-color: rgba(188, 239, 255, 0.13);
  animation-delay: -3s;
}

.ambient-orbit span:nth-child(3) {
  top: 34%;
  left: 45%;
  width: clamp(180px, 18vw, 320px);
  border-color: rgba(157, 124, 255, 0.12);
  animation-delay: -6s;
}

.section-shell {
  width: calc(100% - clamp(24px, 4vw, 72px));
  max-width: var(--max);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(780px, calc(100% - 32px));
  max-width: calc(100% - 32px);
  min-height: 64px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(4, 5, 7, 0.62);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(217, 200, 156, 0.04);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  transform: translateX(-50%);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 200, 156, 0.18), transparent);
  opacity: 0.7;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.site-header[data-scrolled="true"] {
  border-color: rgba(217, 200, 156, 0.26);
  background: rgba(4, 5, 7, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.46);
}

.site-header[data-reveal] {
  transform: translateX(-50%) translateY(26px);
}

.site-header[data-reveal].is-visible {
  transform: translateX(-50%) translateY(0);
}

.brand {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 14px 0 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(217, 200, 156, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
    rgba(217, 200, 156, 0.06);
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 13px;
  font-weight: 800;
}

.brand-copy small,
.eyebrow {
  color: var(--faint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin: 0 auto;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.nav-links a,
.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-links a {
  position: relative;
  padding: 0 16px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--accent-glow);
}

.nav-links a.is-current {
  color: var(--neon-gold);
  border: 1px solid rgba(217, 200, 156, 0.2);
}

.bg-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(188, 239, 255, 0.1), transparent);
  height: 1px;
  width: 200%;
  transform: rotate(-35deg);
}

.bg-line-1 { top: 10%; left: -50%; animation: drift 20s linear infinite; }
.bg-line-2 { top: 40%; left: -50%; animation: drift 25s linear infinite reverse; }
.bg-line-3 { top: 70%; left: -50%; animation: drift 30s linear infinite; }

@keyframes drift {
  from { transform: rotate(-35deg) translateX(-10%); }
  to { transform: rotate(-35deg) translateX(10%); }
}

.header-action {
  min-width: 86px;
  margin-left: 6px;
  border: 1px solid rgba(217, 200, 156, 0.38);
  background: rgba(217, 200, 156, 0.1);
  color: var(--platinum);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 96px clamp(16px, 3vw, 46px) 34px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(217, 200, 156, 0.18);
  border-radius: 34px;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(188, 239, 255, 0.05)),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 36px 130px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(2px);
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -28%;
  z-index: -2;
  width: 64vw;
  height: 64vw;
  pointer-events: none;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(188, 239, 255, 0.16), transparent 62%);
  filter: blur(18px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.media-vignette,
.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
}

.media-vignette {
  background:
    radial-gradient(circle at 78% 34%, rgba(188, 239, 255, 0.12), transparent 24rem),
    linear-gradient(90deg, rgba(2, 2, 3, 0.92) 0%, rgba(2, 2, 3, 0.58) 45%, rgba(2, 2, 3, 0.28) 100%),
    linear-gradient(180deg, rgba(2, 2, 3, 0.36) 0%, rgba(2, 2, 3, 0.78) 86%, #050507 100%);
}

.hero-media::after {
  background: radial-gradient(circle at 62% 46%, transparent 0, transparent 14rem, rgba(2, 2, 3, 0.3) 38rem);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 42px);
  min-height: 100vh;
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.hero-tagline {
  color: var(--champagne);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(188, 239, 255, 0.24);
  border-radius: 999px;
  background: rgba(188, 239, 255, 0.07);
  color: rgba(247, 243, 234, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(188, 239, 255, 0.9);
  animation: livePulse 1.8s ease-in-out infinite;
}

.hero-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.66;
}

.hero-metrics {
  display: grid;
  grid-column: 1 / 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.hero-metrics div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(128%);
}

.hero-metrics strong {
  display: block;
  color: var(--platinum);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.9;
}

.hero-metrics span {
  display: block;
  margin-top: 12px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.primary-button,
.secondary-button {
  min-width: 156px;
  padding: 0 20px;
}

.primary-button {
  border: 1px solid rgba(217, 200, 156, 0.45);
  background:
    linear-gradient(135deg, rgba(217, 200, 156, 0.26), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: var(--platinum);
  box-shadow: 0 16px 46px rgba(217, 200, 156, 0.12);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.primary-button:hover,
.secondary-button:hover,
.header-action:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.glass-card,
.product-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(4, 5, 7, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(128%);
  -webkit-backdrop-filter: blur(22px) saturate(128%);
}

.signal-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-self: end;
  min-height: 420px;
  overflow: hidden;
  padding: 18px;
  border-color: rgba(188, 239, 255, 0.24);
  background:
    radial-gradient(circle at 50% 8%, rgba(188, 239, 255, 0.18), transparent 14rem),
    radial-gradient(circle at 74% 62%, rgba(217, 200, 156, 0.1), transparent 13rem),
    linear-gradient(145deg, rgba(4, 10, 14, 0.88), rgba(2, 3, 5, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 60px rgba(188, 239, 255, 0.08);
  animation: skynetFloat 6.2s ease-in-out infinite;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.signal-card::before,
.signal-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.signal-card::before {
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, rgba(188, 239, 255, 0.06) 0 1px, transparent 1px 6px),
    linear-gradient(90deg, transparent, rgba(188, 239, 255, 0.16), transparent);
  opacity: 0.34;
  mix-blend-mode: screen;
  animation: skynetFlicker 4.8s steps(1, end) infinite;
}

.signal-card::after {
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(188, 239, 255, 0.18);
  border-radius: 6px;
  box-shadow: inset 0 0 36px rgba(188, 239, 255, 0.07);
  opacity: 0.82;
}

.skynet-map,
.signal-copy {
  position: relative;
  z-index: 1;
}

.skynet-map {
  display: grid;
  min-height: 228px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(188, 239, 255, 0.14);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 45%, rgba(188, 239, 255, 0.13), transparent 7rem),
    linear-gradient(180deg, rgba(188, 239, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.skynet-map svg {
  width: 112%;
  max-width: none;
  opacity: 0.9;
  transform: translateY(2px);
  animation: skynetMapPhase 7.4s ease-in-out infinite;
}

.map-land {
  fill: rgba(188, 239, 255, 0.045);
  stroke: rgba(188, 239, 255, 0.28);
  stroke-width: 1;
}

.map-grid {
  fill: none;
  stroke: rgba(188, 239, 255, 0.12);
  stroke-width: 0.6;
}

.signal-line {
  fill: none;
  stroke: rgba(188, 239, 255, 0.55);
  stroke-dasharray: 5 9;
  stroke-linecap: round;
  stroke-width: 1.1;
  animation: skynetDash 2.6s linear infinite, skynetPulse 3.8s ease-in-out infinite;
}

.line-two {
  animation-delay: -0.8s;
}

.line-three {
  animation-delay: -1.45s;
}

.map-node circle {
  fill: #bcefff;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1.1;
  transform-origin: var(--x) var(--y);
  animation: nodeBlink 3.6s ease-in-out infinite;
}

.map-node text {
  fill: rgba(247, 243, 234, 0.82);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow: 0 0 9px rgba(188, 239, 255, 0.72);
  animation: labelGhost 4.8s steps(1, end) infinite;
}

.node-ca circle,
.node-tw circle {
  animation-delay: -0.5s;
}

.node-uk circle,
.node-cn circle {
  animation-delay: -1.1s;
}

.node-th circle,
.node-jp circle {
  animation-delay: -1.8s;
}

.map-scanline {
  position: absolute;
  inset: -30% 0 auto;
  height: 58%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(188, 239, 255, 0.2), transparent);
  opacity: 0.65;
  mix-blend-mode: screen;
  animation: scanlineSweep 4.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.signal-copy {
  display: grid;
  gap: 10px;
  align-content: end;
}

.signal-card span {
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.signal-card p {
  color: var(--muted);
  line-height: 1.55;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 22px;
  background: var(--champagne);
  animation: scrollLine 1.8s ease-in-out infinite;
}

.studio,
.products,
.systems,
.contact,.dream-home {
  padding: 110px 0;
}

.section-kicker {
  display: grid;
  gap: 18px;
  max-width: 850px;
  margin-bottom: 38px;
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 16px;
}

.manifesto {
  display: flex;
  min-height: 500px;
  align-items: end;
  padding: clamp(30px, 5vw, 58px);
}

.manifesto p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(19px, 2.5vw, 30px);
  line-height: 1.48;
}

.principles {
  display: grid;
  gap: 16px;
}

.principle {
  display: grid;
  gap: 12px;
  min-height: 156px;
  padding: 26px;
}

.principle span,
.panel-index {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 900;
}

.principle h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 24px;
}

.principle p,
.product-copy p,
.contact-card p {
  color: var(--muted);
  line-height: 1.72;
}

.product-heading {
  margin-left: auto;
  text-align: right;
}

.product-stage {
  display: grid;
  gap: 18px;
}

.product-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.24fr minmax(0, 1fr);
  gap: clamp(24px, 3vw, 56px);
  overflow: hidden;
  min-height: 520px;
  padding: clamp(28px, 5vw, 58px);
}

.product-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(217, 200, 156, 0.14), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(188, 239, 255, 0.1), transparent 26rem);
}

.product-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 22px;
}

.product-copy p {
  max-width: 760px;
  font-size: 17px;
}

.product-copy ul {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.product-copy li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.55;
}

.product-copy li::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 18px rgba(217, 200, 156, 0.8);
  content: "";
}

.cli-panel {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  background:
    linear-gradient(145deg, rgba(188, 239, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(4, 5, 7, 0.42);
}

.terminal-window {
  position: relative;
  z-index: 1;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.terminal-bar {
  display: flex;
  gap: 7px;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(247, 243, 234, 0.36);
}

pre {
  overflow: auto;
  margin: 0;
  padding: 24px;
  color: rgba(247, 243, 234, 0.84);
  font: 700 13px/1.9 "SFMono-Regular", Consolas, monospace;
}

.systems-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
}

.systems-card h2 {
  margin-top: 14px;
}

.system-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.system-list span {
  min-height: 42px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact {
  padding-bottom: 120px;
}

.contact-card {
  display: grid;
  justify-items: start;
  gap: 22px;
  padding: clamp(34px, 6vw, 68px);
  background:
    linear-gradient(135deg, rgba(217, 200, 156, 0.16), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 86% 12%, rgba(188, 239, 255, 0.12), transparent 30rem);
}

.contact-card p {
  max-width: 720px;
  font-size: 17px;
}

/* Artemis polish pass: homepage cinematic depth */
body::after {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% -10%, rgba(217, 200, 156, 0.22), transparent 34rem),
    radial-gradient(circle at 78% 36%, rgba(188, 239, 255, 0.14), transparent 30rem),
    linear-gradient(180deg, transparent 0%, rgba(5, 5, 7, 0.48) 58%, rgba(5, 5, 7, 0.88) 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 86px clamp(18px, 3vw, 48px) 42px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 40px 140px rgba(0, 0, 0, 0.32);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}

.hero::after {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(217, 200, 156, 0.08) 42.2%, transparent 43.4%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
  opacity: 0.52;
  mask-image: radial-gradient(circle at 58% 45%, black, transparent 74%);
}

.hero-copy {
  position: relative;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 7, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 30px 110px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(132%);
  -webkit-backdrop-filter: blur(18px) saturate(132%);
}

.hero-copy::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 200, 156, 0.74), transparent);
}

.hero-copy h1 {
  max-width: 980px;
  letter-spacing: -0.055em;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.46), 0 0 34px rgba(217, 200, 156, 0.11);
}

.hero-lede {
  max-width: 780px;
}

.eyebrow {
  color: rgba(217, 200, 156, 0.86);
  text-shadow: 0 0 22px rgba(217, 200, 156, 0.18);
}

.primary-button,
.secondary-button,
.header-action {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 58px rgba(0, 0, 0, 0.18);
}

.primary-button::before,
.secondary-button::before,
.header-action::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.24) 48%, transparent 66%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 520ms ease, opacity 220ms ease;
}

.primary-button:hover::before,
.secondary-button:hover::before,
.header-action:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.glass-card,
.product-panel,
.contact-card {
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 34px 110px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(217, 200, 156, 0.025);
}

.signal-card {
  border-radius: 24px;
  transform-style: preserve-3d;
}

.signal-card::after,
.skynet-map {
  border-radius: 18px;
}

.studio,
.products,
.systems,
.contact {
  position: relative;
}

.studio::before,
.products::before,
.systems::before,
.contact::before {
  position: absolute;
  top: 26px;
  right: clamp(18px, 4vw, 72px);
  left: clamp(18px, 4vw, 72px);
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 200, 156, 0.28), rgba(188, 239, 255, 0.18), transparent);
}

.principle,
.system-list span {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.principle:hover,
.system-list span:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 200, 156, 0.34);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.product-panel::after {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%, rgba(188, 239, 255, 0.045) 72%, transparent);
  mask-image: linear-gradient(black, transparent 76%);
}

.bragi-card {
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

@media (max-width: 860px) {
  .hero::before {
    inset: 78px 12px 28px;
    border-radius: 24px;
  }

  .hero-copy {
    padding: 24px;
    border-radius: 22px;
  }
}

[data-reveal] {
  opacity: 1; /* Changed from 0 to 1 to ensure visibility */
  transform: translateY(26px);
  transition: opacity 1200ms cubic-bezier(0.19, 1, 0.22, 1), transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(-24px);
  }
  100% {
    transform: translateY(58px);
  }
}

@keyframes orbitBreathe {
  0%, 100% {
    opacity: 0.24;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.52;
    transform: scale(1.08) rotate(8deg);
  }
}

@keyframes livePulse {
  0%, 100% {
    opacity: 0.62;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes skynetFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes skynetFlicker {
  0%, 100% { opacity: 0.22; }
  8% { opacity: 0.46; }
  11% { opacity: 0.14; }
  18% { opacity: 0.38; }
  54% { opacity: 0.18; }
  58% { opacity: 0.5; }
  62% { opacity: 0.24; }
  86% { opacity: 0.42; }
}

@keyframes skynetMapPhase {
  0%, 100% {
    opacity: 0.72;
    filter: hue-rotate(0deg) brightness(0.9);
    transform: translate3d(0, 3px, 0) scale(1);
  }
  14% {
    opacity: 1;
    filter: hue-rotate(-10deg) brightness(1.16);
  }
  39% {
    opacity: 0.5;
    transform: translate3d(-3px, 1px, 0) scale(1.012);
  }
  44% {
    opacity: 0.95;
    transform: translate3d(2px, 3px, 0) scale(1.006);
  }
  72% {
    opacity: 0.64;
    filter: hue-rotate(8deg) brightness(0.95);
  }
}

@keyframes skynetDash {
  to {
    stroke-dashoffset: -56;
  }
}

@keyframes skynetPulse {
  0%, 100% { opacity: 0.34; }
  50% { opacity: 1; }
}

@keyframes nodeBlink {
  0%, 100% {
    opacity: 0.62;
    r: 3.4px;
  }
  42% {
    opacity: 1;
    r: 5.4px;
  }
  48% {
    opacity: 0.18;
    r: 3px;
  }
  55% {
    opacity: 1;
    r: 4.8px;
  }
}

@keyframes labelGhost {
  0%, 100% { opacity: 0.58; }
  16% { opacity: 1; }
  17% { opacity: 0.18; }
  18% { opacity: 0.92; }
  63% { opacity: 0.4; }
  66% { opacity: 1; }
}

@keyframes scanlineSweep {
  0% {
    transform: translateY(-90%);
    opacity: 0;
  }
  18%, 72% {
    opacity: 0.72;
  }
  100% {
    transform: translateY(245%);
    opacity: 0;
  }
}

.section-lede {
  max-width: 760px;
  margin-left: auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.product-stage-featured {
  gap: 22px;
}

.products.section-shell {
  width: 100%;
  max-width: none;
  padding-right: clamp(16px, 2vw, 36px);
  padding-left: clamp(16px, 2vw, 36px);
}

.products .product-heading {
  width: min(100%, 1680px);
  margin-right: auto;
  margin-left: auto;
}

.products .product-stage-featured,
.products .product-panel {
  width: 100%;
}

.artemis-panel {
  grid-template-columns: minmax(260px, 0.46fr) minmax(360px, 0.72fr) minmax(520px, 1fr);
  min-height: 650px;
  border-color: rgba(188, 239, 255, 0.28);
  background:
    radial-gradient(circle at 18% 42%, rgba(188, 239, 255, 0.22), transparent 19rem),
    radial-gradient(circle at 70% 8%, rgba(217, 200, 156, 0.15), transparent 24rem),
    linear-gradient(145deg, rgba(188, 239, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(4, 5, 7, 0.5);
}

.artemis-panel::after {
  position: absolute;
  inset: auto -12% -28% 26%;
  height: 340px;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse, rgba(188, 239, 255, 0.18), transparent 64%);
  filter: blur(12px);
}

.artemis-orb {
  position: relative;
  z-index: 1;
  align-self: center;
  width: clamp(260px, 18vw, 420px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.orb-ring,
.orb-core,
.orb-chip {
  position: absolute;
  display: grid;
  place-items: center;
}

.orb-ring {
  inset: 8%;
  border: 1px solid rgba(188, 239, 255, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 38px rgba(188, 239, 255, 0.08), 0 0 80px rgba(188, 239, 255, 0.08);
}

.ring-one {
  transform: rotate(10deg) scaleX(0.86);
}

.ring-two {
  border-color: rgba(217, 200, 156, 0.34);
  transform: rotate(-28deg) scaleY(0.72);
}

.orb-core {
  inset: 23%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 28%, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(145deg, rgba(188, 239, 255, 0.28), rgba(217, 200, 156, 0.12)),
    rgba(5, 5, 7, 0.7);
  color: var(--platinum);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(86px, 10vw, 142px);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 30px 120px rgba(188, 239, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.orb-chip {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 5, 7, 0.76);
  color: var(--platinum);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.chip-one {
  top: 12%;
  right: 0;
}

.chip-two {
  bottom: 16%;
  left: -4%;
}

.chip-three {
  right: 2%;
  bottom: 4%;
}

.artemis-terminal {
  width: 100%;
  transform: translateX(-2.2vw) rotate(-1.5deg);
}

.artemis-copy {
  align-content: center;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.product-actions .primary-button,
.product-actions .secondary-button {
  min-width: 144px;
}

.artemis-page {
  overflow: hidden;
}

.artemis-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 100vh;
  padding: 170px 0 100px;
}

.artemis-hero-copy {
  display: grid;
  gap: 26px;
}

.artemis-hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.artemis-orb-large {
  width: clamp(340px, 28vw, 560px);
  transform: translateX(28px);
}

.artemis-section {
  padding: 100px 0;
}

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

.capability-card {
  display: grid;
  gap: 16px;
  min-height: 320px;
  align-content: end;
  padding: 26px;
}

.capability-card span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 900;
}

.capability-card h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 25px;
  line-height: 1.05;
}

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

.workflow-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  background:
    radial-gradient(circle at 12% 22%, rgba(188, 239, 255, 0.13), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(4, 5, 7, 0.38);
}

.workflow-list {
  display: grid;
  gap: 10px;
}

.workflow-list span {
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.install-card {
  gap: 24px;
}

.install-terminal {
  width: min(100%, 720px);
}

@media (min-width: 1440px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) 380px;
  }

  .product-panel {
    min-height: clamp(560px, 36vw, 720px);
  }

  .artemis-panel {
    min-height: clamp(680px, 42vw, 820px);
  }

  .product-copy p,
  .section-lede,
  .contact-card p {
    font-size: clamp(17px, 1.05vw, 20px);
  }
}

@media (min-width: 1800px) {
  .product-panel {
    padding: clamp(58px, 4vw, 82px);
  }

  .artemis-panel {
    grid-template-columns: minmax(340px, 0.5fr) minmax(460px, 0.75fr) minmax(680px, 1fr);
  }

  pre {
    font-size: 15px;
  }
}

@media (max-width: 940px) {
  .site-header {
    top: 10px;
    width: min(640px, calc(100% - 20px));
    gap: 8px;
    border-radius: 24px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 5px 8px;
  }

  .nav-links a {
    flex: 0 1 auto;
    padding: 0 8px;
  }

  .hero-content,
  .artemis-hero,
  .studio-layout,
  .systems-card,
  .workflow-panel,
  .product-panel,
  .cli-panel,
  .artemis-panel {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-lede {
    margin-left: 0;
  }

  .artemis-terminal {
    transform: none;
  }

  .artemis-orb-large {
    transform: none;
  }

  .hero-content {
    padding-top: 180px;
  }

  .hero-metrics {
    grid-column: auto;
  }

  .signal-card {
    max-width: 360px;
    grid-column: auto;
    grid-row: auto;
  }

  .product-heading {
    margin-left: 0;
    text-align: left;
  }

  .manifesto {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 0;
    padding: 6px;
    border-radius: 20px;
  }

  .brand {
    display: none;
  }

  .nav-links {
    gap: 4px;
    padding: 4px;
  }

  .nav-links a {
    flex: 1 1 calc(33.333% - 4px);
    min-height: 34px;
    padding: 0 6px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .header-action {
    min-width: 74px;
  }

  h1 {
    font-size: 56px;
  }

  .hero-actions,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: auto;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .artemis-orb {
    width: min(100%, 280px);
  }

  .orb-chip {
    font-size: 9px;
  }

  .studio,
  .products,
  .systems,
  .contact {
    padding: 78px 0;
  }
}

/* Homepage product refinement: Artemis cosmos logo + flagship product cards */
.artemis-panel {
  grid-template-columns: minmax(300px, 0.58fr) minmax(340px, 0.62fr) minmax(520px, 1fr);
  min-height: 720px;
  border-color: rgba(188, 239, 255, 0.34);
  background: radial-gradient(circle at 14% 44%, rgba(116, 231, 255, 0.28), transparent 18rem), radial-gradient(circle at 34% 16%, rgba(106, 69, 255, 0.28), transparent 20rem), radial-gradient(circle at 78% 10%, rgba(217, 200, 156, 0.16), transparent 25rem), linear-gradient(145deg, rgba(9, 14, 24, 0.92), rgba(3, 4, 8, 0.58)), rgba(4, 5, 7, 0.62);
  box-shadow: 0 42px 140px rgba(0, 0, 0, 0.46), inset 0 0 0 1px rgba(188, 239, 255, 0.08);
}

.artemis-panel::after {
  inset: auto -16% -30% 12%;
  height: 430px;
  background: radial-gradient(ellipse at 28% 42%, rgba(116, 231, 255, 0.2), transparent 58%), radial-gradient(ellipse at 66% 58%, rgba(217, 200, 156, 0.14), transparent 62%);
  filter: blur(14px);
}

.liquid-cosmos-logo {
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(188, 239, 255, 0.38);
  border-radius: 42% 58% 48% 52% / 58% 38% 62% 42%;
  background: radial-gradient(circle at 50% 50%, #000 0 16%, transparent 17%), radial-gradient(circle at 42% 33%, rgba(255, 255, 255, 0.9), transparent 8%), conic-gradient(from 215deg at 50% 50%, #02030a, #0b1c35, #60e7ff, #f1d99a, #7b4dff, #03040b, #02030a);
  box-shadow: 0 0 0 1px rgba(188, 239, 255, 0.16), 0 30px 120px rgba(83, 208, 255, 0.28), 0 0 180px rgba(89, 60, 255, 0.24), inset 0 0 42px rgba(255, 255, 255, 0.12), inset 0 0 90px rgba(0, 0, 0, 0.86);
  animation: liquidMorph 8s ease-in-out infinite;
}

.liquid-cosmos-logo::before,
.liquid-cosmos-logo::after {
  position: absolute;
  inset: -22%;
  content: "";
  border-radius: inherit;
  mix-blend-mode: screen;
}

.liquid-cosmos-logo::before {
  background: conic-gradient(from 40deg, transparent 0 18%, rgba(188, 239, 255, 0.72), transparent 34% 48%, rgba(217, 200, 156, 0.62), transparent 68%), radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.5), transparent 10%);
  filter: blur(10px);
  animation: accretionSpin 11s linear infinite;
}

.liquid-cosmos-logo::after {
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 50% 50%, #000 0 23%, rgba(0, 0, 0, 0.72) 24% 31%, transparent 32%), conic-gradient(from 110deg, transparent, rgba(116, 231, 255, 0.64), transparent, rgba(217, 200, 156, 0.5), transparent);
  filter: blur(1px) saturate(1.35);
  mix-blend-mode: plus-lighter;
  animation: accretionSpin 5.5s linear infinite reverse;
}

.logo-singularity {
  position: absolute;
  inset: 30%;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle, #000 0 48%, rgba(0, 0, 0, 0.88) 56%, transparent 70%);
  box-shadow: 0 0 24px rgba(0, 0, 0, 1), 0 0 54px rgba(188, 239, 255, 0.28);
}

.logo-letter {
  position: relative;
  z-index: 3;
  color: rgba(247, 243, 234, 0.86);
  text-shadow: 0 0 22px rgba(188, 239, 255, 0.82), 0 0 42px rgba(217, 200, 156, 0.34);
  transform: translateY(-0.02em);
}

.website-panel {
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  min-height: 440px;
  border-color: rgba(217, 200, 156, 0.32);
  background: radial-gradient(circle at 18% 28%, rgba(217, 200, 156, 0.22), transparent 18rem), radial-gradient(circle at 88% 8%, rgba(188, 239, 255, 0.12), transparent 24rem), linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028)), rgba(5, 5, 7, 0.54);
}

.website-panel .panel-index {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(160px, 18vw, 280px);
  aspect-ratio: 1;
  align-self: center;
  border: 1px solid rgba(217, 200, 156, 0.28);
  border-radius: 38% 62% 58% 42% / 46% 34% 66% 54%;
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.28), transparent 12%), conic-gradient(from 150deg, rgba(217, 200, 156, 0.12), rgba(188, 239, 255, 0.22), rgba(255, 255, 255, 0.04), rgba(217, 200, 156, 0.18));
  color: rgba(247, 243, 234, 0.82);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(90px, 11vw, 190px);
  box-shadow: 0 30px 120px rgba(217, 200, 156, 0.14), inset 0 0 70px rgba(0, 0, 0, 0.48);
}

@keyframes accretionSpin {
  to { transform: rotate(1turn); }
}

@keyframes liquidMorph {
  0%, 100% { border-radius: 42% 58% 48% 52% / 58% 38% 62% 42%; transform: scale(1) rotate(0deg); }
  50% { border-radius: 58% 42% 62% 38% / 42% 60% 40% 58%; transform: scale(1.035) rotate(2deg); }
}

/* Product 01 / Website: Artemis Bragi Bot cinematic interactive showcase */
.bragi-showcase {
  grid-template-columns: 1fr;
  gap: clamp(22px, 2.4vw, 36px);
  min-height: auto;
  padding: clamp(22px, 2.8vw, 48px);
  border-color: rgba(217, 200, 156, 0.38);
  background:
    radial-gradient(circle at 16% 12%, rgba(217, 200, 156, 0.24), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(188, 239, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 56% 96%, rgba(123, 77, 255, 0.15), transparent 34rem),
    linear-gradient(135deg, rgba(8, 10, 15, 0.98), rgba(3, 4, 8, 0.8)),
    rgba(5, 5, 7, 0.64);
  overflow: hidden;
}

.bragi-showcase::before {
  background:
    linear-gradient(105deg, rgba(217, 200, 156, 0.18), transparent 30%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 92px);
}

.bragi-copy {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(22px, 3vw, 56px);
  min-height: auto;
  padding: clamp(4px, 0.8vw, 12px);
}

.bragi-copy .eyebrow {
  margin-bottom: clamp(18px, 2vw, 28px);
}

.bragi-copy h3 {
  max-width: 900px;
  font-size: clamp(40px, 4.8vw, 86px);
}

.bragi-copy p:not(.eyebrow),
.bragi-copy ul {
  max-width: 760px;
  justify-self: end;
}

.bragi-copy ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
}

.bragi-copy li {
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.bragi-copy li::before {
  margin-top: 7px;
}

.bragi-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 20px);
  min-height: 0;
  perspective: 1400px;
}

.bragi-card {
  position: relative;
  display: grid;
  align-items: end;
  min-width: 0;
  min-height: clamp(520px, 34vw, 720px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 360ms cubic-bezier(0.19, 1, 0.22, 1), border-color 260ms ease, box-shadow 260ms ease, opacity 260ms ease, filter 260ms ease;
  will-change: transform;
}

.bragi-gallery:has(.bragi-card:hover) .bragi-card:not(:hover),
.bragi-gallery:has(.bragi-card:focus-visible) .bragi-card:not(:focus-visible),
.bragi-gallery:has(.bragi-card.is-active) .bragi-card:not(.is-active):not(:hover):not(:focus-visible) {
  opacity: 0.62;
  filter: saturate(0.82) brightness(0.86);
}

.bragi-card:focus-visible {
  outline: 2px solid rgba(188, 239, 255, 0.72);
  outline-offset: 4px;
}

.bragi-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.08) brightness(0.96);
  transition: transform 760ms cubic-bezier(0.19, 1, 0.22, 1), filter 320ms ease;
}

.bragi-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.26) 40%, rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 50% 10%, rgba(188, 239, 255, 0.18), transparent 18rem);
  transition: opacity 320ms ease, background 320ms ease;
}

.bragi-card::after {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  opacity: 0.72;
  box-shadow: inset 0 0 0 1px rgba(217, 200, 156, 0);
  transition: opacity 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.bragi-card:hover,
.bragi-card.is-active,
.bragi-card:focus-visible {
  z-index: 4;
  border-color: rgba(217, 200, 156, 0.52);
  box-shadow: 0 44px 140px rgba(0, 0, 0, 0.52), 0 0 90px rgba(188, 239, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translate3d(0, -10px, 0) scale(1.018);
}

.bragi-card:hover img,
.bragi-card.is-active img,
.bragi-card:focus-visible img {
  transform: scale(1.085);
  filter: saturate(1.18) contrast(1.12) brightness(1.05);
}

.bragi-card:hover::after,
.bragi-card.is-active::after,
.bragi-card:focus-visible::after {
  border-color: rgba(217, 200, 156, 0.3);
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(217, 200, 156, 0.08), 0 0 36px rgba(217, 200, 156, 0.08);
}

.bragi-card figcaption {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2vw, 30px);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
  transform: translateY(8px);
  transition: transform 320ms cubic-bezier(0.19, 1, 0.22, 1);
}

.bragi-card:hover figcaption,
.bragi-card.is-active figcaption,
.bragi-card:focus-visible figcaption {
  transform: translateY(0);
}

.bragi-card span {
  color: var(--champagne);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bragi-card strong {
  max-width: 440px;
  color: var(--platinum);
  font-size: clamp(19px, 1.32vw, 27px);
  line-height: 1.04;
}

.bragi-card small {
  max-width: 430px;
  color: rgba(247, 243, 234, 0.68);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .bragi-showcase {
    grid-template-columns: 1fr;
  }

  .bragi-copy {
    grid-template-columns: 1fr;
  }

  .bragi-copy p:not(.eyebrow),
  .bragi-copy ul {
    justify-self: start;
  }

  .bragi-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bragi-card,
  .bragi-card.is-active,
  .bragi-card:hover,
  .bragi-card:focus-visible {
    min-height: clamp(420px, 62vw, 620px);
  }
}

@media (max-width: 640px) {
  .bragi-copy ul {
    grid-template-columns: 1fr;
  }

  .bragi-gallery {
    grid-template-columns: 1fr;
  }

  .bragi-card {
    min-height: 520px;
  }
}

/* ═══════════════════════════════════════════════════
   HERO MANIFESTO REVEAL
═══════════════════════════════════════════════════ */

.hero-reveal-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
}

.hero-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border: 1px solid rgba(217, 200, 156, 0.2);
  border-radius: 999px;
  background: rgba(217, 200, 156, 0.05);
  color: var(--champagne);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 340ms cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
}

.hero-tagline:hover {
  border-color: rgba(217, 200, 156, 0.42);
  background: rgba(217, 200, 156, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(217, 200, 156, 0.08);
}

.tagline-text {
  opacity: 0.88;
}

.tagline-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.hero-tagline:hover .tagline-hint {
  opacity: 1;
  transform: translateY(0);
}

.tagline-hint svg {
  animation: hintBounce 1.6s ease-in-out infinite;
}

.tagline-hint-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 10px rgba(217, 200, 156, 0.7);
  animation: livePulse 2s ease-in-out infinite;
}

/* Expanded state: hide tagline button */
.hero-reveal-wrap.is-expanded .hero-tagline {
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  padding: 0;
  margin: 0;
  border-color: transparent;
  overflow: hidden;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* Manifesto panel */
.hero-manifesto {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 800ms cubic-bezier(0.19, 1, 0.22, 1), opacity 600ms ease;
  width: 100%;
}

.hero-reveal-wrap.is-expanded .hero-manifesto {
  grid-template-rows: 1fr;
  opacity: 1;
}

.hero-manifesto-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.4vw, 28px);
  padding: 0;
}

.hero-reveal-wrap.is-expanded .hero-manifesto-inner {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
  border: 1px solid rgba(217, 200, 156, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(217, 200, 156, 0.08), transparent 18rem),
    radial-gradient(circle at 70% 80%, rgba(188, 239, 255, 0.06), transparent 16rem),
    rgba(5, 5, 7, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 34px 100px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px) saturate(128%);
  -webkit-backdrop-filter: blur(22px) saturate(128%);
}

.manifesto-line {
  max-width: 680px;
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.58;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-reveal-wrap.is-expanded .manifesto-line {
  opacity: 1;
  transform: translateY(0);
}

.hero-reveal-wrap.is-expanded .manifesto-line:nth-child(1) { transition-delay: 200ms; }
.hero-reveal-wrap.is-expanded .manifesto-line:nth-child(2) { transition-delay: 420ms; }
.hero-reveal-wrap.is-expanded .manifesto-line:nth-child(3) { transition-delay: 640ms; }
.hero-reveal-wrap.is-expanded .manifesto-line:nth-child(4) { transition-delay: 860ms; }
.hero-reveal-wrap.is-expanded .manifesto-line:nth-child(5) { transition-delay: 1080ms; }

.manifesto-lead {
  color: var(--platinum);
  font-size: clamp(19px, 2.4vw, 28px);
}

.manifesto-close {
  color: var(--champagne);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.manifesto-collapse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--faint);
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease 1000ms, transform 500ms ease 1000ms, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.hero-reveal-wrap.is-expanded .manifesto-collapse {
  opacity: 1;
  transform: translateY(0);
}

.manifesto-collapse:hover {
  border-color: rgba(217, 200, 156, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--platinum);
}

@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE REDESIGN — spacious, breathing layout
═══════════════════════════════════════════════════ */

.hero-tech-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.tech-coord {
  position: absolute;
  top: 20%;
  left: 5%;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--neon-cyan);
  opacity: 0.4;
  letter-spacing: 0.1em;
}

.tech-coord-br {
  top: unset;
  left: unset;
  bottom: 20%;
  right: 5%;
}

.tech-scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.1;
  animation: scan 8s linear infinite;
}

@keyframes scan {
  0% { transform: translateY(0vh); }
  100% { transform: translateY(100vh); }
}

.hero h1 {
  max-width: 1080px;
  text-align: center;
  margin: 0 auto;
}

.hero .hero-badge-row {
  justify-content: center;
}

.hero .hero-actions {
  justify-content: center;
}

/* ─── Artemis intro section ─── */
.artemis-intro {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
}

.artemis-intro::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 4vw, 72px);
  left: clamp(18px, 4vw, 72px);
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(188, 239, 255, 0.32), rgba(217, 200, 156, 0.22), transparent);
}

.artemis-intro-header {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.artemis-intro-header h2 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--platinum) 40%, var(--champagne) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.artemis-intro-lede {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.62;
}

.artemis-intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(280px, 0.52fr) minmax(200px, 0.32fr);
  gap: clamp(20px, 2.4vw, 36px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.artemis-intro-orb {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.artemis-intro-terminal .terminal-window {
  border-radius: 16px;
}

.artemis-intro-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.cap-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(188, 239, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(188, 239, 255, 0.06), rgba(255, 255, 255, 0.03));
  color: var(--platinum);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.cap-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(188, 239, 255, 0.38);
  background: rgba(188, 239, 255, 0.09);
}

.cap-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(188, 239, 255, 0.8);
  animation: livePulse 2.2s ease-in-out infinite;
}

.artemis-intro-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 3vw, 48px);
  align-items: end;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(188, 239, 255, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 28%, rgba(188, 239, 255, 0.1), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(4, 5, 7, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 30px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.artemis-intro-desc {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

.artemis-intro-footer .product-actions {
  flex-shrink: 0;
}

/* ─── Manifesto band ─── */
.manifesto-band {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0;
}

.manifesto-band::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 4vw, 72px);
  left: clamp(18px, 4vw, 72px);
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 200, 156, 0.24), transparent);
}

.manifesto-band-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.manifesto-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.manifesto-quote p {
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.38;
  font-style: italic;
}

.manifesto-quote p + p {
  margin-top: clamp(16px, 2vw, 28px);
  color: var(--faint);
}

.manifesto-band .signal-card {
  grid-column: auto;
  grid-row: auto;
  max-width: 380px;
  min-height: 380px;
}

/* ─── Responsive: Artemis intro ─── */
@media (max-width: 940px) {
  .artemis-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .artemis-intro-orb {
    max-width: 260px;
  }

  .artemis-intro-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .manifesto-band-shell {
    grid-template-columns: 1fr;
  }

  .manifesto-band .signal-card {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .artemis-intro {
    padding: 64px 0;
  }

  .manifesto-band {
    padding: 48px 0;
  }

  .manifesto-quote p {
    font-size: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Artemis CLI / APP choice modal — site-wide
   ═══════════════════════════════════════════════════════════════ */

.artemis-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.artemis-choice-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.artemis-choice-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 40%, rgba(188, 239, 255, 0.10), transparent 70%),
    rgba(4, 5, 7, 0.74);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.artemis-choice-card {
  position: relative;
  width: min(720px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 38px 36px 32px;
  border: 1px solid rgba(217, 200, 156, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.025)) ,
    linear-gradient(180deg, rgba(20, 18, 16, 0.85), rgba(8, 8, 10, 0.92));
  box-shadow:
    0 30px 120px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(12px) scale(0.98);
  transition: transform 280ms cubic-bezier(.16,1,.3,1);
}

.artemis-choice-modal.is-open .artemis-choice-card {
  transform: translateY(0) scale(1);
}

.artemis-choice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted, #b8b3a6);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.artemis-choice-close:hover {
  color: var(--neon-cyan, #bceffe);
  border-color: rgba(188, 239, 255, 0.35);
  background: rgba(188, 239, 255, 0.08);
}

.artemis-choice-eyebrow {
  margin: 0 0 10px;
  color: var(--faint, #7a7468);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.artemis-choice-title {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--champagne, #d9c89c);
}

.artemis-choice-sub {
  margin: 0 0 26px;
  max-width: 540px;
  color: var(--muted, #b8b3a6);
  font-size: 14px;
  line-height: 1.6;
}

.artemis-choice-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .artemis-choice-grid {
    grid-template-columns: 1fr;
  }
  .artemis-choice-card {
    padding: 28px 22px 24px;
    border-radius: 22px;
  }
}

.artemis-choice-card-link {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 10, 0.55);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.artemis-choice-card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 0% 0%, rgba(217, 200, 156, 0.12), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.artemis-choice-card-link.is-app::before {
  background: radial-gradient(120% 60% at 100% 0%, rgba(188, 239, 255, 0.16), transparent 60%);
}

.artemis-choice-card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 200, 156, 0.42);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(10, 10, 12, 0.65);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.40);
}

.artemis-choice-card-link.is-app:hover {
  border-color: rgba(188, 239, 255, 0.45);
}

.choice-glyph {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217, 200, 156, 0.30);
  border-radius: 14px;
  background: rgba(217, 200, 156, 0.06);
  color: var(--champagne, #d9c89c);
}

.choice-glyph-app {
  border-color: rgba(188, 239, 255, 0.36);
  background: rgba(188, 239, 255, 0.08);
  color: var(--neon-cyan, #bceffe);
}

.choice-meta {
  display: grid;
  gap: 6px;
}

.choice-tag {
  color: var(--faint, #7a7468);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.choice-meta strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--platinum, #f1ece1);
  letter-spacing: -0.005em;
}

.choice-meta p {
  margin: 0;
  color: var(--muted, #b8b3a6);
  font-size: 13px;
  line-height: 1.55;
}

.choice-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne, #d9c89c);
}

.is-app .choice-cta {
  color: var(--neon-cyan, #bceffe);
}

.artemis-choice-foot {
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--faint, #7a7468);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}



/* Chinese / English language system */
body[data-lang="zh"]{font-family:"Inter","Microsoft YaHei UI","PingFang SC","Noto Sans CJK SC",system-ui,sans-serif;letter-spacing:.01em;text-rendering:geometricPrecision}.language-toggle{display:inline-flex;align-items:center;gap:8px;min-height:42px;margin-left:8px;padding:0 13px;border:1px solid rgba(217,200,156,.28);border-radius:999px;background:linear-gradient(135deg,rgba(217,200,156,.16),rgba(188,239,255,.07)),rgba(255,255,255,.055);color:var(--platinum);cursor:pointer;font:inherit;font-size:12px;font-weight:800;letter-spacing:.08em;box-shadow:inset 0 1px 0 rgba(255,255,255,.12),0 12px 34px rgba(0,0,0,.24);transition:transform .18s ease,border-color .18s ease,background .18s ease}.language-toggle:hover{border-color:rgba(188,239,255,.48);background:linear-gradient(135deg,rgba(188,239,255,.18),rgba(217,200,156,.12)),rgba(255,255,255,.08);transform:translateY(-1px)}.language-toggle i{width:1px;height:16px;background:rgba(255,255,255,.22)}.language-toggle strong{color:var(--champagne);font-weight:900}body[data-lang="zh"] h1,body[data-lang="zh"] h2,body[data-lang="zh"] h3,body[data-lang="zh"] .pg-hero-title,body[data-lang="zh"] .glitch-title{font-family:"Microsoft YaHei UI","PingFang SC","Noto Serif CJK SC","Noto Sans CJK SC",system-ui,sans-serif;font-weight:800;letter-spacing:-.055em;line-height:1.04}body[data-lang="zh"] h1{max-width:980px;font-size:clamp(44px,7.2vw,112px)}body[data-lang="zh"] h2{font-size:clamp(34px,5vw,70px);line-height:1.08}body[data-lang="zh"] h3{font-size:clamp(24px,3.2vw,44px);line-height:1.12}body[data-lang="zh"] p,body[data-lang="zh"] li,body[data-lang="zh"] small,body[data-lang="zh"] span{line-height:1.82}body[data-lang="zh"] .eyebrow,body[data-lang="zh"] .nav-links,body[data-lang="zh"] .primary-button,body[data-lang="zh"] .secondary-button,body[data-lang="zh"] .header-action,body[data-lang="zh"] .product-note,body[data-lang="zh"] .signal-strip,body[data-lang="zh"] .cap-pill{letter-spacing:.12em}body[data-lang="zh"] .hero-tagline,body[data-lang="zh"] .manifesto-quote,body[data-lang="zh"] .studio-room-lede,body[data-lang="zh"] .hero-lede,body[data-lang="zh"] .section-lede,body[data-lang="zh"] .contact-sub,body[data-lang="zh"] .api-hero-sub{max-width:980px;font-size:clamp(17px,1.55vw,23px);line-height:1.95;letter-spacing:.025em}body[data-lang="zh"] .manifesto-line,body[data-lang="zh"] .artemis-intro-desc,body[data-lang="zh"] .studio-thesis p,body[data-lang="zh"] .studio-method-card p,body[data-lang="zh"] .studio-principle-card p,body[data-lang="zh"] .product-info p,body[data-lang="zh"] .api-value-text p,body[data-lang="zh"] .api-feat p,body[data-lang="zh"] .workflow-copy{line-height:1.92;letter-spacing:.025em;text-align:justify;text-wrap:pretty}body[data-lang="zh"] .nav-links a{font-size:13px;white-space:nowrap}@media(max-width:860px){.site-header{gap:4px}.language-toggle{min-height:36px;padding:0 10px;font-size:11px}body[data-lang="zh"] h1,body[data-lang="zh"] .pg-hero-title,body[data-lang="zh"] .glitch-title{font-size:clamp(40px,12vw,74px);letter-spacing:-.045em}body[data-lang="zh"] .hero-tagline,body[data-lang="zh"] .manifesto-quote,body[data-lang="zh"] .studio-room-lede,body[data-lang="zh"] .hero-lede,body[data-lang="zh"] .section-lede,body[data-lang="zh"] .contact-sub,body[data-lang="zh"] .api-hero-sub{font-size:16px;line-height:1.86}}


/* Full-screen responsive guard: do not shrink global layout */
html,
body {
  width: 100%;
  min-width: 100%;
  max-width: none;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

main,
section,
.section-shell {
  max-width: none !important;
}

.section-shell {
  width: 100%;
  padding-right: clamp(16px, 4vw, 72px);
  padding-left: clamp(16px, 4vw, 72px);
}

.hero,
.hero-content {
  width: 100%;
  min-height: 100svh;
}

.hero-content {
  padding-right: clamp(16px, 4vw, 72px);
  padding-left: clamp(16px, 4vw, 72px);
}

.hero-content.section-shell {
  padding-right: clamp(16px, 4vw, 72px);
  padding-left: clamp(16px, 4vw, 72px);
}

.artemis-intro-grid,
.manifesto-band-shell,
.product-stage-featured,
.product-panel,
.studio-layout,
.systems-card,
.workflow-panel,
.cli-panel,
.artemis-panel,
.website-panel,
.contact-grid {
  min-width: 0;
}

@media (max-width: 1180px) {
  .artemis-panel,
  .website-panel,
  .product-panel {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .hero-content,
  .hero-content.section-shell {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* Dream Protocol home section */
.dream-home{padding:110px 0}
.dream-home-card{display:grid;grid-template-columns:180px 1fr;gap:40px;align-items:center;padding:48px}
.dream-home-visual{display:flex;align-items:center;justify-content:center}
.dream-pulse-ring{position:relative;width:120px;height:120px}
.dream-pulse-ring span{position:absolute;inset:0;border-radius:50%;border:1px solid rgba(188,239,255,0.3);animation:dream-pulse 3s cubic-bezier(0.19,1,0.22,1) infinite}
.dream-pulse-ring span:nth-child(2){inset:20px;border-color:rgba(188,239,255,0.5);animation-delay:.5s}
.dream-pulse-ring span:nth-child(3){inset:40px;border-color:rgba(188,239,255,0.8);background:rgba(188,239,255,0.1);animation-delay:1s}
@keyframes dream-pulse{0%,100%{transform:scale(1);opacity:.6}50%{transform:scale(1.15);opacity:1}}
.dream-home-content h2{margin-bottom:16px}
.dream-home-content p{color:var(--muted);font-size:15px;line-height:1.7;max-width:560px;margin-bottom:20px}
.dream-home-features{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:24px}
.dream-feature{display:inline-block;padding:5px 14px;border-radius:100px;border:1px solid var(--line);font-size:12px;color:var(--faint);font-family:'JetBrains Mono','Inter',monospace}
@media(max-width:768px){.dream-home-card{grid-template-columns:1fr;text-align:center;padding:32px}.dream-home-visual{order:-1}.dream-home-features{justify-content:center}.dream-home-content p{margin-inline:auto}}
