:root {
  --bg: #08070E;
  --bg-card: rgba(16, 13, 28, 0.75);
  --bg-alt: #0D0B18;
  --border: rgba(255, 51, 102, 0.15);
  --text: #F3F0F9;
  --text-muted: #9D96B0;
  --pink: #FF3366;
  --purple: #7928CA;
  --cyan: #00E5FF;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wrap--narrow {
  max-width: 860px;
}

/* Owner Banner */
.owner-banner {
  background: linear-gradient(90deg, #2a0818, #440c26, #2a0818);
  border-bottom: 1px solid rgba(255, 51, 102, 0.35);
  padding: 0.6rem 0;
  font-size: 0.85rem;
}

.owner-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.owner-banner__tag {
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.owner-banner__text a {
  color: #FF80AB;
  text-decoration: underline;
  font-weight: 700;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 7, 14, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.brand__icon {
  width: 34px;
  height: 34px;
}

.brand__text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__dot {
  color: var(--pink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--pink);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  margin: 5px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn--pink {
  background: linear-gradient(135deg, var(--pink) 0%, #E6004C 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(255, 51, 102, 0.4);
}

.btn--pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 51, 102, 0.55);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
}

.btn--glass:hover {
  background: rgba(255, 51, 102, 0.1);
  border-color: var(--pink);
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 5.5rem 0 6rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.hero__glow {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.15) 0%, rgba(121, 40, 202, 0.1) 50%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 51, 102, 0.08);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: #FF80AB;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.pink-gradient {
  background: linear-gradient(90deg, #FF3366, #FF80AB, #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-box .s-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--pink);
}

.stat-box .s-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Phone Mockup */
.phone-card {
  width: 320px;
  margin: 0 auto;
  background: #110e1c;
  border: 4px solid #282138;
  border-radius: 36px;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(255, 51, 102, 0.25);
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 18px;
  background: #282138;
  border-radius: 0 0 12px 12px;
  margin: -1rem auto 1rem;
}

.phone-screen {
  background: #08060f;
  border-radius: 24px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reel-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.r-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #22C55E;
  font-weight: 700;
}

.r-pulse {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px #22C55E;
}

.r-tag {
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.reel-visual-box {
  height: 240px;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.3) 0%, rgba(121, 40, 202, 0.4) 100%), #1c142b;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.play-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin: auto;
}

.reel-title {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.reel-views {
  font-size: 0.75rem;
  color: #FF80AB;
}

.phone-actions {
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.eyebrow {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-size: 2.25rem;
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--pink);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Calculator */
.calc-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem;
}

.calc-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.range-pink {
  width: 100%;
  accent-color: var(--pink);
  cursor: pointer;
}

.toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.btn-toggle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.btn-toggle.active {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.calc-res {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.c-val {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #fff;
  margin-top: 0.25rem;
}

.c-val--pink {
  color: #FF80AB;
}

/* Contact Card */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
}

.owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 51, 102, 0.06);
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.avatar-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.c-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-align: left;
  transition: all 0.2s ease;
}

.c-btn:hover {
  border-color: var(--pink);
  background: rgba(255, 51, 102, 0.08);
}

.lead-form {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.f-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero__grid, .calc-grid, .form-row, .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: block;
  }
  .calc-box, .contact-card {
    padding: 2rem;
  }
}
