/* Seriousmindz AI Partners — Brand System */
:root {
  --bg: #080614;
  --bg-2: #0F0A24;
  --bg-3: #130B2E;
  --purple: #7850B4;
  --neon-violet: #B967FF;
  --neon-cyan: #00F0FF;
  --neon-pink: #FF78C8;
  --gold: #D4AF37;
  --text: #EDE9FE;
  --muted: #9791C4;
  --line: rgba(185, 103, 255, 0.18);
  --card: rgba(185, 103, 255, 0.04);
  --shadow-glow: 0 0 60px rgba(185, 103, 255, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Ambient background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(185, 103, 255, 0.18), transparent 50%),
    radial-gradient(ellipse at 85% 30%, rgba(0, 240, 255, 0.12), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(120, 80, 180, 0.18), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 6, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 48px; width: auto; filter: drop-shadow(0 0 18px rgba(185, 103, 255, 0.45)); }
/* Wordmark is baked into the logo image — hide any duplicate text */
.logo-text { display: none; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon-violet), var(--purple));
  color: white;
  box-shadow: 0 8px 32px rgba(185, 103, 255, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(185, 103, 255, 0.55); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(185, 103, 255, 0.04);
}
.btn-ghost:hover { border-color: var(--neon-violet); background: rgba(185, 103, 255, 0.08); }

/* Hero */
.hero { padding: 100px 0 80px; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(185, 103, 255, 0.06);
  color: var(--neon-violet);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 12px var(--neon-cyan);
}
.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #FFFFFF 40%, #B967FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; }
.stat {
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  backdrop-filter: blur(10px);
  text-align: center;
}
.stat .num {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat .lbl { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Sections */
section { padding: 80px 0; position: relative; }
.section-eyebrow {
  display: block;
  color: var(--neon-violet);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--muted); max-width: 620px; margin-bottom: 48px; }

/* Affiliate grid */
.aff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.aff-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(185, 103, 255, 0.06), rgba(8, 6, 20, 0.3));
  overflow: hidden;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
}
.aff-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-violet);
  box-shadow: var(--shadow-glow);
}
.aff-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(185, 103, 255, 0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.aff-card:hover::before { opacity: 1; }
.aff-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}
.aff-photo img { width: 100%; height: 100%; object-fit: cover; }
.aff-name { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.aff-title { color: var(--neon-cyan); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.aff-bio { color: var(--muted); font-size: 15px; line-height: 1.5; margin-bottom: 22px; }
.aff-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-violet);
  font-weight: 600;
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  width: 100%;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--neon-violet), var(--purple));
  font-weight: 700;
  font-size: 18px;
  color: white;
  margin-bottom: 18px;
}
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* CTA band */
.cta-band {
  padding: 72px 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(185, 103, 255, 0.18), rgba(0, 240, 255, 0.08));
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(185, 103, 255, 0.3), transparent 60%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.1); } }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 14px; letter-spacing: -0.01em; }
.cta-band p { color: var(--muted); font-size: 17px; max-width: 560px; margin: 0 auto 28px; }

/* Footer */
footer {
  margin-top: 80px;
  padding: 48px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 24px; }

/* ------- Affiliate personal page ------- */
.aff-hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
}
.aff-hero-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-glow);
}
.aff-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.aff-hero-content h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #FFF 40%, #B967FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.aff-hero-content .title { color: var(--neon-cyan); font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; }
.aff-hero-content .intro { font-size: 18px; color: var(--muted); line-height: 1.6; margin-bottom: 32px; }

.pitch-box {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(185, 103, 255, 0.12), rgba(0, 240, 255, 0.05));
  border: 1px solid var(--line);
  margin-bottom: 32px;
}
.pitch-box h3 { color: var(--neon-violet); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.pitch-box p { color: var(--text); font-size: 16px; line-height: 1.6; }

/* Calendar embed section */
.booking {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(15, 10, 36, 0.6));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking-header { text-align: center; margin-bottom: 40px; }
.booking-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.booking-header p { color: var(--muted); font-size: 17px; max-width: 580px; margin: 0 auto; }
.deposit-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cal-frame {
  background: rgba(8, 6, 20, 0.4);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  overflow: hidden;
}
.cal-frame iframe { width: 100%; min-height: 720px; border: 0; border-radius: 16px; background: #fff; }

/* What you get */
.get-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.get-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
}
.get-card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--neon-violet), var(--purple));
  font-size: 22px;
  margin-bottom: 14px;
}
.get-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.get-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* Form */
.form-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(185, 103, 255, 0.06), rgba(8, 6, 20, 0.3));
  border: 1px solid var(--line);
}
.form-row { margin-bottom: 20px; }
label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(8, 6, 20, 0.6);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--neon-violet); }
textarea { resize: vertical; min-height: 110px; }

/* Responsive */
@media (max-width: 900px) {
  .aff-hero { grid-template-columns: 1fr; gap: 40px; }
  .aff-grid, .steps, .get-grid, .stats { grid-template-columns: 1fr; }
  .nav-links { gap: 18px; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 60px 0 40px; }
  section { padding: 56px 0; }
  .cta-band { padding: 48px 24px; }
  .form-card { padding: 28px 20px; }
}
