:root {
  --bg: #090909;
  --panel: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.10);
  --text: #f5f5f5;
  --muted: #cfcfcf;
  --pink: #ff2fb3;
  --pink-strong: #ff00a8;
  --pink-soft: rgba(255, 47, 179, 0.18);
  --blue-electric: #0fe9ef;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 0, 168, 0.16), transparent 30%),
    linear-gradient(180deg, #050505 0%, #090909 45%, #111111 100%);
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 2;
  padding: 20px 0 0;
}

.brand {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.brand small {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.8em;
  letter-spacing: 0.04em;
}

.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  padding: 28px 0 48px;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 34px 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--blue-electric);
  text-shadow:
    0 0 10px rgba(15, 233, 239, 0.50),
    0 0 26px rgba(15, 233, 239, 0.28);
}

.subtag,
.pitch {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.subtag {
  margin: 18px 0 10px;
}

.pitch {
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn small {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-strong) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 10px 26px rgba(255, 0, 168, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 14px 34px rgba(255, 0, 168, 0.34);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  border-color: rgba(255, 47, 179, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.btn-secondary:hover {
  background: var(--pink-soft);
  border-color: rgba(255, 47, 179, 0.42);
}

@media (max-width: 700px) {
  .hero {
    align-items: flex-start;
    padding-top: 20px;
  }

  .hero-panel {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .brand small {
    display: block;
    margin: 6px 0 0;
  }

  .subtag,
  .pitch {
    font-size: 0.98rem;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }
}
