﻿:root {
  --bg: #07030f;
  --bg-2: #100518;
  --panel: rgba(18, 8, 29, 0.76);
  --panel-strong: rgba(24, 9, 37, 0.92);
  --text: #f7efff;
  --muted: #bea4d6;
  --line: rgba(222, 116, 255, 0.20);
  --line-strong: rgba(222, 116, 255, 0.52);
  --violet: #cb58ff;
  --violet-deep: #8a36ff;
  --violet-soft: #efb8ff;
  --glow: rgba(203, 88, 255, 0.24);
  --success: #8fffe0;
  --danger: #ff95d5;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 28px 90px rgba(116, 32, 214, 0.22);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Bahnschrift", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(203, 88, 255, 0.20), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(138, 54, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(239, 184, 255, 0.10), transparent 25%),
    linear-gradient(180deg, #04020a 0%, #090311 48%, #04020a 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

body::before {
  top: -80px;
  right: -60px;
  background: rgba(203, 88, 255, 0.24);
}

body::after {
  bottom: -70px;
  left: -50px;
  background: rgba(138, 54, 255, 0.18);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

code {
  font-family: Consolas, "Courier New", monospace;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 22px 18px 64px;
}

.glass {
  background: linear-gradient(180deg, rgba(26, 10, 39, 0.86) 0%, rgba(12, 6, 21, 0.92) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  margin-bottom: 30px;
  position: sticky;
  top: 14px;
  z-index: 20;
  background: rgba(9, 5, 16, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--violet) 44%, var(--violet-deep) 100%);
  box-shadow: 0 0 24px rgba(203, 88, 255, 0.92);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topnav a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--muted);
  transition: 180ms ease;
}

.topnav a:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

.hero-copy,
.stat-card,
.metric,
.panel,
.mini-card,
.proof-card,
.gallery-card,
.capture-copy,
.capture-form,
.quote-band {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(239, 184, 255, 0.22), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--violet-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  margin-bottom: 16px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.95;
  max-width: 11ch;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

h3 {
  font-size: 28px;
}

.gradient {
  background: linear-gradient(90deg, #fff 0%, #f7ceff 28%, #d06eff 68%, #8936ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p,
.section-head p,
.metric p,
.panel p,
.mini-card p,
.proof-card p,
.gallery-card p,
.capture-copy p,
.capture-form p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  margin-top: 18px;
  max-width: 62ch;
  font-size: 18px;
}

.hero-actions,
.cta-row,
.channel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.btn-primary {
  color: #19061f;
  background: linear-gradient(90deg, var(--violet-soft), var(--violet));
  border-color: transparent;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(203, 88, 255, 0.32);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn[aria-disabled="true"],
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tags span,
.proof-tag {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--violet-soft);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.hero-aside {
  display: grid;
  gap: 18px;
}

.stat-card,
.metric,
.panel,
.mini-card,
.proof-card,
.gallery-card,
.capture-copy,
.capture-form,
.quote-band {
  padding: 24px;
}

.stat-card small,
.metric-label,
.proof-card small {
  display: block;
  color: var(--muted);
}

.stat-card strong,
.metric strong,
.proof-card strong {
  display: block;
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 34px;
}

.metrics,
.grid-two,
.grid-three,
.proof-grid,
.gallery-grid,
.capture-grid {
  display: grid;
  gap: 18px;
}

.metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.metric {
  min-height: 150px;
}

.metric-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  margin-bottom: 10px;
}

.section {
  margin-top: 34px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head p {
  max-width: 60ch;
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding: 12px 14px 12px 34px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  line-height: 1.65;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--violet-soft), var(--violet));
  box-shadow: 0 0 18px rgba(203, 88, 255, 0.88);
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card small {
  margin-top: 8px;
  margin-bottom: 12px;
}

.proof-card a,
.config-note code {
  color: var(--violet-soft);
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-card {
  display: grid;
  gap: 14px;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}

.quote-band p {
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.12;
  max-width: 20ch;
}

.capture-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.capture-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.config-note {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
  line-height: 1.6;
}

.capture-form {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  outline: none;
  transition: 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(203, 88, 255, 0.10);
}

textarea {
  resize: vertical;
  min-height: 132px;
}

.lead-status {
  min-height: 22px;
  color: var(--success);
  font-size: 14px;
}

.lead-preview {
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.lead-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

#contact-mode {
  color: var(--muted);
  font-size: 13px;
}

#lead-summary {
  margin: 0;
  white-space: pre-wrap;
  color: var(--text);
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.55;
}

.channel-actions {
  margin-top: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 28px 4px 0;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero,
  .capture-grid,
  .proof-grid,
  .metrics,
  .grid-three,
  .gallery-grid,
  .grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding-inline: 14px;
  }

  .topbar {
    border-radius: 28px;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .topnav {
    justify-content: flex-start;
  }

  .metrics,
  .grid-two,
  .grid-three,
  .proof-grid,
  .gallery-grid,
  .capture-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .stat-card,
  .metric,
  .panel,
  .mini-card,
  .proof-card,
  .gallery-card,
  .capture-copy,
  .capture-form,
  .quote-band {
    padding: 20px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  h1 {
    max-width: none;
  }

  .gallery-card img {
    height: 190px;
  }
}
