﻿:root {
  --ink: #0f1419;
  --muted: #5f6d7a;
  --line: rgba(15, 20, 25, 0.12);
  --paper: #f1f4f3;
  --card: #ffffff;
  --green: #0f766e;
  --gold: #b99145;
  --blue: #2563eb;
  --shadow: 0 24px 70px rgba(15, 20, 25, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 34px;
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 12, 14, 0.78), rgba(8, 12, 14, 0.04));
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 950; }
.brand span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 10px 30px rgba(0,0,0,0.24);
}
.site-nav nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 750; color: rgba(255,255,255,0.82); }
.nav-cta { color: #101418; background: #fff; border-radius: 999px; padding: 10px 18px; font-weight: 900; }

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 120px 34px 84px;
  overflow: hidden;
  background: #101418;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,12,14,0.88), rgba(8,12,14,0.56) 48%, rgba(8,12,14,0.16)); }
.hero-content { position: relative; z-index: 1; width: min(900px, 100%); color: #fff; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-weight: 950; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.eyebrow.dark { color: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(68px, 12vw, 150px); line-height: 0.88; font-weight: 950; margin-bottom: 22px; }
.hero-copy { max-width: 690px; font-size: clamp(19px, 2.4vw, 27px); line-height: 1.35; color: rgba(255,255,255,0.82); font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 50px; padding: 0 24px; border-radius: 10px; font-weight: 900; }
.btn.primary { color: #fff; background: linear-gradient(135deg, var(--green), var(--gold)); box-shadow: 0 18px 38px rgba(15,118,110,0.24); }
.btn.secondary { color: #fff; border: 1px solid rgba(255,255,255,0.34); background: rgba(255,255,255,0.08); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-facts span { border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.08); border-radius: 999px; padding: 8px 12px; font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.78); }

.section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 84px 0; }
.intro-band { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: end; }
.intro-band h2, .section-head h2, .affiliate h2, .final-cta h2 { font-size: clamp(34px, 5vw, 62px); line-height: 1.02; margin-bottom: 0; font-weight: 950; }
.intro-band p, .section-head p, .affiliate p { color: var(--muted); font-size: 18px; line-height: 1.65; font-weight: 600; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 28px; }
.section-head h2 { max-width: 720px; }
.section-head.center { display: block; text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.section-head.center p { margin-left: auto; margin-right: auto; }

.demo-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.demo-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 16px 48px rgba(15,20,25,0.10); }
.demo-card video { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: #101418; }
.demo-card div { padding: 16px; }
.demo-card span { display: inline-flex; color: var(--green); font-size: 12px; font-weight: 950; margin-bottom: 8px; }
.demo-card strong { display: block; font-size: 18px; margin-bottom: 7px; }
.demo-card p { color: var(--muted); font-size: 14px; line-height: 1.45; margin-bottom: 0; font-weight: 650; }

.flow { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.flow-grid div, .plan-card, details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px; box-shadow: 0 14px 36px rgba(15,20,25,0.08); }
.flow-grid span { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: var(--green); font-weight: 950; margin-bottom: 18px; }
.flow-grid h3 { font-size: 20px; margin-bottom: 8px; }
.flow-grid p { color: var(--muted); line-height: 1.55; font-weight: 600; }

.plans { padding-top: 92px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 430px; }
.plan-card.featured { color: #fff; background: linear-gradient(150deg, #101418, #15302c); transform: translateY(-10px); }
.plan-card small { color: var(--gold); text-transform: uppercase; font-weight: 950; letter-spacing: 0.08em; }
.plan-card h3 { font-size: 28px; margin: 6px 0 8px; }
.plan-card p { color: var(--muted); line-height: 1.55; font-weight: 650; }
.plan-card.featured p { color: rgba(255,255,255,0.72); }
.plan-card strong { font-size: 48px; line-height: 1; margin: 14px 0; }
.plan-card strong span { font-size: 15px; color: var(--muted); }
.plan-card.featured strong span { color: rgba(255,255,255,0.66); }
.plan-card ul { padding-left: 18px; color: var(--muted); line-height: 1.9; font-weight: 700; }
.plan-card.featured ul { color: rgba(255,255,255,0.82); }
.plan-card a { margin-top: auto; display: flex; align-items: center; justify-content: center; height: 48px; border-radius: 10px; color: #fff; font-weight: 950; background: linear-gradient(135deg, var(--green), var(--gold)); }

.affiliate { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq { display: grid; gap: 12px; max-width: 860px; }
details { padding: 0; overflow: hidden; }
summary { cursor: pointer; padding: 20px 22px; font-size: 18px; font-weight: 900; }
details p { padding: 0 22px 20px; color: var(--muted); font-weight: 650; line-height: 1.6; }
.final-cta { width: min(980px, calc(100% - 48px)); margin: 34px auto 84px; text-align: center; padding: 70px 26px; color: #fff; background: linear-gradient(135deg, #101418, #173530); border-radius: 18px; box-shadow: var(--shadow); }
.final-cta p { color: rgba(255,255,255,0.74); font-size: 18px; font-weight: 650; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px 34px; color: var(--muted); border-top: 1px solid var(--line); font-weight: 750; }
footer span { color: var(--ink); font-weight: 950; }

@media (max-width: 980px) {
  .site-nav nav { display: none; }
  .intro-band, .affiliate { grid-template-columns: 1fr; }
  .demo-grid, .flow-grid, .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card.featured { transform: none; }
}
@media (max-width: 640px) {
  .site-nav { padding: 0 18px; height: 66px; }
  .nav-cta { display: none; }
  .hero { min-height: 88vh; padding: 104px 20px 58px; }
  .section { width: min(100% - 32px, 1180px); padding: 58px 0; }
  .demo-grid, .flow-grid, .plan-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  footer { flex-direction: column; padding: 24px 20px; }
}


.trust { border-top: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.trust-grid a { display: flex; flex-direction: column; gap: 10px; min-height: 150px; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); box-shadow: 0 14px 36px rgba(15,20,25,0.08); }
.trust-grid strong { font-size: 21px; line-height: 1.15; }
.trust-grid span { color: var(--muted); line-height: 1.55; font-weight: 650; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }

.legal-page { min-height: 100vh; background: linear-gradient(180deg, #eef3f1, #f8faf9); }
.legal-nav { height: 76px; padding: 0 34px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.78); backdrop-filter: blur(14px); }
.legal-nav .brand { color: var(--ink); }
.nav-cta.dark { color: #fff; background: linear-gradient(135deg, var(--green), var(--gold)); }
.legal-wrap { width: min(880px, calc(100% - 40px)); margin: 0 auto; padding: 78px 0 96px; }
.legal-wrap h1 { font-size: clamp(46px, 8vw, 86px); line-height: 0.92; margin-bottom: 20px; }
.legal-lead { color: var(--muted); font-size: 19px; line-height: 1.65; font-weight: 650; margin-bottom: 28px; }
.legal-card, .steps-list section { margin-top: 14px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 14px 36px rgba(15,20,25,0.08); }
.legal-card h2, .steps-list h2 { margin-bottom: 8px; font-size: 24px; }
.legal-card p, .steps-list p { color: var(--muted); line-height: 1.65; font-weight: 650; margin-bottom: 0; }
.legal-card a { color: var(--green); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.steps-list { display: grid; gap: 14px; }
.steps-list section { position: relative; padding-left: 78px; }
.steps-list span { position: absolute; left: 24px; top: 24px; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; background: var(--green); font-weight: 950; }

@media (max-width: 980px) {
  .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .legal-nav { padding: 0 18px; }
  .legal-nav .nav-cta { display: inline-flex; }
  .legal-wrap { width: min(100% - 32px, 880px); padding: 58px 0 76px; }
  .footer-links { justify-content: flex-start; }
}

.text-link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 12px; color: var(--green); font-weight: 950; text-decoration: underline; text-underline-offset: 4px; }
