/* ============================================================
   styles-v03.css — Magikid Franchise v0.3
   Clean slate. Brand colors. Minimal sections.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;900&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --navy:    #141c42;
  --deep:    #0b0f22;
  --card:    #1b2460;
  --border:  #2a3880;
  --cyan:    #01c1c8;
  --blue:    #01abff;
  --yellow:  #ffde59;
  --text:    #ffffff;
  --muted:   #dde8fe;
  --dim:     #5a6a9a;
  --radius:  14px;
  --r-pill:  100px;
  --max-w:   960px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Gradient helpers ─────────────────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 66px;
  background: rgba(11, 15, 34, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42, 56, 128, 0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo span {
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--dim);
  display: block;
  margin-top: -4px;
  -webkit-text-fill-color: var(--dim);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  padding: 9px 24px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.88rem;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 28px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(1,171,255,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(1,193,200,0.08) 0%, transparent 60%),
    var(--navy);
  z-index: 0;
}
/* Subtle grid lines */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,56,128,0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,56,128,0.2) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-badge {
  display: inline-block;
  background: rgba(1,171,255,0.12);
  border: 1px solid rgba(1,171,255,0.35);
  color: #7de4ff;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--text);
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.hero-sub em { color: var(--text); font-style: normal; font-weight: 600; }
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  padding: 16px 40px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(1,171,255,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(1,171,255,0.38);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--dim);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--dim), transparent);
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-inner {
  display: flex;
  max-width: var(--max-w);
  margin: 0 auto;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── FOUNDER STORY ───────────────────────────────────────── */
.section { padding: 100px 0; }

.founder-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 56px 56px 60px;
  position: relative;
  overflow: hidden;
  margin-top: 56px;
}
.founder-wrap::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,193,200,0.12), transparent 70%);
  pointer-events: none;
}
.founder-tag {
  display: inline-block;
  background: rgba(255,222,89,0.14);
  border: 1px solid rgba(255,222,89,0.38);
  color: var(--yellow);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.founder-quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 20px;
}
.founder-quote::before {
  content: '"';
  font-size: 3rem;
  line-height: 0.6;
  vertical-align: -0.3em;
  color: var(--cyan);
  margin-right: 4px;
  opacity: 0.7;
}
.founder-desc {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
}
.founder-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.founder-avatars {
  display: flex;
  justify-content: center;
}
.f-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  border: 3px solid var(--deep);
}
.f-avatar:first-child {
  background: linear-gradient(135deg, #01c1c8, #01abff);
  margin-right: -16px;
  position: relative; z-index: 2;
}
.f-avatar:last-child {
  background: linear-gradient(135deg, #3133ff, #01abff);
}
.founder-since {
  font-size: 0.78rem;
  color: var(--dim);
  margin-top: 4px;
}
.founder-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.f-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  display: block;
  line-height: 1;
}
.f-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}

/* ── SECTION TITLES ──────────────────────────────────────── */
.sec-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(1,193,200,0.1);
  padding: 4px 13px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.sec-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ── BENEFITS ────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.2s, border-color 0.2s;
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(1,193,200,0.5);
}
.benefit-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}
.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.benefit-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-section {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.contact-left .sec-sub { margin-top: 16px; }

.trust-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}
.trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  flex-shrink: 0;
  margin-top: 5px;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-intro {
  font-size: 0.85rem;
  color: var(--dim);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}
.form-group input {
  width: 100%;
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--blue); }
.form-group input::placeholder { color: var(--dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 15px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 6px 24px rgba(1,171,255,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(1,171,255,0.35);
}
.form-note {
  font-size: 0.72rem;
  color: var(--dim);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}
.form-success {
  display: none;
  background: rgba(1,193,200,0.1);
  border: 1px solid rgba(1,193,200,0.4);
  color: #01c1c8;
  padding: 14px;
  border-radius: 10px;
  margin-top: 14px;
  font-size: 0.88rem;
  text-align: center;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #07091a;
  border-top: 1px solid var(--border);
  padding: 32px 28px;
  text-align: center;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.footer p {
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.6;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 780px) {
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item:last-child { border-bottom: none; }

  .founder-wrap {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }
  .founder-aside { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .founder-stats { flex-direction: row; justify-content: center; }

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

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .hero h1 { letter-spacing: -0.02em; }
}
