:root {
  --bg: #101111;
  --bg-soft: #191a19;
  --gold: #c6a76a;
  --gold-soft: rgba(198, 167, 106, 0.16);
  --panel: rgba(45, 45, 45, 0.82);
  --panel-strong: #2f302f;
  --panel-soft: rgba(71, 71, 71, 0.46);
  --line: rgba(163, 186, 148, 0.18);
  --line-strong: rgba(174, 197, 156, 0.24);
  --text: #f5f5f0;
  --text-soft: rgba(245, 245, 240, 0.72);
  --text-muted: rgba(245, 245, 240, 0.48);
  --green: #58f255;
  --green-deep: #2f6f2e;
  --green-soft: rgba(88, 242, 85, 0.14);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --font-display: "SF Pro Display", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-body: "SF Pro Text", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 50% 0%, rgba(198, 167, 106, 0.1), transparent 18%),
    radial-gradient(circle at top left, rgba(88, 242, 85, 0.1), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.04), transparent 20%),
    linear-gradient(180deg, #121313 0%, #171816 54%, #121313 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 78px,
      rgba(255, 255, 255, 0.015) 79px
    );
  pointer-events: none;
  opacity: 0.7;
}

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

a {
  color: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1260px, calc(100% - 32px));
  margin: 18px auto 42px;
}

.hero,
.section,
.site-footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  overflow: hidden;
  border-radius: 40px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(10, 11, 10, 0.48), rgba(10, 11, 10, 0.78)),
    radial-gradient(circle at top left, rgba(88, 242, 85, 0.08), transparent 24%),
    radial-gradient(circle at 75% 20%, rgba(198, 167, 106, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(38, 39, 38, 0.96), rgba(21, 22, 21, 0.98));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 11, 0.52), rgba(12, 12, 11, 0.72)),
    linear-gradient(90deg, rgba(12, 12, 11, 0.58), rgba(12, 12, 11, 0.24) 44%, rgba(12, 12, 11, 0.46)),
    url("./assets/hero-background.jpeg") center center / cover no-repeat;
  opacity: 0.42;
  filter: saturate(0.62) brightness(0.58) contrast(0.92) blur(1px);
  pointer-events: none;
}

.topbar,
.hero-layout {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
  position: sticky;
  top: 14px;
  padding: 12px 14px;
  border-radius: 24px;
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(20, 21, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 110px;
  height: 78px;
  background: transparent;
  border: none;
  overflow: visible;
  flex-shrink: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  transform: none;
  filter:
    brightness(1.06)
    contrast(1.04)
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  max-width: 30ch;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.topbar-actions,
.hero-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-link,
.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.pill-link {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.button {
  font-weight: 700;
}

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

.button-primary {
  color: #081006;
  background: linear-gradient(135deg, #d8ba7f, #b78f4e);
  box-shadow: 0 14px 34px rgba(198, 167, 106, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.eyebrow,
.screen-kicker,
.landing-icon {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--text-muted);
}

.eyebrow-green {
  color: var(--gold);
}

.hero h1,
.section-heading h2,
.screen-feature h3,
.screen-summary-card h3,
.cta-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.02;
  font-weight: 750;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.lead,
.section-heading p,
.screen-copy p,
.cta-copy p,
.site-footer p {
  line-height: 1.75;
  color: var(--text-soft);
}

.lead {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-tagline {
  margin: 18px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.hero-signature p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-soft);
}

.hero-signature-mark,
.footer-brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: transparent;
  border: none;
  flex-shrink: 0;
}

.hero-signature-mark img,
.footer-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-card,
.site-footer {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(53, 53, 53, 0.92), rgba(41, 41, 41, 0.88));
  border: 1px solid var(--line);
}

.stat-card {
  padding: 18px;
}

.stat-value {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  color: var(--text-soft);
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-items: start;
  justify-items: center;
}

.phone-shell {
  padding: 10px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
  transition: transform 220ms ease, box-shadow 220ms ease;
  transform-style: preserve-3d;
}

.phone-shell img {
  width: 100%;
  border-radius: 34px;
}

.phone-shell:hover {
  box-shadow: 0 40px 96px rgba(0, 0, 0, 0.5);
}

.phone-spotlight-main {
  width: min(100%, 390px);
}

.hero-note {
  max-width: 420px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(53, 53, 53, 0.92), rgba(41, 41, 41, 0.88));
  border: 1px solid var(--line);
}

.hero-note h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.hero-note p {
  margin: 0;
  line-height: 1.75;
  color: var(--text-soft);
}

.section {
  margin-top: 26px;
  padding: 28px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(28, 29, 28, 0.98), rgba(19, 19, 19, 0.98));
}

.feature-intro h2,
.section-heading h2,
.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.screen-stack {
  display: grid;
  gap: 20px;
}

.screen-feature,
.screen-summary-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(53, 53, 53, 0.92), rgba(41, 41, 41, 0.88));
  border: 1px solid var(--line);
}

