:root {
  --bg: #05070d;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.08);
  --text: #f1f5ff;
  --muted: #9fb0c5;
  --accent: #63f5d6;
  --accent-2: #6aa3ff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(99, 245, 214, 0.12), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(106, 163, 255, 0.16), transparent 26%),
    #05070d;
  color: var(--text);
  font-family: 'DM Sans', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  padding: 0 20px 60px;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: 'Space Grotesk', 'DM Sans', sans-serif; margin: 0; letter-spacing: -0.01em; }

p { margin: 0; }

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  background: transparent;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #03101a;
  border: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.btn.ghost { background: rgba(255, 255, 255, 0.06); }

.btn:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.32); }

.site-header {
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 7, 13, 0.72);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 12px;
  backdrop-filter: blur(16px);
}

.brand { display: flex; align-items: center; gap: 12px; }

.mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041017;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text strong { display: block; font-size: 18px; }

.main { max-width: 1100px; margin: 0 auto; }

.hero {
  max-width: 1100px;
  margin: 26px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  align-items: center;
}

.hero-left h1 { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; }

.lede { margin: 10px 0 14px; color: var(--muted); font-size: 17px; }

.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 8px; }

.mini-grid { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}

.hero-right { display: grid; gap: 12px; }

.media-card {
  position: relative;
  padding-top: 56%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.media-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.thumb-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.strip {
  max-width: 1100px;
  margin: 18px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.strip-card {
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.strip-card h2 { font-size: 20px; margin-bottom: 6px; }
.strip-card p { color: var(--muted); }

.contact-wrapper {
  max-width: 1100px;
  margin: 26px auto 96px;
  display: grid;
  gap: 14px;
}

.contact-hero {
  padding: 22px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  align-items: center;
}

.contact-lede { color: var(--muted); margin: 10px 0 12px; font-size: 16px; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.contact-mail { display: grid; gap: 4px; min-width: 200px; }
.contact-mail-label { color: var(--muted); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-mail-link { font-weight: 700; color: var(--accent); }

.contact-card {
  background: var(--card-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.contact-list {
  margin: 6px 0 0;
  padding-left: 18px;
  list-style: disc;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.contact-note p { color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.contact-block {
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-block h3 { margin: 0 0 6px; font-size: 18px; }
.contact-block p { color: var(--muted); }

.legal-wrapper {
  max-width: 960px;
  margin: 32px auto 96px;
}

.legal-article {
  padding: 22px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal__header h1 { font-size: clamp(28px, 4vw, 38px); margin: 8px 0 10px; line-height: 1.2; }
.legal__meta { color: var(--muted); font-size: 14px; }
.legal__lede { color: var(--muted); margin-top: 6px; }

.legal-article section { margin-top: 18px; }
.legal-article h2 { font-size: 19px; margin: 6px 0 8px; }
.legal-article p { color: var(--muted); margin: 6px 0; }
.legal-article ul {
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  list-style: disc;
  color: var(--muted);
}
.legal-article a { color: var(--accent); }
.legal-article strong { color: var(--text); }

.site-footer {
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 16px 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links { display: flex; gap: 14px; font-weight: 700; }

.background-blur {
  position: fixed;
  width: 320px;
  height: 320px;
  filter: blur(120px);
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
}

.blur-a { background: #63f5d6; top: -40px; left: -60px; }
.blur-b { background: #6aa3ff; bottom: -60px; right: -80px; }

@media (max-width: 720px) {
  body { padding: 0 14px 46px; }
  .site-header { position: sticky; top: 10px; flex-direction: column; align-items: flex-start; gap: 10px; }
}
