:root {
  --bg: #03131c;
  --bg2: #08384a;
  --card: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.14);
  --text: #f7fbfd;
  --muted: #bdd0d8;
  --accent: #7fd0d7;
  --accent-dark: #06202b;
  --green: #7fe08a;
  --danger: #ff8a80;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 0%, rgba(127,208,215,.18), transparent 30rem),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height: 100vh;
  line-height: 1.65;
}
a { color: var(--accent); }
a:hover { text-decoration-thickness: 2px; }
.wrap { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(3,19,28,.86);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: white; text-decoration: none; font-weight: 900; font-size: 1.2rem; }
.logo {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent); color: var(--accent-dark); box-shadow: 0 12px 30px rgba(127,208,215,.2);
}
nav { display: flex; flex-wrap: wrap; gap: 16px; }
nav a { color: var(--muted); text-decoration: none; font-weight: 700; font-size: .94rem; }
nav a:hover, nav a[aria-current="page"] { color: white; }
.hero { padding: 88px 0 54px; text-align: center; }
.eyebrow { color: var(--green); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
h1 { margin: 12px auto 18px; font-size: clamp(2.4rem, 7vw, 5.6rem); line-height: 1.02; max-width: 900px; }
h2 { margin-top: 0; font-size: clamp(1.45rem, 3vw, 2.1rem); }
h3 { margin-bottom: .35rem; }
.lead { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: clamp(1rem, 2vw, 1.25rem); }
.actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 0 22px; border-radius: 999px;
  background: var(--accent); color: var(--accent-dark); text-decoration: none; font-weight: 900;
}
.btn.secondary { background: rgba(255,255,255,.1); color: white; border: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 16px 0 70px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 28px; padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.card p { color: var(--muted); margin-bottom: 0; }
.icon { font-size: 2rem; }
main.legal { padding: 54px 0 80px; }
.legal-title { max-width: 800px; margin-bottom: 32px; }
.legal-title h1 { text-align: left; margin-left: 0; font-size: clamp(2.2rem, 6vw, 4rem); }
.legal article { background: rgba(255,255,255,.07); border: 1px solid var(--line); border-radius: 28px; padding: clamp(22px, 4vw, 42px); }
.legal article h2 { margin-top: 2.3rem; scroll-margin-top: 100px; }
.legal article h2:first-child { margin-top: 0; }
.legal article p, .legal article li { color: #d7e4e9; }
.legal article strong { color: white; }
.notice {
  padding: 16px 18px; border-radius: 18px; background: rgba(127,208,215,.12);
  border: 1px solid rgba(127,208,215,.32); color: #e9fcff; margin: 18px 0;
}
.danger { background: rgba(255,138,128,.1); border-color: rgba(255,138,128,.32); }
.contact-box { display: grid; gap: 8px; padding: 20px; border-radius: 20px; background: rgba(255,255,255,.06); }
footer { border-top: 1px solid var(--line); padding: 30px 0 44px; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: var(--muted); }
.small { font-size: .9rem; color: var(--muted); }
ul { padding-left: 1.25rem; }
code { background: rgba(255,255,255,.09); padding: .15rem .4rem; border-radius: 7px; }
@media (max-width: 820px) {
  .nav { align-items: flex-start; padding: 14px 0; flex-direction: column; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
}
