@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:opsz@9..40&family=Inter:wght@400;600;700;800&display=swap");

:root {
  --space-black: #0B0B0D;
  --luxury-gold: #D6AF55;
  --gold-dark: #a67c28;
  --gold-light: #e8c870;
  --ivory-white: #F5F1E8;
  --tech-gray: #1C1C22;
  --deep-ocean-green: #0E4D3B;
  --star-blue: #1E3A5F;
  --neon-green: #34d399;

  --bg: var(--space-black);
  --bg2: #111215;
  --surface: var(--tech-gray);
  --surface-2: #15161b;
  --ink-panel: #07080a;
  --gold-glow: rgba(214, 175, 85, 0.24);
  --green-glass: rgba(14, 77, 59, 0.42);
  --border: rgba(245, 241, 232, 0.1);
  --border-strong: rgba(214, 175, 85, 0.34);
  --text: var(--ivory-white);
  --muted: rgba(245, 241, 232, 0.66);
  --subtle: rgba(245, 241, 232, 0.45);
  --font-head: "DM Serif Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(214, 175, 85, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 175, 85, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, rgba(14, 77, 59, 0.18), transparent 34%),
    linear-gradient(220deg, rgba(30, 58, 95, 0.18), transparent 36%),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(214, 175, 85, 0.08), transparent 18%, transparent 82%, rgba(14, 77, 59, 0.1)),
    linear-gradient(180deg, rgba(245, 241, 232, 0.04), transparent 18%, rgba(0, 0, 0, 0.38));
}

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

a {
  color: inherit;
}

.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(214, 175, 85, 0.16);
  background: rgba(7, 8, 10, 0.9);
  backdrop-filter: blur(18px);
}

.site-nav::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 175, 85, 0.52), rgba(14, 77, 59, 0.38), transparent);
}

.nav-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(214, 175, 85, 0.38);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(214, 175, 85, 0.12), rgba(14, 77, 59, 0.18));
  padding: 5px;
  box-shadow: 0 0 0 1px rgba(245, 241, 232, 0.04), 0 18px 46px rgba(0, 0, 0, 0.42);
}

.brand-official-logo {
  width: 132px;
  height: 44px;
  object-fit: cover;
  object-position: 50% 25%;
  background: #050607;
}

.brand-logo-h {
  height: 44px;
  width: auto;
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
}

.brand-logo-h--sm {
  height: 36px;
}

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

.brand-name {
  color: var(--ivory-white);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-lab {
  color: var(--subtle);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--luxury-gold);
}

.nav-links a.product-link {
  color: var(--text);
}

.nav-links a.nav-contact {
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--luxury-gold);
  padding: 9px 14px;
}

.nav-links a.nav-contact:hover {
  background: rgba(214, 175, 85, 0.08);
}

.nav-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--luxury-gold);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.hero-centered {
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.kicker {
  color: var(--luxury-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
.hero-title {
  color: var(--text);
  font-family: var(--font-head);
  font-size: clamp(46px, 9vw, 82px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 22px;
}

.home-hero {
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(100deg, rgba(7, 8, 10, 0.98) 0%, rgba(7, 8, 10, 0.87) 42%, rgba(7, 8, 10, 0.48) 72%, rgba(14, 77, 59, 0.3) 100%),
    url("images/hero-bg.webp"),
    linear-gradient(rgba(214, 175, 85, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 175, 85, 0.06) 1px, transparent 1px);
  background-position: center, center top, center, center;
  background-size: auto, cover, 56px 56px, 56px 56px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 8% 0 0 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(214, 175, 85, 0.12) 42%, transparent 43%),
    linear-gradient(60deg, transparent 0%, rgba(14, 77, 59, 0.14) 55%, transparent 56%);
  opacity: 0.78;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  gap: 56px;
  align-items: center;
}

.home-hero .hero-title {
  font-size: clamp(58px, 9vw, 106px);
  max-width: 780px;
}

.brand-cinema {
  position: relative;
  z-index: 1;
  min-height: 460px;
  border: 1px solid rgba(214, 175, 85, 0.28);
  border-radius: 8px;
  background: #06080a;
  box-shadow: inset 0 0 0 1px rgba(245, 241, 232, 0.06), 0 44px 110px rgba(0, 0, 0, 0.56);
  overflow: hidden;
  padding: 24px;
}

.brand-cinema-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.66;
}

.brand-cinema > :not(.brand-cinema-image) {
  position: relative;
  z-index: 1;
}

.brand-cinema::before {
  z-index: 1;
}

.brand-cinema::after {
  z-index: 1;
}

.brand-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.54) 100%);
  pointer-events: none;
}

.brand-cinema::after {
  content: none;
}

.cinema-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px;
  z-index: 2;
}

.cinema-wordmark {
  color: var(--luxury-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 18px;
  opacity: 0.88;
}

.cinema-tagline {
  color: var(--text);
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  margin: 0 0 32px;
}

.cinema-pillars {
  display: flex;
  align-items: center;
}

.cinema-pillars span {
  color: rgba(245, 241, 232, 0.38);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 18px;
  border-right: 1px solid rgba(214, 175, 85, 0.22);
}

.cinema-pillars span:last-child {
  border-right: none;
}

h2,
.section-title {
  color: var(--text);
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 18px;
}

h3 {
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.75;
  margin-bottom: 32px;
}

.section {
  padding: 104px 0;
}

.section.alt {
  background: rgba(17, 18, 21, 0.72);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.section-compact {
  padding: 72px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--luxury-gold) 52%, var(--gold-dark));
  color: #14110a;
  box-shadow: 0 14px 38px rgba(214, 175, 85, 0.2);
}

.btn-secondary {
  border: 1px solid var(--border-strong);
  color: var(--luxury-gold);
  background: rgba(214, 175, 85, 0.04);
}

