/* --- 1. DESIGN TOKENS --- */
:root {
  --bg-0: #f7f8fb;
  --bg-1: #f0f1f5;
  --bg-2: #e8eaef;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --stroke: rgba(15, 17, 26, 0.08);
  --stroke-strong: rgba(15, 17, 26, 0.14);
  --accent: #0f1115;
  --accent-soft: #1b1f2a;
  --muted: #6a7280;
  --text: #0b0f18;
  --shadow: 0 8px 18px rgba(12, 15, 26, 0.08);
  --shadow-strong: 0 12px 24px rgba(12, 15, 26, 0.12);
  --font-sans: 'Manrope', 'SF Pro Display', 'Segoe UI', sans-serif;
  --font-mono: 'DM Mono', 'JetBrains Mono', monospace;
  --radius-lg: 0px;
  --radius-md: 0px;
  --blur: 0px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- 2. BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-0);
  animation: none;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.sitedrop {
  --bg-0: #f6f1e9;
  --bg-1: #efe6db;
  --bg-2: #e6d9cc;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --stroke: rgba(18, 13, 8, 0.12);
  --stroke-strong: rgba(18, 13, 8, 0.2);
  --accent: #121212;
  --accent-soft: #1e1a18;
  --muted: #5f5a52;
  --text: #0b0d10;
  --shadow: 0 18px 36px rgba(18, 13, 8, 0.12);
  --shadow-strong: 0 24px 44px rgba(18, 13, 8, 0.18);
  --font-sans: 'Space Grotesk', 'Manrope', 'SF Pro Display', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'DM Mono', 'JetBrains Mono', monospace;
  --accent-spot: #ffb454;
  --accent-hot: #ff7a45;
  --accent-cool: #64e6c0;
}

body.go-page {
  --bg-0: #0b0b0b;
  --bg-1: #131313;
  --bg-2: #1a1a1a;
  --panel: rgba(12, 12, 12, 0.88);
  --panel-strong: rgba(12, 12, 12, 0.96);
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-strong: rgba(255, 255, 255, 0.18);
  --accent: #f0d8a6;
  --accent-soft: #d2b37d;
  --muted: #b9b2a7;
  --text: #f5f2ec;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  --shadow-strong: 0 32px 70px rgba(0, 0, 0, 0.55);
  --font-sans: 'Space Grotesk', 'Manrope', 'SF Pro Display', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'DM Mono', 'JetBrains Mono', monospace;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --accent-spot: #d6b37e;
  --accent-hot: #f0d8a6;
}

@keyframes breatheBg {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

::selection {
  background: rgba(12, 15, 26, 0.1);
  color: var(--accent);
}

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

/* Background dressing */
.background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.background::before {
  content: '';
  position: absolute;
  inset: -35%;
  background: none;
  filter: none;
  opacity: 0;
  animation: none;
}

body.sitedrop .background::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 180, 84, 0.45), transparent 55%),
    radial-gradient(circle at 82% 28%, rgba(100, 230, 192, 0.28), transparent 52%),
    radial-gradient(circle at 50% 85%, rgba(255, 122, 69, 0.25), transparent 58%);
  opacity: 1;
  animation: drift 16s ease-in-out infinite alternate;
}

body.go-page .background::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 179, 126, 0.35), transparent 60%),
    radial-gradient(circle at 85% 80%, rgba(240, 216, 166, 0.22), transparent 65%);
  opacity: 1;
  animation: none;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 15, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 15, 26, 0.03) 1px, transparent 1px);
  background-size: 160px 160px;
  mask-image: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.55), transparent 60%);
  opacity: 0.45;
  mix-blend-mode: multiply;
}

