@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #080b0f;
  --bg-soft: #0e141a;
  --card: rgba(18, 25, 32, .82);
  --card-solid: #121920;
  --line: rgba(255,255,255,.11);
  --text: #f7f8fa;
  --muted: #a9b3bd;
  --aqua: #19c8c2;
  --aqua-bright: #20e0d7;
  --lime: #8edb3a;
  --shadow: 0 28px 80px rgba(0,0,0,.38);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(25,200,194,.09), transparent 28rem),
    var(--bg);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 104px 0; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--aqua); color: #001514; padding: 10px 15px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,11,15,.76);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.32rem; font-weight: 800; letter-spacing: -.04em; }
.brand img { border-radius: 12px; }
.brand span span { color: var(--aqua); }
.navigation { display: flex; align-items: center; gap: 28px; font-size: .94rem; color: #c9d0d6; }
.navigation a:hover { color: white; }
.nav-cta { padding: 10px 17px; border: 1px solid rgba(25,200,194,.45); border-radius: 999px; color: var(--aqua-bright) !important; }
.menu-button { display: none; border: 0; background: transparent; width: 45px; height: 45px; padding: 9px; }
.menu-button span:not(.sr-only) { display:block; height:2px; background:white; margin:6px 0; border-radius:2px; }

.hero { min-height: calc(100vh - 76px); display: grid; align-items: center; position: relative; overflow: hidden; padding: 70px 0 95px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker { color: var(--aqua-bright); text-transform: uppercase; letter-spacing: .17em; font-weight: 800; font-size: .75rem; margin: 0 0 17px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.2rem, 7.4vw, 6.8rem); line-height: .96; letter-spacing: -.075em; margin-bottom: 28px; max-width: 850px; }
h1 span { color: var(--aqua); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.06; letter-spacing: -.055em; margin-bottom: 24px; }
h3 { letter-spacing: -.025em; margin-bottom: 10px; }
.lead, .section-lead { color: #c4cbd2; font-size: clamp(1.08rem, 2vw, 1.28rem); max-width: 730px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin: 36px 0; }
.button { min-height: 50px; display:inline-flex; align-items:center; justify-content:center; padding: 12px 22px; border-radius: 999px; font-weight: 800; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { color: #001514; background: linear-gradient(135deg, var(--aqua-bright), var(--aqua)); box-shadow: 0 10px 34px rgba(25,200,194,.25); }
.secondary { border: 1px solid var(--line); color: white; background: rgba(255,255,255,.035); }
.trust-row { display:flex; flex-wrap:wrap; gap: 24px; color: #9ea8b2; font-size: .9rem; }
.trust-row span::before { content:""; display:inline-block; width:7px; height:7px; background:var(--aqua); border-radius:50%; margin-right:9px; box-shadow:0 0 14px var(--aqua); }

.hero-visual { position: relative; z-index: 2; }
.logo-card { padding: 20px; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); border-radius: 34px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.logo-card img { border-radius: 24px; }
.hero-glow { position:absolute; border-radius:50%; filter:blur(40px); opacity:.28; pointer-events:none; }
.hero-glow-one { width:380px; height:380px; background:var(--aqua); right:3%; top:15%; }
.hero-glow-two { width:250px; height:250px; background:#1759bd; left:-6%; bottom:5%; opacity:.14; }

.intro { text-align:center; }
.section-heading { display:flex; justify-content:space-between; align-items:end; gap:50px; margin-bottom:42px; }
.section-heading > p { max-width:460px; color:var(--muted); margin-bottom:8px; }
.step-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.step-card, .feature-card { border:1px solid var(--line); background:var(--card); border-radius:var(--radius); padding:28px; }
.step-card { min-height:240px; }
.step-number { display:block; color:var(--aqua); font-size:.8rem; font-weight:800; letter-spacing:.14em; margin-bottom:54px; }
.step-card p, .feature-card p { color:var(--muted); margin-bottom:0; }

.features { background: linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent); }
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:17px; }
.feature-card { min-height:250px; transition:.25s ease; }
.feature-card:hover { transform:translateY(-4px); border-color:rgba(25,200,194,.35); }
.feature-card.featured { background:linear-gradient(145deg, rgba(25,200,194,.18), rgba(18,25,32,.8)); }
.icon { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background:rgba(25,200,194,.11); color:var(--aqua-bright); font-weight:800; margin-bottom:42px; border:1px solid rgba(25,200,194,.22); }

.privacy-grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:start; }
.privacy-list { border-top:1px solid var(--line); }
.privacy-list div { display:grid; grid-template-columns:55px 1fr; gap:18px; padding:21px 0; border-bottom:1px solid var(--line); }
.privacy-list span { color:var(--aqua); font-weight:800; }
.privacy-list p { margin:0; color:#d0d6dc; }

.community-card, .contact-card { border:1px solid rgba(25,200,194,.22); border-radius:32px; padding:55px; background:
  radial-gradient(circle at 100% 0%, rgba(25,200,194,.15), transparent 45%),
  var(--card-solid);
  box-shadow:var(--shadow);
}
.community-card { display:grid; grid-template-columns:1.25fr .75fr; gap:60px; align-items:center; }
.community-card p { color:var(--muted); }
.community-values { display:flex; flex-wrap:wrap; gap:10px; }
.community-values span { border:1px solid var(--line); background:rgba(255,255,255,.035); border-radius:999px; padding:10px 14px; color:#dfe4e8; }

.faq details { border-bottom:1px solid var(--line); padding:21px 0; }
.faq summary { cursor:pointer; font-weight:700; list-style:none; padding-right:40px; position:relative; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; position:absolute; right:4px; top:-5px; color:var(--aqua); font-size:1.55rem; }
.faq details[open] summary::after { content:"–"; }
.faq details p { color:var(--muted); padding-top:15px; margin-bottom:0; max-width:720px; }

.contact-card { display:grid; grid-template-columns:1fr auto; gap:50px; align-items:center; }
.contact-card p { color:var(--muted); margin-bottom:0; }
.contact-actions { text-align:right; }
.contact-actions .small { font-size:.75rem; margin-top:12px; max-width:360px; }

.site-footer { padding:55px 0 35px; border-top:1px solid var(--line); color:var(--muted); }
.footer-grid { display:grid; grid-template-columns:1fr auto; gap:30px; align-items:end; }
.footer-brand p { margin:14px 0 0; font-size:.88rem; }
.footer-links { display:flex; gap:22px; }
.footer-links a:hover { color:white; }
.copyright { grid-column:1/-1; margin:20px 0 0; padding-top:22px; border-top:1px solid rgba(255,255,255,.06); font-size:.8rem; }

.legal { padding:80px 0 110px; }
.legal h1 { font-size:clamp(2.5rem,6vw,5rem); }
.legal h2 { font-size:1.45rem; margin-top:42px; }
.legal p, .legal li { color:#c3cbd2; }
.notice { border:1px solid rgba(255,196,0,.35); background:rgba(255,196,0,.08); padding:18px 20px; border-radius:16px; color:#ffe295 !important; }

@media (max-width: 900px) {
  .navigation { display:none; position:absolute; left:20px; right:20px; top:68px; flex-direction:column; align-items:stretch; gap:4px; padding:14px; background:#111820; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow); }
  .navigation.open { display:flex; }
  .navigation a { padding:11px 12px; }
  .menu-button { display:block; }
  .hero { min-height:auto; }
  .hero-grid, .privacy-grid, .community-card { grid-template-columns:1fr; }
  .hero-grid { gap:42px; }
  .hero-visual { max-width:620px; }
  .step-grid { grid-template-columns:repeat(2,1fr); }
  .feature-grid { grid-template-columns:repeat(2,1fr); }
  .section-heading { display:block; }
  .section-heading > p { margin-top:20px; }
  .privacy-grid { gap:45px; }
  .contact-card { grid-template-columns:1fr; }
  .contact-actions { text-align:left; }
}

@media (max-width: 600px) {
  .container, .narrow { width:min(calc(100% - 28px), var(--max)); }
  .section { padding:76px 0; }
  h1 { font-size:clamp(3rem,16vw,4.4rem); }
  .step-grid, .feature-grid { grid-template-columns:1fr; }
  .community-card, .contact-card { padding:30px 24px; }
  .footer-grid { grid-template-columns:1fr; align-items:start; }
  .footer-links { flex-wrap:wrap; }
  .logo-card { padding:12px; border-radius:24px; }
  .logo-card img { border-radius:17px; }
}
