:root {
  --ink: #1a1214;
  --ink-soft: #3d2f33;
  --muted: #6d5e63;
  --paper: #f7f4f2;
  --white: #ffffff;
  --line: #e4dbd7;
  --brand: #8b1e2d;
  --brand-deep: #6a1420;
  --accent: #e5392a;
  --accent-hot: #ff6a2b;
  --steel: #9aa3ad;
  --steel-dark: #5c6670;
  --shadow: 0 28px 70px rgba(26, 18, 20, 0.12);
  --radius: 22px;
  --max: 1160px;
  --font-display: "Syne", sans-serif;
  --font-body: "Sora", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 0% -5%, rgba(229, 57, 42, 0.08), transparent 55%),
    radial-gradient(800px 420px at 100% 0%, rgba(139, 30, 45, 0.06), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #faf7f5 38%, #f3eeeb 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(228, 219, 215, 0.9);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(26, 18, 20, 0.06);
  background: rgba(255, 255, 255, 0.96);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 780;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1;
}

.brand-copy .tagline {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--steel-dark);
  font-weight: 600;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(139, 30, 45, 0.08);
  color: var(--brand);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--brand)) !important;
  color: white !important;
  margin-left: 0.35rem;
  box-shadow: 0 10px 24px rgba(229, 57, 42, 0.28);
}

.nav-cta:hover {
  transform: translateY(-1px);
  color: white !important;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, rgba(18, 10, 12, 0.94) 0%, rgba(74, 18, 28, 0.82) 46%, rgba(120, 28, 34, 0.55) 100%),
    radial-gradient(circle at 82% 28%, rgba(255, 106, 43, 0.45), transparent 30%),
    linear-gradient(160deg, #1a0c10, #5a1522);
}

.hero-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -60px;
  top: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: spin 36s linear infinite;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 180, 120, 0.28);
}

.hero-orbit::before {
  inset: 48px;
}

.hero-orbit::after {
  inset: 110px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 8rem 0 4.8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 750;
  color: #ffb089;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-hot), transparent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 760;
  max-width: 12ch;
  margin-bottom: 1.15rem;
}

.hero-brand-line {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.85rem;
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.3rem;
  border-radius: 14px;
  font-weight: 720;
  font-size: 0.94rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-hot), var(--accent) 45%, var(--brand));
  color: white;
  box-shadow: 0 14px 34px rgba(229, 57, 42, 0.35);
}

.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

.btn-dark {
  background: var(--ink);
  color: white;
}

.btn-brand {
  background: var(--brand);
  color: white;
}

/* Sections */
.section { padding: 5.2rem 0; }

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.product-card {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.7rem;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  min-height: 220px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 57, 42, 0.16), transparent 70%);
  transition: transform 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(229, 57, 42, 0.28);
}

.product-card:hover::before {
  transform: scale(1.35) translate(-12px, -12px);
}

.product-card .status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--brand);
}

.product-card .status.live::before,
.product-card .status.soon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(229, 57, 42, 0.5);
  animation: pulse 1.8s infinite;
}

.product-card .status.soon {
  color: var(--steel-dark);
}

.product-card .status.soon::before {
  background: var(--steel);
  box-shadow: none;
  animation: none;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
  position: relative;
}

.product-card p {
  color: var(--muted);
  position: relative;
  max-width: 32ch;
}

.product-card .arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--brand);
  transition: transform 0.25s ease;
}

.product-card:hover .arrow {
  transform: translateX(4px);
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  padding: 1rem 0;
}

.marquee {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.marquee span { opacity: 0.55; }
.marquee span::after {
  content: "◆";
  margin-left: 2.5rem;
  color: var(--accent);
  opacity: 0.7;
}

/* Split / panels */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.panel-kicker {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.panel h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.panel p { color: var(--muted); margin-bottom: 1.1rem; }

.panel ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.panel li {
  position: relative;
  padding-left: 1.15rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Page hero */
.page-hero {
  padding: 4.6rem 0 2.2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0.45rem 0 0.9rem;
}

.page-hero p {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-list {
  display: grid;
  gap: 0;
}

.feature-item {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.feature-item:last-child { border-bottom: 1px solid var(--line); }

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.feature-item p { color: var(--muted); }

/* Coming soon */
.soon-stage {
  position: relative;
  border-radius: 32px;
  padding: 3rem 2rem;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(135deg, rgba(26, 12, 16, 0.96), rgba(90, 21, 34, 0.9)),
    var(--brand-deep);
  text-align: center;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.soon-stage::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 180, 120, 0.35);
  animation: spin 22s linear infinite;
}

.soon-stage::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: spin 14s linear infinite reverse;
}

.soon-content { position: relative; z-index: 1; max-width: 28rem; }

.soon-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0.7rem 0;
}

.soon-content p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.4rem;
}

.countdown-pills {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.countdown-pills span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 650;
}

/* Contact */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}

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

.contact-box a {
  font-weight: 750;
  color: var(--brand);
}

/* CTA */
.cta-band {
  margin: 0.5rem 0 5rem;
  border-radius: 32px;
  padding: 2.4rem;
  color: white;
  background:
    linear-gradient(120deg, rgba(26, 12, 16, 0.96), rgba(110, 24, 36, 0.92)),
    var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.3rem 0 2.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  color: var(--brand);
  font-weight: 750;
  font-size: 1.1rem;
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 57, 42, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(229, 57, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 57, 42, 0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .product-grid,
  .split,
  .contact-row {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 1.2rem;
    right: 1.2rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.55rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .nav-cta { margin-left: 0; }
  .hero-orbit { opacity: 0.35; width: 360px; height: 360px; }
  .hero-inner { padding-top: 6.2rem; }
}
