:root {
  --bg: #000000;
  --bg-soft: #121212;
  --panel: rgba(30, 30, 30, 0.78);
  --panel-strong: rgba(33, 33, 33, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #b4b9c6;
  --accent: #ff5722;
  --accent-2: #ff8a65;
  --headline-font: "Outfit", "Segoe UI", sans-serif;
  --body-font: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 87, 34, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 138, 101, 0.14), transparent 22%),
    linear-gradient(180deg, #000000 0%, #121212 50%, #000000 100%);
  font-family: var(--body-font);
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.45;
  pointer-events: none;
}

.ambient-one {
  width: 18rem;
  height: 18rem;
  top: 8rem;
  right: -4rem;
  background: rgba(255, 87, 34, 0.24);
}

.ambient-two {
  width: 22rem;
  height: 22rem;
  top: 36rem;
  left: -6rem;
  background: rgba(255, 138, 101, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
  background:
    linear-gradient(135deg, rgba(255, 87, 34, 1), rgba(255, 138, 101, 0.92));
  color: #000000;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.28);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.78);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #fff;
}

.hero-section,
.content-section,
.cta-section,
.hook-section,
.legal-section {
  position: relative;
}

.py-lg-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--accent-2);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 1.25rem;
}

.hero-title,
.section-intro h2,
.hook-panel h2,
.cta-panel h2,
.legal-card h1 {
  font-family: var(--headline-font);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-title {
  max-width: 14ch;
}

.hero-main-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 24px rgba(255, 87, 34, 0.4));
  animation: float-logo 6s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-lead,
.section-intro p,
.hook-panel p,
.cta-panel p,
.legal-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #ff7043);
  border: none;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(255, 87, 34, 0.24);
}

.btn-accent:hover,
.btn-accent:focus {
  color: #ffffff;
  background: linear-gradient(135deg, #f4511e, #ff8a65);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.hero-card,
.hook-panel,
.feature-card,
.locale-card,
.cta-panel,
.legal-card,
.seo-callout {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -3rem -5rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.18), transparent 70%);
}

.hero-card-label,
.hook-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.stack-card {
  padding: 1.15rem 1.15rem 1rem;
  border-radius: 1.25rem;
  margin-bottom: 1rem;
}

.stack-card h2,
.feature-card h3,
.locale-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.stack-card p,
.feature-card p,
.locale-card li {
  color: var(--muted);
}

.stack-card-primary {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.16), rgba(255, 87, 34, 0.05));
  border: 1px solid rgba(255, 87, 34, 0.18);
}

.stack-card-secondary {
  background: linear-gradient(135deg, rgba(255, 138, 101, 0.11), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 138, 101, 0.18);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.metric-tile {
  padding: 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.metric-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.hook-section {
  margin-top: -1rem;
  padding-bottom: 2rem;
}

.hook-panel {
  padding: 1.5rem 1.6rem;
  background:
    linear-gradient(135deg, rgba(255, 87, 34, 0.11), rgba(255, 138, 101, 0.06)),
    var(--panel-strong);
}

.content-section {
  padding: 5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-intro {
  max-width: 44rem;
}

.section-intro.narrow {
  max-width: 54rem;
  margin-bottom: 1rem;
}

.name-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.name-cloud span,
.arena-card span {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f3efe7;
}

.feature-card {
  height: 100%;
  padding: 1.35rem;
}

.feature-number {
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.seo-callout {
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
  color: #f8f3ea;
}

.locale-card {
  height: 100%;
  padding: 1.25rem;
}

.locale-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.locale-card li + li {
  margin-top: 0.55rem;
}

.arena-card {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 1.5rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(255, 138, 101, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
  border: 1px solid var(--line);
}

.cta-section {
  padding: 1rem 0 5rem;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 87, 34, 0.12), rgba(255, 138, 101, 0.05)),
    var(--panel-strong);
}

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

.legal-card {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
}

.legal-copy h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.legal-copy ul {
  padding-left: 1.2rem;
}

.legal-copy li {
  margin-bottom: 0.55rem;
}

.policy-note {
  margin: 1rem 0 1.5rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 87, 34, 0.08);
  color: #ffe2d2;
  border-radius: 0.8rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.85);
}

.text-footer-muted {
  color: var(--muted);
  max-width: 42rem;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-link:hover,
.footer-link:focus {
  color: var(--accent-2);
}

@media (max-width: 991.98px) {
  .hero-main-logo {
    max-width: 180px;
  }
}

@media (max-width: 767.98px) {
  .hero-main-logo {
    max-width: 120px;
  }
  .display-3.hero-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .content-section,
  .cta-section {
    padding: 4rem 0;
  }

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

/* App Screenshots & Device Frames */

.app-screenshot {
  display: block;
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 2px rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-screenshot-wrapper {
  position: relative;
  perspective: 1200px;
  display: flex;
  justify-content: center;
}

.hero-screenshot {
  width: 280px;
  transform: rotateY(-18deg) rotateX(8deg) scale(1.05);
  transition: transform 0.4s ease-out;
}

.hero-screenshot:hover {
  transform: rotateY(-8deg) rotateX(4deg) scale(1.08);
}

.hero-screenshot-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.2), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.app-screenshot-flat {
  max-height: 560px;
  width: auto;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
