:root {
  --bg: #0d0f10;
  --bg-soft: #161a1d;
  --surface: #1b2024;
  --surface-elevated: #222930;
  --text: #f5f1e5;
  --text-muted: #c8c2b3;
  --accent: #b9ff2a;
  --accent-soft: #dbff8f;
  --line: rgba(245, 241, 229, 0.15);
  --max-width: 1120px;
  --radius-lg: 1.1rem;
  --radius-md: 0.8rem;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 4.4rem;
  min-height: 100vh;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 14%, rgba(185, 255, 42, 0.08), transparent 30%),
    radial-gradient(circle at 88% 5%, rgba(255, 255, 255, 0.07), transparent 34%),
    linear-gradient(140deg, #08090a, #111417 48%, #0d1012);
  line-height: 1.55;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: min(50vw, 500px);
  aspect-ratio: 1 / 1;
  border-radius: 40% 60% 58% 42%;
  filter: blur(58px);
  pointer-events: none;
}

body::before {
  top: -180px;
  left: -120px;
  background: rgba(185, 255, 42, 0.11);
}

body::after {
  right: -190px;
  bottom: 8vh;
  background: rgba(255, 255, 255, 0.05);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  z-index: 1000;
  padding: 0.6rem 0.9rem;
  background: var(--accent);
  color: #111;
  border-radius: 0.4rem;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.container {
  width: min(var(--max-width), 92vw);
  margin-inline: auto;
}

.section {
  padding: 4.2rem 0;
}

.section-header {
  margin-bottom: 1.8rem;
}

.section-header h2 {
  margin: 0.3rem 0 0;
}

.eyebrow {
  margin: 0;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-size: 0.79rem;
}

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", "Segoe UI", sans-serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.1rem, 6.8vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 3.7vw, 1.45rem);
}

p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.9rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #d6ff76, #b9ff2a 45%, #96d619);
  color: #111;
  box-shadow: 0 18px 26px rgba(156, 224, 36, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 20px 28px rgba(156, 224, 36, 0.34);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(7, 8, 10, 0.74);
}

.header-inner {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Bricolage Grotesque", "Segoe UI", sans-serif;
  font-size: 1.23rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--accent), #e8ffaf);
  box-shadow: 0 0 0 3px rgba(185, 255, 42, 0.22);
}

.nav-toggle {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-content: center;
  gap: 0.2rem;
}

.nav-toggle-bar {
  width: 1rem;
  height: 2px;
  background: var(--text);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 4vw;
  right: 4vw;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: none;
  flex-direction: column;
  padding: 0.5rem;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  display: block;
  text-decoration: none;
  padding: 0.64rem 0.72rem;
  border-radius: 0.55rem;
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  background: rgba(185, 255, 42, 0.14);
  color: var(--accent);
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding-top: 2.5rem;
}

.top-banner {
  margin: 0 0 1.25rem;
  position: sticky;
  top: 5.1rem;
  z-index: 30;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.top-banner img {
  width: 100%;
  max-height: min(68vh, 780px);
  object-fit: cover;
}

.hero-grid {
  display: grid;
  gap: 1.35rem;
}

.hero-copy h1 {
  margin-top: 0.35rem;
}

.hero-subheadline {
  margin-top: 1.1rem;
  font-size: 1.04rem;
  max-width: 48ch;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-app-icon {
  margin: 0;
  display: grid;
  place-items: center;
}

.hero-app-icon img {
  width: min(100%, 280px);
  height: auto;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.steps-grid,
.benefits-grid {
  display: grid;
  gap: 0.95rem;
}

.benefits-banner {
  margin: 0 0 1.8rem;
  position: relative;
  min-height: clamp(260px, 34vw, 460px);
}

.benefits-banner-base,
.benefits-banner-front {
  position: absolute;
  width: min(56%, 620px);
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.benefits-banner-base {
  left: 0.35rem;
  bottom: 0;
  z-index: 1;
}

.benefits-banner-front {
  right: 0.35rem;
  top: 0.35rem;
  z-index: 2;
}

@media (max-width: 779px) {
  .benefits-banner {
    min-height: auto;
    display: grid;
    gap: 0.85rem;
  }

  .benefits-banner-base,
  .benefits-banner-front {
    position: static;
    width: 100%;
  }
}

.step-card,
.benefit-card,
.trust-card,
.faq-card,
.support-panel,
.contact-panel,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

.step-number {
  display: inline-flex;
  min-width: 2.2rem;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(185, 255, 42, 0.17);
  color: var(--accent);
  padding: 0.22rem 0.6rem;
}

.step-card h3,
.benefit-card h3 {
  margin-top: 0.68rem;
}

.pill-list {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(185, 255, 42, 0.3);
  color: var(--accent-soft);
  font-size: 0.9rem;
}

.trust-grid {
  display: grid;
  gap: 0.95rem;
}

details {
  border-top: 1px solid var(--line);
  padding: 0.64rem 0;
}

details:first-of-type {
  margin-top: 0.4rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

details[open] summary::after {
  content: "-";
}

.final-cta {
  text-align: left;
  background:
    radial-gradient(circle at top right, rgba(185, 255, 42, 0.18), transparent 48%),
    rgba(255, 255, 255, 0.05);
}

.final-cta .btn {
  margin-top: 1.2rem;
}

.support-hero {
  padding-top: 2.5rem;
}

.support-layout {
  display: grid;
  gap: 0.95rem;
}

.response-time {
  color: var(--accent-soft);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding: 1.7rem 0 2.4rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--accent-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.56s ease,
    transform 0.56s ease;
}

.reveal.is-visible,
body:not(.is-loaded) .reveal {
  opacity: 1;
  transform: none;
}

@media (min-width: 780px) {
  .section {
    padding: 5.2rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.5rem 0.74rem;
  }

  .hero-grid,
  .support-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 1.4rem;
  }

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

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

  .trust-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .final-cta {
    text-align: center;
    padding: 2rem;
  }

  .final-cta .btn {
    margin-top: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}