body.sitedrop .grid-lines {
  background-image:
    linear-gradient(rgba(18, 13, 8, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 13, 8, 0.06) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.35;
}

body.go-page .grid-lines {
  background-image:
    linear-gradient(rgba(214, 179, 126, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 179, 126, 0.08) 1px, transparent 1px);
  background-size: 180px 180px;
  opacity: 0.25;
  mix-blend-mode: screen;
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(12, 15, 26, 0.03) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.25;
  animation: scan 24s linear infinite;
}

body.sitedrop .scanline {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(18, 13, 8, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.2;
}

body.go-page .scanline {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(214, 179, 126, 0.06) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.18;
  animation: none;
}

@keyframes drift {
  to {
    transform: translateY(12px) scale(1.03);
  }
}

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

  100% {
    transform: translateY(100%);
  }
}

/* --- 3. LAYOUT HELPERS --- */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

section {
  padding: 6.5rem 0;
}

section[id] {
  scroll-margin-top: 120px;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid rgba(15, 17, 26, 0.6);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(15, 17, 26, 0.08);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  border-radius: 0;
  border: 1px solid var(--stroke);
  background: var(--panel);
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(12, 15, 26, 0.12);
  animation: pulse 2.2s infinite;
}

body.sitedrop .tag {
  border-color: var(--stroke-strong);
  background: rgba(255, 255, 255, 0.94);
}

body.sitedrop .tag .dot {
  background: var(--accent-spot);
  box-shadow: 0 0 14px rgba(255, 180, 84, 0.45);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.5;
  }
}

.section-header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
}

.section-header p {
  color: var(--muted);
  max-width: 640px;
}

/* Subpage layouts */
.page-hero {
  padding: 8rem 0 4.5rem;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.page-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: none;
  display: grid;
  gap: 1rem;
}

.page-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.page-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

.page-list li .tick {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-top: 0.35rem;
  background: var(--accent);
  box-shadow: none;
  flex: none;
}

.page-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .page-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 7rem;
  }
}

/* --- 4. NAVIGATION --- */
.nav-shell {
  position: fixed;
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
  width: min(1100px, 94vw);
  margin-top: 1.4rem;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  border-radius: 0;
  background: var(--panel);
  backdrop-filter: none;
  border: 1px solid var(--stroke);
  box-shadow: none;
}

body.sitedrop .nav {
  border-color: var(--stroke-strong);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.05em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: var(--panel);
  border: 1px solid var(--stroke);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 0;
  border: 1px solid rgba(12, 15, 26, 0.1);
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.35rem;
  border-radius: 0;
  border: 1px solid var(--stroke);
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
  border-color: var(--accent);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

body.sitedrop .btn-primary {
  background: linear-gradient(135deg, var(--accent-spot), var(--accent-hot));
  color: #1b130a;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(255, 138, 84, 0.28);
}

body.sitedrop .btn-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 138, 84, 0.38);
}

.btn-ghost {
  background: var(--panel);
  color: var(--accent);
}

.btn-ghost:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  border-radius: 0;
  background: var(--accent);
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: none;
  z-index: 40;
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--accent);
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 600;
}

.mobile-close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1px solid var(--stroke);
  background: var(--panel);
  color: var(--accent);
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.mobile-close:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: none;
}

/* --- 5. HERO --- */
.hero {
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.06em;
  margin: 1.5rem 0 1rem;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.accent {
  color: var(--accent);
  text-shadow: 0 10px 30px rgba(12, 15, 26, 0.1);
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 50% 0);
  opacity: 0.4;
}

.glitch::before {
  color: rgba(12, 15, 26, 0.5);
  transform: translate(-2px, -1px);
  animation: shift 2.6s infinite;
}

.glitch::after {
  color: rgba(12, 15, 26, 0.3);
  transform: translate(2px, 1px);
  animation: shift 2.9s infinite reverse;
}

body.sitedrop .glitch::before,
body.sitedrop .glitch::after {
  color: rgba(18, 13, 8, 0.35);
}

@keyframes shift {
  0% {
    clip-path: inset(0 0 40% 0);
  }

  20% {
    clip-path: inset(20% 0 20% 0);
  }

  40% {
    clip-path: inset(60% 0 12% 0);
  }

  60% {
    clip-path: inset(10% 0 60% 0);
  }

  80% {
    clip-path: inset(40% 0 30% 0);
  }

  100% {
    clip-path: inset(0 0 40% 0);
  }
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.metric {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.metric .pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(12, 15, 26, 0.2);
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--stroke);
  background: var(--panel);
  backdrop-filter: none;
  box-shadow: none;
  overflow: hidden;
}

.visual-card::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: none;
  filter: none;
  opacity: 0;
  z-index: 0;
}

