@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..700,0..100,0..1&family=JetBrains+Mono:wght@400;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #0a0e0b;
  --bg-warm: #0e1310;
  --surface: #131815;
  --surface-2: #1a211d;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f7f2;
  --text-dim: #9ca39c;
  --text-faint: #5a615b;
  --lime: #c7f564;
  --lime-glow: rgba(199, 245, 100, 0.35);
  --peach: #ffb28c;
  --mint: #7dd3c0;
  --display: "Fraunces", Georgia, serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(199, 245, 100, 0.08), transparent 65%),
    radial-gradient(ellipse 55% 45% at 90% 12%, rgba(125, 211, 192, 0.08), transparent 62%),
    linear-gradient(180deg, var(--bg-warm), var(--bg) 42%, #050806);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: -1;
}

a,
button {
  font: inherit;
}

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

.page {
  min-height: 100vh;
}

.nav,
.section,
.footer {
  width: min(1160px, calc(100vw - 36px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(19, 24, 21, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.trust-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--text);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--bg);
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime-glow);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.nav-links {
  flex-wrap: wrap;
  gap: 22px;
  color: var(--text-dim);
  font-size: 13.5px;
  font-weight: 600;
}

.nav-links a {
  transition: color 0.2s;
}

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

.section {
  padding: 86px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 78px);
  padding-top: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
}

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(48px, 7.4vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.9vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 690px;
  color: var(--text-dim);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.68;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0 24px;
  color: var(--text);
  background: transparent;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

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

.button.primary {
  border-color: transparent;
  color: var(--bg);
  background: var(--lime);
}

.button.primary:hover {
  box-shadow: 0 12px 32px var(--lime-glow);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.035);
}

.button.ghost:hover {
  border-color: var(--text-dim);
  background: var(--surface);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  color: var(--text-faint);
  font-size: 13px;
}

.trust-row span {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(19, 24, 21, 0.5);
}

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

.logo-frame {
  width: min(360px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 42px;
  background: #f4f7f2;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.logo-frame img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 46px;
  border-top: 1px solid var(--border);
}

.steps,
.feature-grid {
  display: grid;
  gap: 14px;
}

.steps article,
.feature,
.feature-card,
.price-card,
.faq article,
.legal article,
.how-grid article {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(19, 24, 21, 0.78);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.steps article:hover,
.feature:hover,
.feature-card:hover,
.faq article:hover,
.legal article:hover,
.how-grid article:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.steps article {
  padding: 24px;
}

.steps span,
.feature span {
  color: var(--lime);
  font-family: var(--mono);
  font-weight: 700;
}

.steps p,
.feature p,
.faq p,
.feature-card p,
.how-grid p,
.fine {
  color: var(--text-dim);
  line-height: 1.6;
}

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

.feature {
  display: flex;
  gap: 12px;
  padding: 20px;
}

.feature p {
  margin-bottom: 0;
}

.feature-card {
  padding: 26px;
}

.feature-card h2 {
  margin-bottom: 10px;
  font-size: 26px;
  letter-spacing: -0.025em;
}

.price-card {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(199, 245, 100, 0.1), transparent 70%), linear-gradient(180deg, var(--surface), var(--surface-2));
  border-color: rgba(199, 245, 100, 0.22);
}

.price {
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(46px, 8vw, 78px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.price-side {
  min-width: 220px;
  text-align: right;
}

.faq article {
  margin-top: 12px;
  padding: 22px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 46px 0 60px;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
}

.footer strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
}

.footer a,
.legal a,
.feature-card a {
  color: var(--mint);
  font-weight: 700;
}

.legal {
  max-width: 940px;
}

.legal h1 {
  font-size: clamp(46px, 7.5vw, 86px);
}

.legal article {
  margin-top: 18px;
  padding: 24px;
}

.legal article h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3.4vw, 40px);
  letter-spacing: -0.035em;
}

.legal article p:last-child {
  margin-bottom: 0;
}

.source-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-dim);
  line-height: 1.8;
}

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

.support-grid {
  margin: 30px 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.how-grid article {
  overflow: hidden;
}

.how-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.how-grid h2 {
  margin: 20px 20px 10px;
  font-size: 25px;
}

.how-grid p {
  margin: 0 20px 22px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .feature-grid,
  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav,
  .hero,
  .split,
  .price-card,
  .footer {
    display: block;
  }

  .nav {
    position: static;
    border-radius: 24px;
  }

  .nav-links {
    margin-top: 14px;
    gap: 14px;
  }

  h1 {
    font-size: clamp(42px, 15vw, 62px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .hero-visual,
  .price-side {
    margin-top: 34px;
    text-align: left;
  }

  .feature-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }
}
