/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0C0C0E;
  --bg-2: #111115;
  --bg-3: #16161B;
  --amber: #E6A817;
  --amber-dim: rgba(230, 168, 23, 0.15);
  --amber-glow: rgba(230, 168, 23, 0.08);
  --text: #E8E4DC;
  --text-dim: #8A8680;
  --text-muted: #4A4845;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 6px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  padding: 100px 60px 120px;
  position: relative;
  min-height: 88vh;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 168, 23, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  background: var(--amber-dim);
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid rgba(230, 168, 23, 0.2);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
  flex-shrink: 0;
}

/* === AGENT CARD === */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.agent-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 0 60px rgba(230, 168, 23, 0.04);
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.agent-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber-dim);
  border: 1px solid rgba(230, 168, 23, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.agent-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-display);
}

.agent-status {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

.agent-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-left: auto;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: agent-pulse 2s ease-out infinite;
}

@keyframes agent-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.agent-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feed-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: var(--bg-3);
}

.feed-item--active {
  background: rgba(230, 168, 23, 0.06);
  border: 1px solid rgba(230, 168, 23, 0.15);
}

.feed-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feed-icon--search {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.feed-icon--search::after {
  content: '';
  width: 12px;
  height: 12px;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  position: relative;
}

.feed-icon--dm {
  background: rgba(230, 168, 23, 0.1);
  border: 1px solid rgba(230, 168, 23, 0.15);
}

.feed-icon--dm::after {
  content: '';
  display: block;
  width: 10px;
  height: 8px;
  border: 1.5px solid var(--amber);
  border-radius: 1px;
}

.feed-icon--reply {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.feed-icon--reply::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid #22c55e;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

.feed-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
}

.feed-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  text-align: right;
}

/* === SECTIONS === */
section {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
}

.section-headline.centered {
  text-align: center;
}

.section-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 520px;
}

.section-body.centered {
  margin: 0 auto 48px;
  text-align: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-dim);
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber-dim);
  border: 1px solid rgba(230, 168, 23, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check::after {
  content: '';
  display: block;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--amber);
  border-bottom: 1.5px solid var(--amber);
  transform: rotate(-45deg) translateY(-1px);
}

/* === OUTBOUND === */
.outbound {
  background: var(--bg);
}

.outbound-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.outbound-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dm-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.dm-card--secondary {
  opacity: 0.7;
  transform: translateX(12px);
}

.dm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dm-label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

.dm-sent {
  font-size: 11px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
}

.dm-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
  font-style: italic;
}

.dm-reply {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.dm-reply span {
  color: var(--text-muted);
  margin-right: 6px;
}

/* === LICENSE === */
.license {
  background: var(--bg-2);
}

.license-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.beat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.beat-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}

.beat-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.beat-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.beat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}

.beat-tag--exclusive {
  background: rgba(230, 168, 23, 0.12);
  color: var(--amber);
  border: 1px solid rgba(230, 168, 23, 0.2);
}

.beat-tag--active {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.beat-tag--available {
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

/* === DISTRIBUTION === */
.distribution {
  background: var(--bg);
}

.distribution-center {
  max-width: 640px;
  margin: 0 auto;
}

.platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 48px 0 40px;
  flex-wrap: wrap;
}

.platform-badge {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

.sync-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sync-bar {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  border-radius: 2px;
  opacity: 0.4;
}

.sync-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === CLOSING === */
.closing {
  background: var(--bg-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 168, 23, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-dim);
}

/* === FOOTER === */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--text-dim);
}

.footer-tag {
  font-size: 13px;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 40px 80px; min-height: auto; }
  .hero-visual { order: -1; }
  .outbound-layout, .license-layout { grid-template-columns: 1fr; gap: 48px; }
  .outbound-visual { order: -1; }
  section { padding: 72px 40px; }
  .nav { padding: 24px 40px; }
}

@media (max-width: 768px) {
  .hero { padding: 48px 24px 64px; }
  section { padding: 56px 24px; }
  .nav { padding: 20px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 8px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
  .beat-grid { grid-template-columns: 1fr 1fr; }
}

/* === SOCIAL PROOF === */
.social-proof {
  background: var(--bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 56px;
}

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-card--featured {
  border-color: rgba(230, 168, 23, 0.2);
  background: rgba(230, 168, 23, 0.03);
}

.testimonial-card--featured:hover {
  border-color: rgba(230, 168, 23, 0.35);
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber-dim);
  border: 1px solid rgba(230, 168, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.social-proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* === CLOSING / WAITLIST === */
.waitlist-form {
  margin-top: 40px;
}

.form-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 0;
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.waitlist-form input[type="email"]:focus {
  border-color: rgba(230, 168, 23, 0.4);
}

.waitlist-form input[type="email"].error {
  border-color: rgba(239, 68, 68, 0.6);
}

.waitlist-form button {
  background: var(--amber);
  color: #0C0C0E;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.waitlist-form button:hover {
  background: #f0b81e;
}

.waitlist-form button:active {
  transform: scale(0.97);
}

.waitlist-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  font-size: 13px;
  text-align: center;
  margin-top: 12px;
  min-height: 18px;
  color: var(--text-muted);
}

.form-note.success {
  color: #22c55e;
}

.form-note.error {
  color: #ef4444;
}

.closing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
}

.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .form-row { flex-direction: column; }
  .waitlist-form button { width: 100%; }
  .social-proof-stats { flex-direction: column; gap: 20px; }
  .proof-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 38px; }
  .section-headline { font-size: 32px; }
  .closing-headline { font-size: 36px; }
  .beat-grid { grid-template-columns: 1fr; }
  .platform-logos { gap: 10px; }
}
