/* ===========================================================
   KIO Method — shared styles
   Fonts: Baloo 2 (headlines), Nunito (body/nav)
   Palette: indigo #312874, pale blue #87dfff
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,600&display=swap');

:root {
  --indigo: #312874;
  --indigo-dark: #201a4d;
  --dark-purple: #7a62de;
  --light-purple: #978ee1;
  --pale-blue: #87dfff;
  --white: #ffffff;
  --ink: #1c1730;
  --grey: #6b6680;
  --grey-light: #f4f2fa;
  --border: #e5e1f2;
  --gradient: linear-gradient(90deg, #5ce1eb 0%, #8c52ff 100%);
  --max-width: 1160px;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(49, 40, 116, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', sans-serif;
  color: var(--indigo);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: var(--indigo); text-decoration: none; }

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

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

/* ---------- Header ---------- */

.site-header {
  background: var(--white);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: flex;
  align-items: center;
  width: 200px;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: auto;
}

/* Placeholder wordmark used until the real logo SVG is dropped in */
.logo-placeholder {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--indigo);
  letter-spacing: 0.02em;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--indigo);
}

.main-nav a:hover { color: var(--pale-blue); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--indigo);
  margin: 5px 0;
}

.gradient-strip {
  height: 4px;
  background: var(--gradient);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--dark-purple);
  color: var(--white);
}
.btn-primary:hover { background: var(--indigo); }

.btn-secondary {
  background: transparent;
  border-color: var(--indigo);
  color: var(--indigo);
}
.btn-secondary:hover { background: var(--grey-light); }

.btn-block { width: 100%; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--indigo-dark);
  color: var(--white);
  padding: 72px 0 96px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-filter {
  position: absolute;
  inset: 0;
  background: rgba(49, 40, 116, 0.72);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--pale-blue);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white);
  margin-bottom: 14px;
}

.hero h1 .accent {
  color: var(--pale-blue);
  position: relative;
  white-space: nowrap;
}

.hero-strapline {
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: var(--pale-blue);
  margin-bottom: 28px;
}

.hero-body p {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
}

.hero-mic-drop {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  background: rgba(135, 223, 255, 0.16);
  border-left: 4px solid var(--pale-blue);
  padding: 14px 18px;
  border-radius: 8px;
  margin: 24px 0 8px;
}

.hero-photos {
  position: relative;
  min-height: 380px;
}

.hero-photo {
  position: absolute;
  width: 62%;
  border: 6px solid var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: var(--grey-light);
}

.hero-photo-back {
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-photo-front {
  bottom: 0;
  right: 0;
  z-index: 2;
  transform: rotate(4deg);
}

.hero-photo-placeholder {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}

/* ---------- Ladder table ---------- */

.ladder-section {
  padding: 72px 0;
}

.ladder-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.ladder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ladder-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ladder-card .tier-label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--grey);
}

.ladder-card h3 { margin-bottom: 2px; }

.ladder-card .price {
  font-family: 'Baloo 2', sans-serif;
  font-size: 32px;
  color: var(--indigo);
}
.ladder-card .price .was {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--grey);
  text-decoration: line-through;
  margin-left: 8px;
}

.ladder-card p { font-size: 15px; color: var(--grey); flex-grow: 1; }

/* ---------- Generic sections ---------- */

.section { padding: 64px 0; }
.section-alt { background: var(--grey-light); }
.section-narrow { max-width: 820px; margin: 0 auto; }

.pill-list { list-style: none; padding: 0; margin: 0; }
.pill-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 16px;
}
.pill-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--pale-blue);
  font-weight: 800;
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 16px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--indigo);
  font-weight: 800;
}

.callout {
  background: var(--grey-light);
  border-left: 4px solid var(--pale-blue);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 28px 0;
}

.founder-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(135,223,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Product hero (tier pages) ---------- */

.product-hero {
  background: var(--grey-light);
  padding: 56px 0;
  text-align: center;
}
.product-hero .price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 28px;
}
.product-hero .price-row .price {
  font-family: 'Baloo 2', sans-serif;
  font-size: 48px;
  color: var(--indigo);
}
.product-hero .price-row .was {
  font-size: 18px;
  color: var(--grey);
  text-decoration: line-through;
}

/* ---------- Forms ---------- */

form { max-width: 640px; }
.form-row { margin-bottom: 20px; }
label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 14px;
}
.hint { font-size: 13px; color: var(--grey); margin-top: 4px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
}
textarea { resize: vertical; }
fieldset { border: none; padding: 0; margin: 0 0 20px; }
legend { font-weight: 800; color: var(--indigo); margin-bottom: 10px; padding: 0; }
.radio-row { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-row label { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.radio-row input { width: auto; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--indigo-dark);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 32px;
  font-size: 14px;
}
.site-footer a { color: var(--white); }
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Floating "Book a call" CTA ---------- */

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-purple);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
  max-width: 300px;
}
.floating-cta:hover { background: var(--indigo); }
.floating-cta .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pale-blue);
  flex-shrink: 0;
}
.floating-cta .cta-text { text-align: left; }
.floating-cta .cta-title { font-weight: 800; font-size: 14px; display: block; }
.floating-cta .cta-sub { font-size: 12px; opacity: 0.9; display: block; }
.floating-cta .arrow { font-size: 18px; margin-left: 4px; }

@media (max-width: 720px) {
  .floating-cta .cta-sub { display: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-photos {
    order: -1;
    min-height: auto;
    position: static;
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
  }
  .hero-photo {
    position: static;
    width: 48%;
    transform: none;
  }
  .ladder-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; width: 100%; }
  .main-nav.nav-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .main-nav.nav-open ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }
  .main-nav.nav-open li { border-top: 1px solid var(--border); }
  .main-nav.nav-open a { display: block; padding: 14px 0; }
  .nav-toggle { display: block; }
  .site-header .container { position: relative; }
}

@media (max-width: 640px) {
  .ladder-grid { grid-template-columns: 1fr; }
}
