:root {
  --bg: #07100b;
  --bg-soft: #0d1a12;
  --surface: rgba(14, 27, 20, 0.84);
  --surface-strong: rgba(10, 20, 15, 0.95);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(13, 242, 89, 0.22);
  --text: #f3fff7;
  --muted: #b5c9bc;
  --primary: #0df259;
  --primary-deep: #08c84a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(13, 242, 89, 0.18), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(8, 200, 74, 0.12), transparent 22%),
    linear-gradient(180deg, #030504 0%, #07100b 36%, #0c1d14 72%, #102216 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  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: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  pointer-events: none;
}

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

code {
  font-family: "Space Grotesk", sans-serif;
  color: var(--primary);
}

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header,
.site-footer,
.hero,
.trust-strip,
.feature-card,
.step-card,
.callout,
.support-card {
  backdrop-filter: blur(12px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #021007;
  background: linear-gradient(135deg, #18ff73, #0df259, #08c84a);
  box-shadow: 0 14px 34px rgba(13, 242, 89, 0.24);
}

.image-mark {
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.image-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.small-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

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

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 9, 7, 0.45);
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

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

.nav-cta,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-cta {
  padding: 14px 18px;
  background: linear-gradient(135deg, #18ff73, #0df259);
  color: #041008;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(13, 242, 89, 0.18);
}

.nav-cta:hover,
.store-button:hover {
  transform: translateY(-2px);
}

.hero,
.support-hero {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(10, 18, 14, 0.92), rgba(13, 26, 18, 0.7)),
    rgba(8, 16, 11, 0.72);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 42px;
  align-items: center;
  margin-top: 18px;
}

.hero::after,
.support-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -35% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 242, 89, 0.2), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8dffb4;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.2rem;
}

.hero-text,
.section-heading p:last-child,
.feature-card p,
.step-card p,
.callout-points p,
.support-card p,
.support-list li,
.footer-copy,
.store-note {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.store-button {
  min-width: 210px;
  padding: 16px 22px;
  gap: 14px;
  flex-direction: row;
  align-items: center;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(13, 242, 89, 0.16), rgba(6, 12, 8, 0.9));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.store-button.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(6, 12, 8, 0.9));
  border-color: var(--line);
}

.store-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.store-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.store-kicker {
  color: var(--muted);
  font-size: 0.83rem;
}

.store-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.store-note {
  margin: 18px 0 0;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.phone-frame {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.14));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-primary {
  inset: 0 14% 5% 0;
  transform: rotate(-6deg);
}

.phone-secondary {
  width: 48%;
  height: 72%;
  right: 0;
  top: 6%;
  transform: rotate(10deg);
}

.phone-topbar {
  width: 42%;
  height: 24px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.screen-panel,
.screen-grid {
  height: calc(100% - 42px);
  margin: 14px;
  border-radius: 28px;
}

.screen-panel {
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(13, 242, 89, 0.18), transparent 32%),
    linear-gradient(180deg, #0a130e, #13241a);
}

.metric-card,
.scan-card,
.list-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-card {
  padding: 22px;
}

.metric-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #8dffb4;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card strong,
.scan-card strong {
  display: block;
  font-size: 1.55rem;
  font-family: "Space Grotesk", sans-serif;
}

.metric-value,
.scan-card p,
.list-row {
  color: var(--muted);
}

.scan-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 18px 20px;
}

.scan-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(13, 242, 89, 0.88), rgba(8, 200, 74, 0.72)),
    #0df259;
  box-shadow: 0 0 0 8px rgba(13, 242, 89, 0.08);
}

.scan-card p {
  margin: 0 0 4px;
}

.list-card {
  margin-top: 16px;
  padding: 10px 18px;
}

.list-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.list-row + .list-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(13, 242, 89, 0.18), transparent 38%),
    linear-gradient(180deg, #0a130e, #101b14);
}

.glow-tile {
  min-height: 98px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.glow-tile.active {
  background:
    linear-gradient(145deg, rgba(13, 242, 89, 0.28), rgba(8, 200, 74, 0.08)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(13, 242, 89, 0.18);
}

.glow-tile.wide {
  grid-column: span 2;
  min-height: 150px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.trust-strip div {
  text-align: center;
  font-weight: 600;
  color: #dfffe9;
}

.section {
  padding: 86px 0 10px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.section-heading.narrow h1,
.section-heading.narrow h2 {
  max-width: 12ch;
}

.feature-grid,
.support-grid {
  display: grid;
  gap: 20px;
}

.policy-layout {
  display: grid;
  gap: 20px;
  padding: 30px 0 24px;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.policy-card h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: none;
  margin-bottom: 14px;
}

.policy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.policy-card p + p,
.policy-card p + .policy-list,
.policy-card .policy-list + p,
.policy-card a + a {
  margin-top: 14px;
}

.policy-card a {
  display: block;
  color: #9fffc0;
  font-weight: 700;
}

.policy-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.policy-list li + li {
  margin-top: 8px;
}

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

.feature-card,
.step-card,
.support-card,
.callout {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-card,
.step-card,
.support-card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.feature-card {
  min-height: 220px;
}

.feature-card h3,
.step-card h3,
.support-card h2,
.support-card h3 {
  margin-bottom: 14px;
}

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

.step-number {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 242, 89, 0.12);
  border: 1px solid rgba(13, 242, 89, 0.16);
  color: #8dffb4;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.callout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.callout-points {
  display: grid;
  gap: 16px;
}

.callout-download {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

#top,
#features,
#how-it-works,
#download-section {
  scroll-margin-top: 110px;
}

.callout-points p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

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

.footer-brand {
  font-size: 1.2rem;
}

.footer-copy {
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.support-hero {
  margin-top: 18px;
}

.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 30px 0 24px;
}

.support-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-card.emphasis {
  background:
    radial-gradient(circle at top right, rgba(13, 242, 89, 0.14), transparent 48%),
    var(--surface-strong);
}

.support-card.wide {
  grid-column: span 2;
}

.support-card a {
  color: #9fffc0;
  font-weight: 700;
}

.support-list,
.faq-list {
  margin: 0;
  padding: 0;
}

.support-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.support-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-list p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .callout,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero,
  .support-hero {
    padding: 34px 24px;
  }

  h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 360px;
  }

  .phone-primary {
    inset: 0 22% 2% 0;
  }

  .phone-secondary {
    width: 50%;
    height: 68%;
  }

  .support-grid,
  .support-card.wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand-text {
    display: none;
  }

  .cta-row,
  .callout-download,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .store-button,
  .nav-cta {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 310px;
  }

  .phone-primary {
    inset: 4% 26% 0 0;
  }

  .phone-secondary {
    width: 54%;
    height: 64%;
    top: 10%;
  }

  .metric-card strong,
  .scan-card strong {
    font-size: 1.25rem;
  }
}
