:root {
  color-scheme: dark;
  --bg: #05070d;
  --panel: rgba(10, 14, 24, .82);
  --line: rgba(255,255,255,.12);
  --text: #f7f9ff;
  --muted: #aab3c8;
  --cyan: #00e5ff;
  --pink: #ff116d;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(0,229,255,.11), transparent 32rem),
    radial-gradient(circle at 90% 18%, rgba(255,17,109,.12), transparent 32rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .06; z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.topbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; letter-spacing: .01em; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), #fff 49%, var(--pink)); color: #05070d;
  box-shadow: 0 0 30px rgba(0,229,255,.18), 0 0 30px rgba(255,17,109,.12);
  font-size: 22px; font-weight: 1000;
}
.email { color: var(--muted); font-size: 14px; }
.email:hover { color: white; }
main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 24px;
  background: #020308; box-shadow: 0 30px 100px rgba(0,0,0,.5);
}
.hero img { display: block; width: 100%; height: auto; }
.hero-glow {
  position: absolute; inset: auto 10% -30px; height: 70px;
  background: linear-gradient(90deg, var(--cyan), var(--pink)); filter: blur(55px); opacity: .28;
}
.action-panel {
  margin-top: 22px; padding: clamp(22px, 4vw, 42px); border: 1px solid var(--line); border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,229,255,.055), rgba(10,14,24,.9) 45%, rgba(255,17,109,.055));
  display: grid; grid-template-columns: 1fr 1.12fr; gap: 32px; align-items: center;
}
.eyebrow { margin: 0 0 10px; color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .2em; }
h2 { margin: 0 0 12px; font-size: clamp(30px, 5vw, 58px); line-height: .98; letter-spacing: -.045em; }
.subtext { margin: 0; max-width: 58ch; color: var(--muted); line-height: 1.65; }
.social-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.social {
  min-height: 76px; padding: 15px; border: 1px solid var(--line); border-radius: 17px;
  display: flex; align-items: center; gap: 13px; background: rgba(255,255,255,.035);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.social:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.065); }
.icon {
  flex: 0 0 42px; width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); font-size: 21px; font-weight: 900;
}
.social span:last-child { display: grid; gap: 2px; }
.social strong { font-size: 15px; }
.social small { color: var(--muted); font-size: 12px; }
.youtube .icon { color: #ff315c; }
.tiktok .icon { color: #fff; text-shadow: -2px 0 var(--cyan), 2px 0 var(--pink); }
.instagram .icon { color: #ff4ea5; }
.facebook .icon { color: #66a0ff; }
.features { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin: 22px 0 28px; }
.features article { min-height: 195px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.features span { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.features article:nth-child(2) span { color: white; }
.features article:nth-child(3) span { color: var(--pink); }
.features h3 { margin: 38px 0 8px; font-size: 22px; }
.features p { margin: 0; color: var(--muted); line-height: 1.55; }
footer {
  width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 22px 0 34px;
  border-top: 1px solid var(--line); color: var(--muted); display: flex; justify-content: space-between; gap: 20px; font-size: 13px;
}
footer a:hover { color: white; }
.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; }
@media (max-width: 820px) {
  .action-panel { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .topbar { min-height: 66px; }
  .email { display: none; }
  main, .topbar, footer { width: min(100% - 20px, 1180px); }
  .hero, .action-panel { border-radius: 18px; }
  .social-grid { grid-template-columns: 1fr; }
  .action-panel { padding: 22px 18px; }
  h2 { font-size: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .social { transition: none; }
}
