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

:root {
  --bg: #060a11;
  --bg-soft: #0a1019;
  --card: rgba(13, 20, 31, .72);
  --border: rgba(100, 213, 255, .14);
  --text: #f4f8fc;
  --muted: #91a0b3;
  --blue: #08b9f1;
  --blue-2: #008bd1;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(0, 166, 230, .13), transparent 32%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.background-glow {
  position: fixed; width: 420px; height: 420px; border-radius: 50%;
  filter: blur(100px); opacity: .08; pointer-events: none; z-index: -1;
}
.glow-one { background: #00bfff; top: 15%; left: -250px; }
.glow-two { background: #0066ff; right: -250px; top: 50%; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(6, 10, 17, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-size: 17px; letter-spacing: -.03em; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand strong { color: var(--blue); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #aeb9c8; font-size: 13px; font-weight: 600; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta { padding: 10px 17px; color: #021019; background: var(--blue); border-radius: 9px; }
.nav-links .nav-cta:hover { color: #021019; filter: brightness(1.08); }
.menu-toggle { display: none; border: 0; background: none; color: white; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #dce8f3; margin: 5px 0; border-radius: 2px; }

.hero { min-height: 730px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 50px; padding-top: 55px; }
.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  color: #64d7ff; font-size: 11px; font-weight: 800; letter-spacing: .15em;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #25d8ff; box-shadow: 0 0 15px #25d8ff; }
.hero h1 { max-width: 720px; margin: 18px 0 20px; font-size: clamp(45px, 6vw, 78px); line-height: .99; letter-spacing: -.065em; }
.hero h1 span {
  background: linear-gradient(100deg, #fff 0%, #20c7f5 62%, #078bd2 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy > p { max-width: 620px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 19px; border-radius: 10px; font-size: 13px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, #13c5f4, #008fd4); color: #021019; box-shadow: 0 12px 32px rgba(0, 166, 230, .2); }
.button-primary svg { width: 19px; height: 19px; fill: currentColor; }
.button-ghost { border: 1px solid rgba(255,255,255,.1); color: #dbe6f1; background: rgba(255,255,255,.025); }
.button-ghost span { color: #64d7ff; }
.trust-row { display: flex; gap: 28px; }
.trust-row div { display: grid; gap: 1px; }
.trust-row strong { font-size: 12px; }
.trust-row span { color: #718095; font-size: 10px; }

.hero-visual { min-height: 540px; position: relative; display: grid; place-items: center; }
.orb { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 189, 243, .2), transparent 65%); filter: blur(8px); }
.logo-card {
  position: relative; width: min(370px, 72vw); aspect-ratio: 1; display: grid; place-items: center;
  border: 1px solid rgba(62, 202, 245, .22); border-radius: 34px;
  background: linear-gradient(145deg, rgba(16, 28, 42, .85), rgba(5, 11, 19, .65));
  box-shadow: 0 35px 100px rgba(0, 0, 0, .5), inset 0 1px rgba(255,255,255,.04);
  transform: rotate(-3deg);
}
.logo-card img { width: 68%; height: 68%; object-fit: contain; filter: drop-shadow(0 0 25px rgba(0, 190, 245, .16)); }
.card-shine { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(120deg, rgba(255,255,255,.07), transparent 25%, transparent 70%, rgba(0,180,255,.05)); }
.floating-card {
  position: absolute; display: flex; align-items: center; gap: 11px; padding: 12px 15px;
  background: rgba(10, 18, 28, .84); border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px; box-shadow: 0 18px 45px rgba(0,0,0,.35); backdrop-filter: blur(14px);
}
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 12px; }
.floating-card small { color: #718095; font-size: 9px; }
.floating-card-top { top: 13%; right: 1%; }
.floating-card-bottom { bottom: 14%; left: 1%; }
.mini-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: #6ce0ff; background: rgba(0, 185, 240, .1); }

.section { padding: 105px 0; }
.section-heading { max-width: 680px; margin-bottom: 42px; }
.section-heading h2, .legal-card h2, .final-cta h2 { margin: 8px 0 12px; font-size: clamp(31px, 4vw, 48px); line-height: 1.08; letter-spacing: -.05em; }
.section-heading p, .legal-card p, .final-cta p { color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card {
  padding: 27px; border: 1px solid var(--border); border-radius: 17px;
  background: linear-gradient(145deg, rgba(16,25,38,.7), rgba(8,14,22,.7));
  transition: transform .25s, border-color .25s, background .25s;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(44, 201, 248, .32); background: rgba(12,23,35,.9); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: rgba(0, 184, 240, .09); margin-bottom: 18px; }
.feature-card h3 { margin: 0 0 7px; font-size: 15px; }
.feature-card p { margin: 0; color: #7f8da0; font-size: 13px; line-height: 1.7; }

.legal-preview { padding: 30px 0 105px; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.legal-card { padding: 42px; border-radius: 21px; border: 1px solid rgba(255,255,255,.07); background: rgba(10,17,27,.75); }
.legal-card a { display: inline-flex; gap: 10px; margin-top: 12px; color: #5fd8ff; font-size: 13px; font-weight: 800; }
.final-cta { margin-bottom: 100px; padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid rgba(34, 199, 248, .16); border-radius: 22px; background: linear-gradient(110deg, rgba(8, 37, 51, .62), rgba(8, 16, 25, .8)); }
.final-cta h2 { margin-bottom: 8px; }
.final-cta p { margin: 0; }

.site-footer { border-top: 1px solid rgba(255,255,255,.055); padding: 28px 0; background: rgba(3,7,12,.65); }
.footer-wrap { display: flex; align-items: center; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.footer-brand img { width: 32px; height: 32px; object-fit: contain; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-size: 12px; }
.footer-brand span, .site-footer p, .footer-links { color: #68778a; font-size: 10px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: #b9c7d6; }
.site-footer p { margin: 0; }

.legal-hero { padding: 90px 0 55px; max-width: 930px; }
.back-link { display: inline-block; color: #718094; font-size: 12px; margin-bottom: 42px; }
.back-link:hover { color: #d5e1ed; }
.legal-hero h1 { margin: 12px 0 18px; font-size: clamp(38px, 5vw, 62px); line-height: 1.04; letter-spacing: -.06em; }
.legal-hero > p { max-width: 850px; color: #8998aa; font-size: 15px; }
.updated { display: inline-block; margin-top: 18px; padding: 9px 13px; border-radius: 9px; background: rgba(255,255,255,.035); color: #7e8da0; font-size: 11px; }
.updated strong { color: #b8c5d2; }
.legal-document { max-width: 930px; padding-bottom: 110px; }
.legal-section { padding: 33px 0; border-top: 1px solid rgba(255,255,255,.065); }
.legal-section h2 { margin: 0 0 17px; font-size: 20px; letter-spacing: -.025em; }
.legal-section p { margin: 0 0 14px; color: #8e9cae; font-size: 14px; }
.legal-section p:last-child { margin-bottom: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-visual { min-height: 430px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; left: 14px; right: 14px; top: 70px; padding: 16px;
    flex-direction: column; align-items: stretch; gap: 5px; border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px; background: rgba(7,12,19,.97); box-shadow: 0 20px 50px rgba(0,0,0,.45);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px; }
  .nav-links .nav-cta { text-align: center; margin-top: 5px; }
  .hero { min-height: auto; padding-top: 62px; }
  .hero h1 { font-size: clamp(42px, 13vw, 64px); }
  .hero-copy > p { font-size: 15px; }
  .trust-row { gap: 14px; flex-wrap: wrap; }
  .hero-visual { min-height: 370px; }
  .logo-card { width: min(310px, 75vw); }
  .floating-card-top { right: -1%; }
  .floating-card-bottom { left: -1%; }
  .section { padding: 75px 0; }
  .feature-grid, .legal-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 30px; }
  .final-cta { margin-bottom: 70px; padding: 30px; }
  .footer-wrap { align-items: flex-start; flex-direction: column; gap: 15px; }
  .footer-brand { margin-right: 0; }
  .footer-links { flex-wrap: wrap; }
  .legal-hero { padding-top: 60px; }
  .legal-document { padding-bottom: 70px; }
}
