/* === MindSketch Marketing Site === */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --teal: #00b4a6;
  --teal-dark: #009a8e;
  --blue: #2E6DA4;
  --navy: #1a1230;
  --pink: #ff4d6d;
  --pink-dark: #e6384f;
  --purple: #7b4fff;
  --bg: #faf8f4;
  --card-bg: #ffffff;
  --muted: #8a7f9a;
  --border: #e8e4f0;
  --text: #1a1230;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin: 0 0 1em; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--pink);
  color: #fff;
}
.btn-primary:hover { background: var(--pink-dark); color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-secondary:hover { background: var(--teal); color: #fff; }

.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover { background: var(--teal-dark); color: #fff; }

.btn-lg { padding: 18px 36px; font-size: 1.15rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ── Header / Nav ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 108px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(255,255,255,0.15); color: #fff; }

.nav-ctas {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.nav-ctas .btn { padding: 10px 18px; font-size: 0.9rem; }
.nav-ctas .btn-primary { background: var(--pink); }
.nav-ctas .btn-secondary { border-color: #fff; color: #fff; }
.nav-ctas .btn-secondary:hover { background: #fff; color: var(--teal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(0,180,166,0.82) 0%, rgba(46,109,164,0.82) 60%, rgba(26,18,48,0.88) 100%),
    url('../images/hero_mindsketch.png') center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before { display: none; }
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero h1 { color: #fff; margin-bottom: 0.4em; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2em;
  font-weight: 600;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Section Wrapper ─────────────────────────────────────────── */
.section { padding: 72px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: #fff; }
.section-teal { background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%); color: #fff; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { color: var(--navy); }
.section-header p { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-teal .section-header h2,
.section-teal .section-header p { color: #fff; }

/* ── How It Works Steps ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 12px; }
.step-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ── Judge Cards ─────────────────────────────────────────────── */
.judges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.judge-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.judge-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.judge-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5f4, #d4effe);
}
.judge-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.judge-info { padding: 20px; }
.judge-name { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.judge-title { font-size: 0.85rem; color: var(--teal); font-weight: 700; margin-bottom: 8px; }
.judge-snippet { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ── Testimonial Cards ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 22px;
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-quote { font-style: italic; color: var(--text); margin-bottom: 16px; padding-top: 20px; }
.testimonial-author { font-weight: 800; color: var(--navy); font-size: 0.95rem; }
.testimonial-type { color: var(--muted); font-size: 0.85rem; }
.stars { color: #f5a623; font-size: 1rem; margin-bottom: 8px; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  padding: 72px 20px;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.4em; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2em; }
.cta-banner .btn-secondary { border-color: #fff; color: #fff; }
.cta-banner .btn-secondary:hover { background: #fff; color: var(--teal); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: #fff; font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }
.footer-links h4 { color: #fff; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.15s; }
.footer-links a:hover { color: var(--teal); }
.footer-newsletter { }
.footer-newsletter h4 { color: #fff; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.footer-newsletter p { font-size: 0.9rem; margin-bottom: 12px; }
.email-form { display: flex; gap: 8px; }
.email-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}
.email-form input::placeholder { color: rgba(255,255,255,0.4); }
.email-form input:focus { outline: none; border-color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ── Page Header (inner pages) ───────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  padding: 56px 20px;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 0.3em; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin: 0; }
.breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }

/* ── How It Works (full page) ────────────────────────────────── */
.hiw-steps { display: flex; flex-direction: column; gap: 40px; }
.hiw-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 5px solid var(--teal);
}
.hiw-step-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.hiw-step h3 { color: var(--navy); margin-bottom: 10px; }
.hiw-step p { color: var(--muted); margin: 0; }

.emphasis-box {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: #fff;
  margin: 40px 0;
}
.emphasis-box h3 { font-size: 1.8rem; margin-bottom: 12px; }
.emphasis-box p { opacity: 0.9; font-size: 1.05rem; margin: 0; }

/* ── Booking Page ────────────────────────────────────────────── */
.includes-list {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.includes-list ul { list-style: none; padding: 0; margin: 0; }
.includes-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}
.includes-list li:last-child { border-bottom: none; }
.includes-list li::before {
  content: '✓';
  width: 26px;
  height: 26px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
}
.pricing-badge {
  background: linear-gradient(135deg, var(--pink), #ff6b8a);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
  margin-top: 20px;
}

/* ── Forms ───────────────────────────────────────────────────── */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.form-group label .req { color: var(--pink); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,180,166,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.full { grid-column: 1 / -1; }
.form-submit { display: flex; justify-content: center; padding-top: 8px; }

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 600;
}
.alert-success { background: #d4f5f1; color: #007a6e; border: 1px solid #b0e8e2; }
.alert-error { background: #fde8ec; color: #c0132d; border: 1px solid #f8c0cc; }

/* ── Booking Layout ──────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* ── Host Page / Pricing Tiers ───────────────────────────────── */
.tiers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.tier-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 2px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.tier-card:hover { transform: translateY(-4px); }
.tier-card.featured { border-color: var(--teal); }
.tier-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tier-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.tier-price span { font-size: 1rem; color: var(--muted); font-weight: 600; }
.tier-name { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.tier-features { list-style: none; padding: 0; margin: 0 0 28px; }
.tier-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before { content: '✓'; color: var(--teal); font-weight: 900; flex-shrink: 0; }

.flywheel {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.flywheel-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.flywheel-step {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}
.flywheel-arrow { color: var(--teal); font-size: 1.4rem; font-weight: 900; }

.host-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.host-step-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.host-step-icon { font-size: 2.5rem; margin-bottom: 12px; }
.host-step-card h3 { color: var(--navy); margin-bottom: 8px; }
.host-step-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ── FAQ / Accordion ─────────────────────────────────────────── */
.faq-section { margin-bottom: 40px; }
.faq-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
}
.accordion { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}
.accordion-btn:hover { background: var(--bg); }
.accordion-btn.active { color: var(--teal); }
.accordion-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.accordion-btn.active .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-body.open { max-height: 400px; }
.accordion-body-inner {
  padding: 4px 24px 20px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ── Testimonials Page ───────────────────────────────────────── */
.nps-box {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  margin: 40px 0;
}
.nps-number { font-size: 5rem; font-weight: 900; line-height: 1; margin-bottom: 8px; }
.nps-label { font-size: 1.3rem; opacity: 0.9; }

/* ── Contact Page ────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon { font-size: 2rem; flex-shrink: 0; }
.contact-info-card h4 { color: var(--navy); margin-bottom: 4px; }
.contact-info-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .judges-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--blue);
    padding: 16px;
    z-index: 99;
    gap: 4px;
  }
  .nav-links.mobile-open + .nav-ctas {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: auto;
    width: 100%;
  }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .judges-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .host-steps-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hiw-step { grid-template-columns: 1fr; }
  .hiw-step-num { margin: 0 auto; }

  .hero { padding: 48px 20px; }
  .section { padding: 48px 20px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .judges-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .email-form { flex-direction: column; }
  .form-card { padding: 24px 20px; }
}
