:root {
  --orange: #ff5a00;
  --orange-soft: #ff7a33;
  --gold: #ffb830;
  --green: #22c55e;
  --blue: #3b82f6;
  --bg: #0f1117;
  --bg-mid: #1a1d27;
  --bg-card: #1a1d27;
  --bg-elevated: #242836;
  --text: #f4f4f5;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1120px;
  --font-display: "Bebas Neue", Impact, system-ui, sans-serif;
  --font-body: Inter, system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(15, 17, 23, 0.82);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand__mark {
  width: 8px;
  height: 28px;
  border-radius: 2px;
  background: var(--orange);
}

.brand__word {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  line-height: 1;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
}

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

.btn--primary {
  background: var(--orange);
  color: #111;
}

.btn--primary:hover {
  background: var(--orange-soft);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--lg {
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% 0 auto;
  height: 70%;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 90, 0, 0.22), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.hero h1 span {
  color: var(--orange);
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero__meta strong {
  color: var(--text);
  font-weight: 700;
}

.hero__card {
  background: linear-gradient(160deg, rgba(255, 90, 0, 0.12), transparent 50%), var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero__card h3 {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--orange);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.stat {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* Sections */
section {
  padding: 4rem 0;
}

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

.section-head .eyebrow {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

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

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

.features {
  display: grid;
  gap: 1rem;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  transition: border-color 0.15s, transform 0.15s;
}

.feature:hover {
  border-color: rgba(255, 90, 0, 0.45);
  transform: translateY(-2px);
}

.feature__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 90, 0, 0.12);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Platforms */
.platforms {
  background: linear-gradient(180deg, transparent, rgba(255, 90, 0, 0.05), transparent);
}

.platform-grid {
  display: grid;
  gap: 1rem;
}

.platform {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--bg-mid);
}

.platform h3 {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--orange);
}

.platform p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  padding: 0 0 4.5rem;
}

.cta-band__inner {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse 80% 100% at 100% 0%, rgba(255, 90, 0, 0.2), transparent 55%),
    var(--bg-card);
  padding: 2rem 1.5rem;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: 0.05em;
  margin: 0 0 0.65rem;
}

.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  color: var(--text-muted);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer a:hover {
  color: var(--orange);
}

.footer__brand {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--orange);
  font-size: 1.1rem;
}

@media (min-width: 720px) {
  .nav__links {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

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

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

  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cta-band__inner {
    padding: 2.75rem;
  }
}

@media (min-width: 960px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* —— Product screenshots / phone frames —— */
.phone-frame {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.phone-frame__bezel {
  width: min(100%, 280px);
  border-radius: 36px;
  border: 3px solid #2a2e3a;
  background: #0a0b10;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 28px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(255, 90, 0, 0.08);
  overflow: hidden;
  line-height: 0;
}

.phone-frame__bezel img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-frame figcaption {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Homepage product showcase */
.showcase {
  padding-top: 0;
}

.showcase__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  justify-items: center;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 200px;
  color: inherit;
  transition: transform 0.15s;
}

.showcase-card:hover {
  transform: translateY(-4px);
}

.showcase-card .phone-frame__bezel {
  width: 100%;
  border-radius: 28px;
}

.showcase-card__label {
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.showcase-card__hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -0.45rem;
}

.feature--link {
  display: block;
  color: inherit;
  height: 100%;
}

.feature--link .feature__more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
}

/* Feature one-pager */
.page-feature .feature-hero {
  padding: 2.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-feature .feature-hero::before {
  content: "";
  position: absolute;
  inset: -10% 0 auto;
  height: 55%;
  background: radial-gradient(
    ellipse 70% 55% at 70% 0%,
    color-mix(in srgb, var(--page-accent, var(--orange)) 22%, transparent),
    transparent 70%
  );
  pointer-events: none;
}

.feature-hero__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.feature-hero__eyebrow {
  color: var(--page-accent, var(--orange));
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}

.feature-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.feature-hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 1.25rem;
}

.feature-hero__bullets {
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.feature-hero__shot {
  display: flex;
  justify-content: center;
}

.feature-hero__shot .phone-frame__bezel {
  width: min(100%, 300px);
}

.feature-gallery {
  padding-top: 0;
}

.feature-gallery__row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature-gallery__row .phone-frame__bezel {
  width: min(100%, 240px);
}

.feature-related {
  padding-top: 1rem;
}

.related-grid {
  display: grid;
  gap: 0.85rem;
}

.related-card {
  display: block;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.15s, transform 0.15s;
}

.related-card:hover {
  border-color: rgba(255, 90, 0, 0.45);
  transform: translateY(-2px);
}

.related-card__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.related-card__title {
  font-weight: 700;
  font-size: 1.05rem;
}

/* Tour index */
.tour-hero {
  padding-top: 2.5rem;
}

.tour-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin: 0 0 0.75rem;
}

.tour-hero__head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.tour-grid {
  display: grid;
  gap: 1.25rem;
}

.tour-card {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.15s, transform 0.15s;
}

.tour-card:hover {
  border-color: rgba(255, 90, 0, 0.45);
  transform: translateY(-2px);
}

.tour-card__phone {
  width: min(140px, 40%);
  border-radius: 22px;
  border: 2px solid #2a2e3a;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  justify-self: center;
}

.tour-card__phone img {
  width: 100%;
  height: auto;
  display: block;
}

.tour-card__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.tour-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.tour-card p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.tour-card__link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange);
}

@media (min-width: 720px) {
  .feature-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

  .tour-card {
    grid-template-columns: 140px 1fr;
  }

  .tour-card__phone {
    width: 100%;
    justify-self: start;
  }

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

@media (min-width: 960px) {
  .related-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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