:root {
  --bg: #08121d;
  --bg-soft: #0f1d2d;
  --surface: rgba(11, 24, 38, 0.82);
  --surface-strong: rgba(16, 31, 48, 0.92);
  --surface-warm: rgba(245, 235, 219, 0.08);
  --text: #f4efe5;
  --text-soft: #bfd0d5;
  --text-muted: #8ea3ad;
  --line: rgba(191, 208, 213, 0.16);
  --teal: #73c8bf;
  --teal-deep: #2b7e77;
  --coral: #f2856d;
  --sand: #e7d8bd;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(115, 200, 191, 0.16), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(242, 133, 109, 0.12), transparent 26%),
    linear-gradient(180deg, #09111c 0%, #07111b 42%, #091521 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 88%);
}

.page-shell {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.site-footer,
.hero,
.section {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0 26px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--teal), #b9e5dc);
  color: #07202a;
  font-family: "Instrument Serif", serif;
  font-size: 1.45rem;
}

.brand-text {
  font-size: 1.05rem;
}

.site-nav {
  display: inline-flex;
  gap: 24px;
}

.site-nav a,
.site-footer a {
  color: var(--text-soft);
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.hero {
  display: block;
  padding: 34px 0 54px;
}

.hero-copy,
.product-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 33, 49, 0.9), rgba(9, 20, 31, 0.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 44px;
  border-radius: var(--radius-xl);
}

.hero-kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 7vw, 5.9rem);
}

.hero-body {
  max-width: 42rem;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.95rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), #a9e6dd);
  color: #08202a;
}

.button-secondary,
.button-ghost,
.button-muted {
  border: 1px solid rgba(191, 208, 213, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button-muted {
  color: var(--text-muted);
  cursor: default;
}

.section {
  padding: 44px 0 16px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2.15rem, 4vw, 3.4rem);
}

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

.product-card {
  border-radius: var(--radius-lg);
}

.product-card {
  padding: 28px;
}

.live-card {
  background:
    linear-gradient(180deg, rgba(115, 200, 191, 0.16), rgba(10, 25, 36, 0.94)),
    linear-gradient(180deg, rgba(18, 33, 49, 0.9), rgba(9, 20, 31, 0.92));
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-topline h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.25;
}

.product-card p,
.disclaimer-copy,
.site-footer p {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.status-live {
  background: rgba(115, 200, 191, 0.14);
  color: var(--teal);
}

.status-soon {
  background: rgba(231, 216, 189, 0.12);
  color: var(--sand);
}

.status-planned {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.disclaimer-section {
  padding-top: 52px;
  padding-bottom: 8px;
}

.disclaimer-copy {
  max-width: 860px;
  font-size: 1.05rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 52px 0 10px;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .site-header,
  .site-footer,
  .product-topline {
    display: block;
  }

  .site-nav {
    margin: 18px 0;
  }

  .site-header .button-small {
    display: inline-flex;
  }

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

  .hero-copy {
    padding: 30px;
  }

  .site-footer {
    padding-top: 40px;
  }

  .site-footer p + p {
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--content-width));
    padding-top: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    gap: 22px;
    padding-top: 18px;
  }

  .hero-copy,
  .product-card {
    padding: 22px;
    border-radius: 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: 3rem;
  }

  .section-heading h2,
  .bundle-card h2 {
    font-size: 2.3rem;
    line-height: 1.03;
  }

  .product-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .button-small {
    width: 100%;
  }
}
