:root {
  --bg: #0b1020;
  --panel: #151c33;
  --panel-soft: #1b2647;
  --text: #f7f9ff;
  --muted: #afbbd9;
  --yellow: #ffd84d;
  --yellow-strong: #ffc929;
  --border: #2a3558;
  --success: #71d49a;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(5, 9, 25, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #1e2b4f 0%, var(--bg) 42%);
  line-height: 1.5;
}

body {
  overflow-x: hidden;
}

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  backdrop-filter: blur(8px);
  background: rgba(11, 16, 32, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrapper,
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 3.28rem;
  width: auto;
}

.btn {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-strong) 100%);
  border: none;
  color: #0c1020;
  font-weight: 700;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 216, 77, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255, 216, 77, 0.32);
}

.btn-sm {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 0.95rem 1.45rem;
  font-size: 1rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: none;
}

.hero {
  padding: 4.4rem 0 3.3rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 42rem;
  margin: 0;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--success);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  margin: 0.9rem 0 1.1rem;
  font-size: clamp(1.6rem, 4.4vw, 3.45rem);
  line-height: 1.08;
  max-width: 16ch;
  text-wrap: balance;
}

.hero-copy {
  max-width: 54ch;
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-trust {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.hero-trust p {
  margin: 0;
  color: #d9e2f8;
  font-size: 1.02rem;
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: inline-block;
  text-align: left;
}

.hero-points li {
  margin-bottom: 0.45rem;
}

.hero-points li::before {
  content: "✓";
  color: var(--yellow);
  margin-right: 0.5rem;
}

.hero-card,
.card,
.step,
.checkout-form,
.faq-item {
  background: linear-gradient(180deg, var(--panel) 0%, #121a32 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero-card {
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 0.85rem;
}

.hero-feature-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.7rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #d9e2f8;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.feature-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.price-row {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  overflow-x: hidden;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  text-align: center;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.section-copy {
  color: var(--muted);
  max-width: 62ch;
}

.cards {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.step,
.faq-item {
  padding: 1rem;
}

.card p,
.step p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-highlight {
  border-color: rgba(255, 216, 77, 0.65);
  box-shadow: 0 10px 30px rgba(255, 216, 77, 0.15);
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.steps {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-num {
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.75rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  font-weight: 700;
}

.section-cta .cta-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
}

.cta-content {
  max-width: 40rem;
}

.cta-eyebrow {
  margin: 0 0 0.7rem;
  color: var(--success);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.cta-copy {
  margin: 0;
  max-width: 52ch;
  color: #d6e1fb;
}

.cta-highlights {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.6rem;
}

.cta-highlights p {
  margin: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  font-size: 0.98rem;
}

.cta-highlights strong {
  color: var(--text);
}

.checkout-form {
  padding: 1.3rem;
  display: grid;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}

.checkout-form label {
  font-size: 0.95rem;
  color: #e2e9fb;
  font-weight: 600;
}

.checkout-form input {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0e152b;
  color: var(--text);
  padding: 0.9rem 0.85rem;
  font-size: 1rem;
}

.checkout-form input:focus {
  outline: 2px solid rgba(255, 216, 77, 0.55);
  border-color: transparent;
}

.form-note {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.faq-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  background: #080d1a;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-grid,
  .section-cta .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .eyebrow {
    display: none;
  }

  h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-card {
    max-width: 36rem;
    width: 100%;
    margin: 0 auto;
  }

  .cta-content {
    margin: 0 auto;
    text-align: center;
  }

  .cta-copy {
    margin: 0 auto;
  }

  .cta-highlights {
    justify-items: center;
  }

  .cta-highlights p {
    width: min(100%, 34rem);
  }

  .checkout-form {
    max-width: 35rem;
    width: 100%;
    margin: 0 auto;
  }

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

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

@media (max-width: 640px) {
  .section {
    padding: 2.75rem 0;
  }

  .container {
    width: min(1100px, 92vw);
  }

  .site-header {
    position: sticky;
  }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .hero-grid {
    gap: 0.45rem;
  }

  .hero-content {
    text-align: center;
  }

  h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.65rem);
    line-height: 1.08;
    max-width: 15ch;
    margin: 0.65rem auto 0.9rem;
  }

  .hero-copy {
    display: none;
    font-size: 0.95rem;
    max-width: 34ch;
  }

  .hero-trust {
    gap: 0.6rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(8, 13, 30, 0.32);
    justify-items: center;
    text-align: center;
  }

  .hero-trust p {
    font-size: 0.88rem;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-card {
    padding: 1.1rem;
    border-radius: 22px;
  }

  .hero-card h2 {
    font-size: clamp(1.05rem, 5.7vw, 1.35rem);
    margin-bottom: 0.7rem;
    text-align: left;
  }

  .hero-feature-grid {
    margin-bottom: 0.7rem;
    gap: 0.45rem;
  }

  .hero-feature-chip {
    min-height: 2.75rem;
    padding: 0.45rem 0.55rem;
    font-size: 0.76rem;
  }

  .price-row {
    margin-top: 0.1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .price-label {
    font-size: 0.92rem;
  }

  .price {
    font-size: 2.4rem;
  }

  .price-row .btn {
    width: 100%;
    min-height: 2.85rem;
    font-size: 1.04rem;
  }

  .cards,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    display: flex;
    width: max-content;
    gap: 0.7rem;
    padding: 0.85rem 0;
    text-align: left;
    animation: trust-reel 14s linear infinite;
    will-change: transform;
  }

  .trust-grid p {
    flex: 0 0 auto;
    color: #d5def6;
  }

  .trust-pill {
    white-space: nowrap;
    font-size: 0.9rem;
    background: rgba(12, 19, 38, 0.76);
  }

  .nav-wrapper,
  .footer-inner {
    gap: 0.75rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner p {
    margin: 0;
  }

  .nav-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0;
  }

  .logo {
    font-size: 0.9rem;
    gap: 0.45rem;
    min-width: 0;
    overflow: hidden;
  }

  .logo img {
    height: clamp(2.2rem, 9vw, 3rem);
    max-width: 100%;
  }

  .logo-mark {
    width: 1.85rem;
    height: 1.85rem;
    flex: 0 0 auto;
  }

  .btn-sm {
    font-size: 0.95rem;
    padding: 0.7rem 1.05rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .hero-points {
    font-size: 0.98rem;
  }

  .section-cta {
    padding-top: 2.35rem;
    padding-bottom: 1.5rem;
  }

  #faq.section {
    padding-top: 1.6rem;
  }

  .cta-eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.78rem;
  }

  .cta-highlights {
    margin-top: 0.9rem;
    gap: 0.5rem;
  }

  .cta-highlights p {
    text-align: left;
    font-size: 0.92rem;
    padding: 0.62rem 0.72rem;
  }

  .checkout-form {
    padding: 1rem;
    gap: 0.62rem;
    border-radius: 16px;
  }

  .checkout-form .btn-lg {
    width: 100%;
  }
}

@keyframes trust-reel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% + 92vw));
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .trust-grid {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}
