
:root{
  --bg: #06110f;
  --bg-soft: #0b1816;
  --surface: rgba(14, 30, 27, 0.78);
  --surface-2: rgba(255,255,255,0.04);
  --surface-3: rgba(255,255,255,0.06);
  --text: #f7fbfa;
  --muted: #a8bab5;
  --line: rgba(255,255,255,0.08);
  --green: #2fb36c;
  --green-2: #5fdca2;
  --gold: #e3bf54;
  --gold-2: #f3d789;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --maxw: 1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(47,179,108,.20), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(227,191,84,.16), transparent 22%),
    linear-gradient(180deg, #071310 0%, #050b0a 100%);
}
img{max-width:100%; display:block}
a{color:inherit}
.container{width:min(var(--maxw), calc(100% - 40px)); margin-inline:auto}
.grid{display:grid; gap:24px}
.section{padding:92px 0}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#d7ebe4; font-size:14px; letter-spacing:.02em
}
.eyebrow .dot{width:8px;height:8px;border-radius:999px;background:linear-gradient(180deg,var(--green-2),var(--gold))}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  backdrop-filter: blur(18px);
}
.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(14px);
  background:rgba(4, 10, 9, 0.64);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; min-height:78px; gap:20px;
}
.brand{display:flex; align-items:center; gap:14px; text-decoration:none}
.brand-mark{
  width:46px; height:46px; border-radius:15px;
  display:grid; place-items:center; font-weight:800;
  background:linear-gradient(135deg, rgba(47,179,108,0.25), rgba(227,191,84,0.25));
  border:1px solid rgba(255,255,255,.12);
  color:#effbf6;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.brand-text strong{display:block; font-size:16px}
.brand-text span{display:block; font-size:12px; color:var(--muted)}
.nav-links{display:flex; gap:20px; align-items:center; flex-wrap:wrap}
.nav-links a{
  text-decoration:none; color:#dbe9e4; font-size:14px; opacity:.92
}
.nav-links a:hover{color:white}
.nav-cta{
  padding:12px 16px; border-radius:14px; text-decoration:none; font-weight:600;
  background:linear-gradient(135deg, rgba(47,179,108,.24), rgba(227,191,84,.18));
  border:1px solid rgba(255,255,255,.10);
}
.hero{padding:60px 0 36px}
.hero-grid{
  display:grid; grid-template-columns: 1.05fr .95fr; gap:34px; align-items:center;
}
.hero-copy h1{
  font-size:clamp(42px, 7vw, 76px); line-height:1.01; letter-spacing:-.04em;
  margin:18px 0 18px;
}
.hero-copy p{
  color:var(--muted); font-size:18px; line-height:1.8; max-width:62ch; margin:0 0 26px;
}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin:28px 0 18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  text-decoration:none; padding:16px 20px; border-radius:16px; font-weight:700;
  transition:.18s transform ease, .18s opacity ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  color:#07100c;
  background:linear-gradient(135deg, var(--green-2), var(--gold-2));
  box-shadow:0 18px 50px rgba(47,179,108,.20);
}
.btn-secondary{
  color:#eff7f4; background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
}
.hero-meta{
  display:flex; flex-wrap:wrap; gap:16px; color:#d6e6e1; font-size:14px; margin-top:16px;
}
.hero-meta div{
  padding:12px 14px; border-radius:16px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07);
}
.hero-visual{
  position:relative; padding:18px;
}
.hero-glow{
  position:absolute; inset:8% 12%; border-radius:38px;
  background: radial-gradient(circle at center, rgba(47,179,108,.28), rgba(227,191,84,.12), transparent 65%);
  filter: blur(18px);
}
.shot-wrap{
  position:relative; z-index:1; overflow:hidden;
  border-radius:30px; border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  padding:12px;
}
.shot-wrap img{
  width:100%; border-radius:24px; box-shadow:0 22px 70px rgba(0,0,0,.45);
}
.stat-strip{
  margin-top:26px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.stat{
  padding:20px; border-radius:22px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08)
}
.stat strong{font-size:26px; display:block}
.stat span{font-size:14px; color:var(--muted)}
.section-head{max-width:760px; margin:0 auto 36px; text-align:center}
.section-head h2{font-size:clamp(30px, 4vw, 50px); margin:14px 0 14px; line-height:1.1; letter-spacing:-.03em}
.section-head p{margin:0; color:var(--muted); font-size:17px; line-height:1.8}
.feature-grid{grid-template-columns:repeat(3,1fr)}
.feature{
  padding:26px;
}
.feature .icon{
  width:52px; height:52px; border-radius:16px; display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(47,179,108,.18), rgba(227,191,84,.12));
  border:1px solid rgba(255,255,255,.08);
  font-size:22px; margin-bottom:18px;
}
.feature h3{margin:0 0 10px; font-size:20px}
.feature p{margin:0; color:var(--muted); line-height:1.75}
.showcase{
  display:grid; grid-template-columns:1.05fr .95fr; gap:24px; align-items:stretch;
}
.showcase-main, .showcase-side{
  padding:16px;
}
.showcase-main img, .showcase-side img{
  border-radius:24px; width:100%;
}
.showcase-caption{
  padding:18px 8px 4px;
}
.showcase-caption strong{font-size:20px; display:block; margin-bottom:6px}
.showcase-caption p{margin:0; color:var(--muted); line-height:1.75}
.steps{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.step{padding:28px}
.step .num{
  width:42px; height:42px; border-radius:12px; display:grid; place-items:center;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); color:#fff; margin-bottom:18px;
  font-weight:800;
}
.step h3{margin:0 0 10px}
.step p{margin:0; color:var(--muted); line-height:1.75}
.faq{
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
.faq details{
  padding:22px 22px 18px; border-radius:22px; border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04)
}
.faq summary{
  list-style:none; cursor:pointer; font-weight:700; font-size:18px;
}
.faq summary::-webkit-details-marker{display:none}
.faq details p{color:var(--muted); line-height:1.75; margin:14px 0 0}
.cta{
  padding:38px; display:grid; gap:10px; align-items:center;
  grid-template-columns:1fr auto;
}
.cta h3{margin:0; font-size:clamp(28px, 3vw, 40px)}
.cta p{margin:0; color:var(--muted); line-height:1.75}
.footer{
  padding:30px 0 50px; border-top:1px solid rgba(255,255,255,.08);
}
.footer-grid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:20px; align-items:start;
}
.footer small, .footer p, .footer a{color:var(--muted)}
.footer-links{
  display:flex; gap:18px; flex-wrap:wrap; justify-content:flex-end;
}
.legal{
  background:#f8fbfa; color:#0f1720;
}
.legal .topbar{background:rgba(255,255,255,.88); border-bottom-color:rgba(15,23,32,.08)}
.legal .brand-text span, .legal .nav-links a{color:#52606f}
.legal .content{
  padding:70px 0 80px;
}
.legal .paper{
  width:min(920px, calc(100% - 40px)); margin-inline:auto; padding:38px;
  background:#fff; border:1px solid #e6ece9; border-radius:26px; box-shadow:0 24px 60px rgba(15,23,32,.08);
}
.legal h1{font-size:42px; margin:0 0 8px}
.legal h2{font-size:24px; margin:30px 0 10px}
.legal p, .legal li{color:#314352; line-height:1.8}
.legal ul{padding-left:20px}
.notice{
  padding:18px 20px; border-radius:18px; background:rgba(47,179,108,.08);
  border:1px solid rgba(47,179,108,.20); color:#dff6ea; margin-top:18px;
}
@media (max-width: 1024px){
  .hero-grid, .showcase, .faq, .footer-grid, .cta{grid-template-columns:1fr}
  .feature-grid, .steps{grid-template-columns:repeat(2,1fr)}
  .footer-links{justify-content:flex-start}
  .cta{padding:28px}
}
@media (max-width: 720px){
  .container{width:min(var(--maxw), calc(100% - 28px))}
  .nav{padding:12px 0}
  .nav-links{display:none}
  .hero{padding-top:34px}
  .stat-strip, .feature-grid, .steps{grid-template-columns:1fr}
  .section{padding:74px 0}
  .legal .paper{padding:26px}
}
