:root {
  --bg: #140603;
  --bg-deep: #220905;
  --surface: #2e0d08;
  --surface-soft: #4a160c;
  --panel: #fff3ea;
  --ink: #0d0908;
  --text: #fff7f1;
  --muted: #ffc8aa;
  --line: #ff9b57;
  --accent: #ff6a00;
  --accent-strong: #ff3500;
  --accent-soft: #ffb347;
  --max-width: 1180px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 129, 32, 0.24), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 60, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #2f0d06 0%, var(--bg) 40%, #110503 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.footer-links a:hover {
  color: white;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 36px 0 26px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-soft);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.cta-section h2 {
  margin: 0;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 7vw, 5.9rem);
  max-width: 11ch;
}

.hero-text {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 16px 32px rgba(255, 102, 0, 0.34);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: min(100%, 420px);
  padding: 18px;
  border-radius: 42px;
  background: linear-gradient(180deg, #2d100b, #090303);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(2deg);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 56px;
  background:
    radial-gradient(circle at top, rgba(255, 111, 0, 0.5), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 57, 0, 0.4), transparent 30%);
  filter: blur(18px);
}

.phone-screen {
  overflow: hidden;
  border-radius: 30px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 153, 87, 0.24), rgba(255, 255, 255, 0) 20%),
    linear-gradient(180deg, #3b110a 0%, #160705 100%);
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-badge {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.mock-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(255, 106, 0, 0.2);
}

.mock-spotlight {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 126, 26, 0.95), rgba(255, 58, 0, 0.95));
  border-radius: 26px;
  color: #fff;
}

.mock-spotlight img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.spotlight-copy p,
.spotlight-copy h2,
.spotlight-copy span {
  margin: 0;
}

.spotlight-copy p {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spotlight-copy h2 {
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 0.95;
}

.spotlight-copy span {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.mock-grid article,
.feature-card,
.experience-card,
.policy-card,
.stats-band article,
.faq-list details,
.cta-section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.mock-grid article {
  min-height: 112px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.mock-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.mock-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.stats-band,
.feature-grid,
.experience-layout {
  display: grid;
  gap: 18px;
}

.stats-band {
  grid-template-columns: repeat(3, 1fr);
  margin: 18px 0 58px;
}

.stats-band article {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.stats-band strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.stats-band span {
  color: var(--muted);
  line-height: 1.6;
}

.feature-section,
.experience-section,
.faq-section {
  padding: 18px 0 64px;
}

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

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  max-width: 11ch;
}

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

.feature-card {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.feature-index {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 900;
}

.feature-card h3,
.experience-card h3,
.policy-card h2 {
  margin: 18px 0 10px;
  font-size: 1.3rem;
}

.feature-card p,
.experience-card p,
.policy-card p,
.faq-list p,
.cta-section p {
  color: var(--muted);
  line-height: 1.7;
}

.experience-layout {
  grid-template-columns: 1fr 1fr;
}

.experience-stack {
  display: grid;
  gap: 18px;
}

.experience-card {
  padding: 26px;
  border-radius: 28px;
}

.experience-card.accent {
  background: linear-gradient(135deg, #ff8f3b, #ff5800);
  color: white;
}

.experience-card.accent p {
  color: rgba(255, 255, 255, 0.92);
}

.experience-card.light {
  background: var(--panel);
  color: var(--ink);
}

.experience-card.light p {
  color: #67453d;
}

.experience-card.dark {
  background: linear-gradient(180deg, #381007, #210906);
}

.experience-card.outline {
  background: transparent;
  border: 2px dashed rgba(255, 185, 122, 0.35);
}

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

.faq-list details {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 6px 0 54px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 110, 0, 0.22), rgba(255, 54, 0, 0.12));
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 34px;
  color: var(--muted);
}

.site-footer p {
  margin: 6px 0 0;
}

.contact-line {
  margin-top: 14px;
}

.contact-line a,
.policy-card a,
.site-footer a {
  color: var(--accent-soft);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 700;
}

.policy-page .policy-layout {
  padding: 26px 0 54px;
}

.policy-card {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.policy-card h2 {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .hero-section,
  .stats-band,
  .feature-grid,
  .experience-layout,
  .cta-section,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section {
    padding-top: 22px;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

  .hero-visual {
    width: 100%;
  }

  .phone-mockup {
    transform: none;
  }
}

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

  .site-header {
    padding-top: 16px;
  }

  .site-nav {
    gap: 10px 14px;
    font-size: 0.95rem;
  }

  .mock-spotlight {
    grid-template-columns: 1fr;
  }

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

  .feature-card,
  .experience-card,
  .policy-card,
  .cta-section,
  .stats-band article {
    border-radius: 22px;
  }
}