.orbital {
  position: relative;
  height: 320px;
  display: grid;
  place-items: center;
  z-index: 1;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(12, 15, 26, 0.1);
  box-shadow: 0 0 30px rgba(12, 15, 26, 0.07);
  animation: rotate 18s linear infinite;
}

.ring.r1 {
  width: 240px;
  height: 240px;
  animation-duration: 18s;
}

.ring.r2 {
  width: 320px;
  height: 320px;
  animation-duration: 22s;
  animation-direction: reverse;
  border-color: rgba(12, 15, 26, 0.14);
}

.ring.r3 {
  width: 150px;
  height: 150px;
  animation-duration: 12s;
  border-color: rgba(12, 15, 26, 0.12);
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.node {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(12, 15, 26, 0.14);
  animation: float 3s ease-in-out infinite;
}

.node.n1 {
  top: 12%;
  left: 42%;
  animation-delay: 0.4s;
}

.node.n2 {
  bottom: 18%;
  right: 35%;
  animation-delay: 1s;
}

.node.n3 {
  top: 46%;
  right: 12%;
  animation-delay: 1.6s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(8px);
  }
}

.hud {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  z-index: 2;
}

.hud-tile {
  padding: 0.75rem;
  border-radius: 0;
  background: var(--panel);
  border: 1px solid var(--stroke);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}

.hud-tile strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.signal {
  margin-top: 0.35rem;
  height: 6px;
  border-radius: 0;
  background: rgba(12, 15, 26, 0.12);
  position: relative;
  overflow: hidden;
}

.signal::after {
  content: '';
  position: absolute;
  width: 18%;
  inset: 0;
  background: rgba(12, 15, 26, 0.35);
  animation: sweep 1.8s linear infinite;
}

@keyframes sweep {
  to {
    transform: translateX(500%);
  }
}

/* --- 5a. SITEDROP HERO --- */
body.sitedrop .hero {
  padding: 10.5rem 0 7rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

body.sitedrop .hero-grid {
  gap: clamp(2.5rem, 5vw, 4rem);
}

body.sitedrop .hero h1 {
  font-size: clamp(3.4rem, 7vw, 5.6rem);
}

.hero-accent {
  display: block;
  background: linear-gradient(120deg, var(--accent), var(--accent-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--accent);
  -webkit-text-fill-color: transparent;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1.5rem;
  color: var(--muted);
}

.hero-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.hero-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-spot);
  box-shadow: 0 0 12px rgba(255, 180, 84, 0.4);
  margin-top: 0.45rem;
}

.proof-bar {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.proof-bar span {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.75);
}

.ship-window {
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.guarantee-inline {
  margin-top: 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--stroke-strong);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.guarantee-inline strong {
  font-weight: 700;
}

.hero-trust {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 1rem;
}

.ship-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.ship-steps span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px dashed var(--stroke-strong);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
}

.ship-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--stroke-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  padding: 2rem;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.ship-card::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 180, 84, 0.22), transparent 55%);
  opacity: 0.9;
}

.ship-card::after {
  content: '';
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px dashed rgba(18, 13, 8, 0.18);
  opacity: 0.6;
}

.ship-card>* {
  position: relative;
  z-index: 1;
}

.ship-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ship-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ship-id {
  font-weight: 600;
  color: var(--text);
  margin-top: 0.4rem;
}

.ship-badge {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--accent-spot);
  color: #1b140b;
  box-shadow: 0 10px 20px rgba(255, 180, 84, 0.35);
}

.ship-body {
  margin-top: 1.4rem;
}

.ship-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.ship-meta {
  margin-top: 0.4rem;
  color: var(--muted);
}

.ship-progress {
  margin-top: 1.4rem;
}

.ship-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(18, 13, 8, 0.12);
  position: relative;
  overflow: hidden;
}

.ship-bar span {
  position: absolute;
  inset: 0;
  width: 58%;
  background: linear-gradient(90deg, var(--accent-spot), var(--accent-hot));
  animation: shipProgress 4s ease-in-out infinite;
}

@keyframes shipProgress {
  0% {
    width: 42%;
  }

  50% {
    width: 74%;
  }

  100% {
    width: 58%;
  }
}