.btn-tertiary {
  color: var(--luxury-gold);
  padding-left: 0;
  padding-right: 0;
}

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

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

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

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

.card,
.stat-card,
.roadmap-card,
.price-card,
.note-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(28, 28, 34, 0.9), rgba(17, 18, 21, 0.86));
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(245, 241, 232, 0.04);
}

.card.gold-line,
.roadmap-card.active {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(37, 32, 20, 0.84), rgba(17, 18, 21, 0.9));
}

.card p,
.roadmap-card p,
.price-card p,
.note-card p,
.stat-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.card-label,
.status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 14px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.status-dev {
  background: rgba(14, 77, 59, 0.56);
  color: var(--neon-green);
}

.status-muted {
  background: rgba(245, 241, 232, 0.06);
  color: var(--muted);
}

.status-future {
  border: 1px solid var(--border);
  color: var(--subtle);
}

.pull-quote {
  border-left: 2px solid var(--luxury-gold);
  color: var(--text);
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  margin: 32px 0 0;
  padding-left: 22px;
}

.visual-panel {
  border: 1px solid rgba(214, 175, 85, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(rgba(214, 175, 85, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 175, 85, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, rgba(14, 77, 59, 0.62), rgba(30, 58, 95, 0.38), rgba(8, 9, 12, 0.94));
  background-size: 30px 30px, 30px 30px, auto;
  min-height: 340px;
  padding: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.signal-stack {
  display: grid;
  gap: 12px;
}

.signal-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  color: var(--muted);
  font-size: 14px;
  padding: 14px 0;
}

.signal-row strong {
  color: var(--text);
}

.mock-window {
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 13, 15, 0.98), rgba(7, 8, 10, 0.96));
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.52), inset 0 0 0 1px rgba(245, 241, 232, 0.04);
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--border);
  padding: 12px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--subtle);
}

.console-title {
  color: rgba(245, 241, 232, 0.54);
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
}

.mock-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 330px;
}

.mock-sidebar {
  border-right: 1px solid var(--border);
  padding: 18px 12px;
}

.mock-menu-item {
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
  padding: 8px 10px;
}

.mock-menu-item.active {
  background: rgba(52, 211, 153, 0.1);
  color: var(--neon-green);
}

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

.asset-tile {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58)),
    linear-gradient(145deg, rgba(30, 58, 95, 0.9), rgba(14, 77, 59, 0.88));
  display: flex;
  align-items: end;
  color: rgba(245, 241, 232, 0.74);
  font-size: 11px;
  padding: 8px;
}

.product-hero {
  background:
    linear-gradient(120deg, rgba(7, 8, 10, 0.98), rgba(10, 18, 20, 0.9) 48%, rgba(7, 8, 10, 0.58)),
    url("images/product-hero-bg.webp"),
    linear-gradient(rgba(52, 211, 153, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 175, 85, 0.035) 1px, transparent 1px);
  background-position: center, center top, center, center;
  background-size: auto, cover, 44px 44px, 44px 44px;
}

.product-hero-grid {
  gap: 58px;
}

.product-console {
  position: relative;
}

.product-tech-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.82;
  border-bottom: 1px solid rgba(52, 211, 153, 0.14);
}

.product-console::before {
  content: "";
  position: absolute;
  inset: 42px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.46), transparent);
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  background: rgba(7, 8, 10, 0.72);
}

.console-metrics span {
  color: rgba(245, 241, 232, 0.58);
  font-size: 11px;
  font-weight: 700;
  padding: 12px;
  text-align: center;
}

.price {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 44px;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
}

.clean-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.clean-list li {
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  color: var(--muted);
  padding: 10px 0;
}

.page-header {
  padding: 96px 0 64px;
}

.page-header .lead {
  max-width: 720px;
}

.text-column {
  max-width: 760px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  margin-top: 38px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.contact-email {
  display: inline-flex;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--luxury-gold);
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  padding: 16px 18px;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid rgba(214, 175, 85, 0.16);
  background:
    linear-gradient(90deg, rgba(14, 77, 59, 0.16), transparent 34%, rgba(214, 175, 85, 0.08)),
    rgba(8, 9, 12, 0.86);
  padding: 54px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(150px, 1fr));
  gap: 32px;
}

.footer-logo {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(214, 175, 85, 0.34);
  border-radius: 8px;
  padding: 4px;
}

.footer-official-logo {
  width: 116px;
  height: 40px;
  object-fit: cover;
  object-position: 50% 25%;
  background: #050607;
}

.footer-title {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-subcopy {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--luxury-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  color: var(--subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 22px;
  font-size: 12px;
}

@media (max-width: 960px) {
  .split,
  .home-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 36px, 1100px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(11, 11, 13, 0.98);
    padding: 12px;
  }

  .nav-links a {
    border-bottom: 1px solid rgba(245, 241, 232, 0.08);
    padding: 12px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-check:checked ~ .nav-links {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 64px;
  }

  .section {
    padding: 72px 0;
  }

  .brand-cinema {
    min-height: 360px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .mock-body {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    border-bottom: 1px solid var(--border);
    border-right: 0;
  }

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

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

@media (max-width: 480px) {
  .brand-lab {
    display: none;
  }

  .container {
    width: calc(100vw - 40px);
    max-width: 100%;
  }

  .split > *,
  .home-hero-grid > *,
  .product-hero-grid > * {
    min-width: 0;
    max-width: 100%;
  }

  h1,
  .hero-title {
    font-size: clamp(34px, 9vw, 54px);
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .home-hero .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .lead {
    font-size: 16px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .card,
  .stat-card,
  .roadmap-card,
  .price-card,
  .note-card,
  .visual-panel {
    padding: 20px;
  }
}
