:root {
  --ink: #0e0e0e;
  --paper: #f3f1ec;
  --muted: #5a5a5a;
  --line: #d9d5cc;
  --accent: #b8f000;
  --accent-ink: #102000;
  --wash: #e8e4db;
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font: inherit;
  cursor: pointer;
  border: none;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
}

.site-nav a,
.site-nav .brand {
  pointer-events: auto;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.92rem;
}

.nav-links a {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.35rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 650;
  border-radius: 0.35rem;
  transition: transform 0.35s var(--ease), background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-zoom 14s var(--ease) forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.35) 0%, rgba(8, 8, 8, 0.15) 35%, rgba(8, 8, 8, 0.78) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(184, 240, 0, 0.18), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(5.5rem, 12vw, 8rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4rem);
  max-width: 52rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 11vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  margin-bottom: 1.25rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-copy {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
  animation: rise 0.9s var(--ease) 0.12s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s var(--ease) 0.22s both;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3.5rem;
  }
}

.offer-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  overflow: hidden;
}

.offer-item {
  background: var(--paper);
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 0.35rem;
}

.offer-item strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.offer-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-block {
  background:
    linear-gradient(145deg, #121212 0%, #1d1d1d 55%, #243000 100%);
  color: #fff;
  border-radius: 1rem;
  padding: clamp(1.75rem, 4vw, 2.4rem);
  position: relative;
  overflow: hidden;
}

.price-block::before {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  right: -4rem;
  top: -5rem;
  background: radial-gradient(circle, rgba(184, 240, 0, 0.35), transparent 65%);
  pointer-events: none;
}

.price-block > * {
  position: relative;
}

.price-block .tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.price-block h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.price-block .amount {
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 1rem 0 0.35rem;
}

.price-block .amount small {
  font-size: 0.4em;
  font-weight: 600;
  opacity: 0.7;
}

.price-block ul {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
}

.price-block li::before {
  content: "→ ";
  color: var(--accent);
}

.steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 780px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  padding-top: 1rem;
  border-top: 2px solid var(--ink);
}

.step .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}

.step p {
  color: var(--muted);
}

.proof {
  background: var(--wash);
}

.proof-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .proof-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }
}

.proof-visual {
  border-radius: 1rem;
  overflow: hidden;
  min-height: 22rem;
  position: relative;
}

.proof-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-note {
  align-self: end;
}

.proof-note a {
  display: inline-flex;
  margin-top: 1.25rem;
}

.cta-band {
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.75rem;
}

.site-footer {
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img {
    transform: none;
  }
}