.ship-progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.ship-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.ship-chip {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 600;
}

.ship-barcode {
  margin-top: 1.4rem;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: repeating-linear-gradient(90deg, rgba(18, 13, 8, 0.5) 0 2px, transparent 2px 6px);
  opacity: 0.35;
}

/* --- 5.5 PARTNERS / TRUST --- */
.partners {
  padding: 3.5rem 0 1.5rem;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: none;
}

.partners-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.partner-chip {
  padding: 0.45rem 0.85rem;
  border-radius: 0;
  background: rgba(12, 15, 26, 0.04);
  border: 1px solid var(--stroke);
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
  white-space: nowrap;
}

/* --- 6. AI CONCIERGE --- */
.concierge-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.chat-card {
  background: var(--panel-strong);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: none;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 520px;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--stroke);
}

.chat-title {
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.chat-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

.chat-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 10px rgba(22, 163, 74, 0.35);
}

.chat-window {
  padding: 1.1rem 1.25rem;
  background: rgba(247, 248, 251, 0.75);
  overflow-y: auto;
  scroll-behavior: smooth;
}

.chat-message {
  display: flex;
  margin-bottom: 0.9rem;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-bubble {
  max-width: 80%;
  padding: 0.8rem 0.95rem;
  border-radius: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
  background: rgba(12, 15, 26, 0.06);
  box-shadow: none;
  white-space: pre-wrap;
}

.chat-message.user .chat-bubble {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}

.chat-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
  font-family: var(--font-mono);
}

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--stroke);
}

.chat-input {
  flex: 1;
  border-radius: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--stroke);
  background: #fff;
  color: var(--text);
  font-size: 1rem;
}

.chat-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(12, 15, 26, 0.08);
}

.chat-send {
  padding: 0.7rem 1.1rem;
  font-size: 0.95rem;
  white-space: nowrap;
}

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.voice-toggle,
.chat-mic {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
}

.voice-toggle.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: none;
}

.chat-mic.listening {
  background: rgba(12, 15, 26, 0.06);
  border-color: var(--stroke-strong);
  box-shadow:
    0 0 0 6px rgba(12, 15, 26, 0.06),
    0 10px 20px rgba(12, 15, 26, 0.12);
}

.chat-mic.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.mic-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 0;
  border: 1px solid rgba(12, 15, 26, 0.35);
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.chat-mic.listening .mic-pulse {
  opacity: 1;
  animation: micPulse 1.4s ease-out infinite;
}

@keyframes micPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.concierge-aside {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: none;
  padding: 1.8rem;
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.prompt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.6rem;
}

.prompt-chip {
  border: 1px solid var(--stroke);
  background: var(--panel);
  border-radius: 0;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  font-family: var(--font-mono);
  color: var(--accent);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.prompt-chip:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 6px 14px rgba(12, 15, 26, 0.08);
}

.concierge-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* --- 6b. OFFERS / PROOF / OPERATOR / CONCIERGE GATE --- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.offer-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: none;
  display: grid;
  gap: 0.85rem;
  height: 100%;
}

.offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

.offer-code {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0;
  border: 1px solid var(--stroke);
  background: rgba(12, 15, 26, 0.05);
  color: var(--text);
  font-size: 0.85rem;
}

.offer-outcome {
  font-weight: 700;
  color: var(--text);
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  line-height: 1.45;
}

.offer-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.45rem;
}

.offer-list li::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(12, 15, 26, 0.15);
  margin-top: 0.35rem;
}

.btn-full {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.6rem;
  align-items: start;
}

.proof-stats {
  display: grid;
  gap: 0.9rem;
}

.proof-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: none;
  display: grid;
  gap: 0.35rem;
}

.proof-meta {
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--muted);
}

.proof-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.proof-card p {
  color: var(--muted);
  line-height: 1.5;
}

.case-template {
  margin-top: 1.2rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.template-title {
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.case-template ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}

.operator-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: none;
  display: grid;
  gap: 0.8rem;
}

.operator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.operator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.operator-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 0;
  border: 1px solid var(--stroke);
  background: rgba(12, 15, 26, 0.04);
  color: var(--text);
  font-size: 0.92rem;
}