.screen-feature {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
}

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

.screen-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
}

.screen-feature h3,
.screen-summary-card h3 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.screen-points {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.screen-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.screen-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.screen-thumb {
  width: 100%;
  max-width: 210px;
  justify-self: end;
}

.screen-thumb img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.feature-intro,
.audience-showcase,
.extended-features {
  background:
    linear-gradient(180deg, rgba(26, 27, 26, 0.98), rgba(19, 19, 19, 0.98));
}

.landing-card-grid,
.extended-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.landing-info-card,
.extended-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(48, 49, 48, 0.92), rgba(35, 36, 35, 0.9));
  border: 1px solid rgba(198, 167, 106, 0.16);
  box-shadow: var(--shadow);
}

.landing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: var(--gold-soft);
  border: 1px solid rgba(198, 167, 106, 0.16);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.landing-info-card h3,
.showcase-point h3,
.extended-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.1;
}

.landing-info-card p,
.showcase-point p,
.extended-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--text-soft);
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: center;
}

.showcase-copy > p {
  max-width: 62ch;
}

.showcase-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.showcase-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(48, 49, 48, 0.92), rgba(35, 36, 35, 0.9));
  border: 1px solid rgba(198, 167, 106, 0.16);
}

.showcase-visual {
  position: relative;
  min-height: 620px;
}

.device-stack {
  position: absolute;
  width: min(100%, 300px);
}

.device-stack-front {
  left: 18px;
  top: 120px;
  z-index: 2;
  transform: rotate(-9deg);
}

.device-stack-back {
  right: 12px;
  top: 20px;
  z-index: 1;
  transform: rotate(8deg);
}

.extended-media {
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.extended-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.extended-media-map {
  background:
    linear-gradient(180deg, rgba(12, 13, 12, 0.08), rgba(12, 13, 12, 0.18)),
    rgba(12, 13, 12, 0.9);
}

.extended-media-map img {
  width: 100%;
  height: clamp(260px, 30vw, 360px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 34%;
}

.extended-media-analysis img {
  width: 100%;
  height: clamp(260px, 30vw, 360px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 12%;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-copy {
  max-width: 760px;
}

.store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.store-badge {
  min-width: 150px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(14, 15, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.store-small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.store-name {
  font-size: 1.08rem;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  filter: blur(6px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
}

[data-reveal="up"] {
  transform: translateY(28px);
}

[data-reveal="left"] {
  transform: translateX(28px);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0);
}

.site-footer {
  margin-top: 26px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 760px;
}

.footer-note {
  font-weight: 700;
  color: var(--text);
}

.not-found {
  min-height: calc(100vh - 120px);
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(28, 29, 28, 0.98), rgba(19, 19, 19, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.not-found h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.02;
}

.eyebrow-dark {
  color: var(--green);
}

@media (max-width: 1180px) {
  .hero-layout,
  .landing-card-grid,
  .extended-grid,
  .showcase-layout,
  .cta-section,
  .screen-feature,
  .screen-summary-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-items: stretch;
  }

  .showcase-visual {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .device-stack {
    position: relative;
    inset: auto;
    width: min(100%, 320px);
    transform: none;
    justify-self: center;
  }

  .screen-thumb {
    max-width: 220px;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 18px, 1260px);
    margin-top: 10px;
  }

  .hero,
  .section,
  .site-footer,
  .not-found {
    padding: 22px;
    border-radius: 28px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 34px;
    top: 10px;
  }

  .brand-mark {
    width: 90px;
    height: 64px;
  }

  .brand-subtitle {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-stats,
  .hero-visual {
    grid-template-columns: 1fr;
  }

  .screen-feature h3,
  .screen-summary-card h3,
  .landing-info-card h3,
  .showcase-point h3,
  .extended-card h3 {
    font-size: 1.55rem;
  }

  .hero-signature,
  .footer-brand {
    align-items: flex-start;
  }
}