.operator-aside {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  background: rgba(12, 15, 26, 0.04);
  padding: 1.3rem;
  box-shadow: none;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.operator-aside h4 {
  margin: 0;
  color: var(--text);
}

.operator-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
}

.operator-aside li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: start;
}

.operator-aside li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.35rem;
  box-shadow: 0 0 10px rgba(12, 15, 26, 0.12);
}

.concierge-upgrade {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.4rem;
  align-items: start;
}

.concierge-lead {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: 1.5rem;
  box-shadow: none;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.safety-card {
  border: 1px dashed var(--stroke);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.safety-card h4 {
  margin: 0 0 0.35rem;
}

.safety-card p {
  margin: 0;
  color: var(--muted);
}

.gate-form textarea {
  background: rgba(255, 255, 255, 0.9);
}

.concierge-panel {
  position: relative;
}

.concierge-lock {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: none;
  box-shadow: none;
  display: grid;
  gap: 0.5rem;
  align-content: center;
  justify-items: start;
  padding: 1.6rem;
  z-index: 3;
}

.concierge-lock.hidden {
  display: none;
}

.lock-title {
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.concierge-panel .concierge-grid {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .concierge-grid {
    grid-template-columns: 1fr;
  }

  .concierge-upgrade {
    grid-template-columns: 1fr;
  }

  .proof-layout {
    grid-template-columns: 1fr;
  }

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

/* --- 7. BENTO CAPABILITIES --- */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: none;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--stroke-strong);
  box-shadow: none;
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

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

.card .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0;
  background: rgba(12, 15, 26, 0.04);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.card .chip span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(12, 15, 26, 0.12);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 0;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(12, 15, 26, 0.04);
  border: 1px solid var(--stroke);
  color: var(--accent);
}

.bar {
  margin-top: 1.2rem;
  height: 6px;
  border-radius: 0;
  background: rgba(12, 15, 26, 0.06);
  position: relative;
  overflow: hidden;
}

.bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 62%;
  background: rgba(12, 15, 26, 0.35);
  animation: load 3s ease-in-out infinite;
}

@keyframes load {
  0% {
    width: 28%;
  }

  50% {
    width: 82%;
  }

  100% {
    width: 62%;
  }
}

.card-footer {
  margin-top: 1.1rem;
  display: flex;
  justify-content: flex-end;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
}

.card-link span {
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1;
}

.card-link:hover {
  text-decoration: underline;
}

.span-7 {
  grid-column: span 7;
}

.span-5 {
  grid-column: span 5;
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

@media (max-width: 1024px) {

  .span-7,
  .span-5,
  .span-4,
  .span-6 {
    grid-column: span 12;
  }
}

/* --- 8. DEPLOYMENTS / PROOF --- */
.deploy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.case-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: none;
  display: grid;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.case-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-card h3 {
  font-size: 1.25rem;
  color: var(--text);
}

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

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.case-metric {
  padding: 0.45rem 0.7rem;
  border-radius: 0;
  background: rgba(12, 15, 26, 0.05);
  border: 1px solid var(--stroke);
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.case-actions .btn {
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  width: auto;
}

.micro-proof {
  margin-top: 2rem;
}

.micro-header {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.micro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.micro-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  padding: 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.micro-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.micro-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.4rem;
}

.micro-note {
  font-size: 0.88rem;
  color: var(--muted);
}

/* --- 8b. SITEDROP SECTIONS --- */
.who-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.who-quote {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.8);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.who-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  padding: 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.who-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.who-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.not-for {
  margin-top: 1.6rem;
  padding: 1.2rem 1.4rem;
  border: 1px dashed var(--stroke-strong);
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 0.6rem;
}

.not-for-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.not-for-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.not-for-list span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  color: var(--text);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.included-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
}

.included-card.muted {
  background: rgba(18, 13, 8, 0.04);
  border-style: dashed;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.pricing-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--stroke);
  padding: 1.8rem;
  display: grid;
  gap: 0.9rem;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--accent-spot);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.pricing-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pricing-tag {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-sub {
  color: var(--muted);
  line-height: 1.5;
}

.pricing-bestfor {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  margin-top: -0.2rem;
}

.checkout-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkout-status.error {
  color: #b42318;
}

.addons {
  margin-top: 2.4rem;
  padding: 1.4rem;
  border: 1px dashed var(--stroke);
  background: rgba(255, 255, 255, 0.8);
}

.addons-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.addons-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem;
}

.addon-item {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  color: var(--text);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.1rem;
}

.process-step {
  padding: 1.6rem;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  min-height: 190px;
  display: grid;
  gap: 0.5rem;
}

.process-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.process-step h3 {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  color: var(--text);
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.process-note {
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.guarantee-card {
  margin-top: 1.4rem;
  padding: 1.4rem;
  border: 1px solid var(--stroke-strong);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  display: grid;
  gap: 0.4rem;
}

.guarantee-title {
  font-weight: 700;
  color: var(--text);
}

.buy-card {
  padding: 2.4rem;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.buy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.8rem;
  align-items: start;
}

.buy-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.buy-note a {
  color: var(--text);
  font-weight: 600;
}

.buy-aside {
  display: grid;
  gap: 1rem;
}

.buy-panel {
  padding: 1.4rem;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  gap: 0.75rem;
}

.buy-panel h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
}

.buy-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.buy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.buy-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: start;
}

.buy-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.4rem;
  background: var(--accent-spot);
  box-shadow: 0 0 10px rgba(255, 180, 84, 0.3);
}

.promo-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  padding: 2rem;
  display: grid;
  gap: 0.8rem;
  box-shadow: var(--shadow);
}

.promo-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.promo-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

.promo-sub {
  color: var(--muted);
  line-height: 1.5;
}

.promo-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.promo-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: start;
}

.promo-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.4rem;
  background: var(--accent-spot);
  box-shadow: 0 0 10px rgba(255, 180, 84, 0.3);
}

.promo-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.promo-urgency {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

/* --- GO PAGE --- */
.go-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 6rem 0;
}

.go-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--stroke-strong);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.3rem;
}

.go-topline,
.go-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.go-topline {
  color: var(--accent);
}

.go-date {
  color: var(--muted);
}

.go-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0;
}

.go-subhead {
  margin: 0 auto;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.05rem;
}

.go-proof {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.go-offer {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.08em;
  color: var(--accent);
}

.go-cta-block {
  display: grid;
  justify-items: center;
  gap: 0.6rem;
}

.go-cta {
  width: min(420px, 100%);
}

body.go-page .btn-primary {
  background: linear-gradient(135deg, #d6b37e, #f0d8a6);
  color: #1a140c;
  border-color: transparent;
  box-shadow: 0 18px 32px rgba(214, 179, 126, 0.2);
}

body.go-page .btn-primary:hover {
  box-shadow: 0 22px 38px rgba(214, 179, 126, 0.3);
}

body.go-page .btn-ghost {
  background: rgba(0, 0, 0, 0.6);
  color: var(--accent);
  border-color: rgba(214, 179, 126, 0.4);
}

.go-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.go-link {
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.go-link:hover {
  border-color: var(--accent);
  color: var(--accent-hot);
}

.go-questions {
  font-size: 0.95rem;
  color: var(--muted);
}

.go-questions a {
  color: var(--accent);
  text-decoration: none;
}

.go-section {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--stroke);
  text-align: left;
  display: grid;
  gap: 0.75rem;
}

.go-section h2 {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.go-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
}

.go-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  line-height: 1.55;
}

.go-list li::before {
  content: '-';
  color: var(--accent);
  margin-top: 0.1rem;
}

.go-qualifier {
  margin-top: 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(214, 179, 126, 0.5);
  color: var(--muted);
  text-align: left;
  line-height: 1.6;
}

.go-process {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .go-panel {
    padding: 2rem 1.5rem;
    gap: 1.1rem;
  }
}

body.go-page a:focus-visible,
body.go-page .btn:focus-visible {
  outline-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(214, 179, 126, 0.2);
}

/* --- 9. FAQ --- */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 0;
  padding: 1.1rem 1.25rem;
  box-shadow: none;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.4rem;
  color: var(--muted);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

.faq-item[open] summary::after {
  content: '–';
  color: var(--accent);
}

.faq-body {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .deploy-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 7. PROTOCOL --- */
.protocol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.step::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: none;
  opacity: 0;
}

.step-number {
  font-size: 0.9rem;
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

/* --- 8. CONTACT --- */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.contact-card {
  padding: 2.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: none;
}

.contact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.contact-ai .contact-card .tag {
  margin-bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-ai .contact-card .tag .dot {
  background: var(--accent);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  color: var(--muted);
  font-size: 0.9rem;
}

input,
textarea {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--stroke);
  border-radius: 0;
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(12, 15, 26, 0.35);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(12, 15, 26, 0.08);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.input-error {
  border-color: #d72638;
  box-shadow: 0 0 0 4px rgba(215, 38, 56, 0.08);
}

.form-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.4rem 0 1rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status {
  min-height: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-status.success {
  color: #0b8f63;
}

.form-status.error {
  color: #d72638;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-aside {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.contact-aside::after {
  content: '';
  position: absolute;
  inset: -30%;
  background: none;
  opacity: 0;
}

.list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}

.list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}

.list li .tick {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--accent);
  box-shadow: none;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.contact-highlights .chip {
  border: 1px solid var(--stroke);
  background: rgba(12, 15, 26, 0.04);
  color: var(--text);
}

.contact-aside .concierge-note {
  margin-top: 1rem;
}

/* --- 9. FOOTER --- */
footer {
  padding: 3rem 0;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  text-align: center;
  background: var(--panel);
  backdrop-filter: none;
}

/* --- 10. ANIMATION / REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.8s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

  .background::before,
  .ring,
  .node,
  .glitch::before,
  .glitch::after,
  .bar::after,
  .signal::after,
  .ship-bar span,
  .tag .dot,
  .chat-mic.listening .mic-pulse {
    animation: none !important;
  }

  .scanline {
    display: none;
  }

  .reveal {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* --- 11. RESPONSIVE --- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

  .who-grid,
  .buy-grid {
    grid-template-columns: 1fr;
  }

  .who-cards,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .ship-progress-steps {
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: flex-start;
    font-size: 0.65rem;
  }

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

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

@media (max-width: 600px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav {
    border-radius: 0;
  }

  section {
    padding: 5rem 0;
  }
}

/* --- 12. CONCIERGE ENHANCEMENTS --- */
.chat-status.online .status-dot {
  background: #16a34a;
  box-shadow: 0 0 10px rgba(22, 163, 74, 0.35);
}

.chat-status.connecting .status-dot {
  background: #f59e0b;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.35);
}

.chat-status.streaming .status-dot {
  background: #0ea5e9;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.35);
}

.chat-status.error .status-dot {
  background: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.35);
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.quick-reply {
  border: 1px solid var(--stroke);
  background: var(--panel);
  border-radius: 0;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.quick-reply:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 6px 14px rgba(12, 15, 26, 0.08);
}

.chat-sources {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(12, 15, 26, 0.08);
  display: grid;
  gap: 0.6rem;
}

.chat-sources-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.chat-source-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.chat-source-snippet {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
  margin-top: 0.2rem;
}

.summary-cta {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(12, 15, 26, 0.08);
  display: grid;
  gap: 0.55rem;
}

.summary-title {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.summary-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.summary-form input {
  flex: 1;
  min-width: 180px;
  border-radius: 0;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--stroke);
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
}

.summary-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(12, 15, 26, 0.08);
}

.summary-status {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
}

/* --- 13. FRONT DESK UI --- */
.status-widget {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}

.status-widget:hover {
  background: #fff;
  color: var(--text);
}

.status-label {
  display: grid;
  gap: 0.2rem;
  line-height: 1.1;
}

.status-title {
  font-size: 0.68rem;
  color: var(--text);
  letter-spacing: 0.18em;
}

.status-sub {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.14em;
}

.status-widget .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.4);
  animation: pulse 2s infinite;
}

.fab-chat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  background: var(--text);
  color: #fff;
  border-radius: 0;
  border: 1px solid var(--accent);
  box-shadow: none;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.25s var(--ease);
}

.fab-chat:hover {
  transform: translateY(-2px);
}

.fab-chat .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 10px rgba(22, 163, 74, 0.5);
}

@media (min-width: 901px) {
  .fab-chat {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav .status-widget {
    display: none;
  }
}
