/* ============================================
   THE LONG HAUL CAREERS — Global Stylesheet
   © 2026 Naomi Paton / The Long Haul Careers
   ============================================ */

/* --- IMPORTS --- */
/* Suez One (Title), Cantora One (Heading), Atkinson Hyperlegible (Body + Subheading) */
@import url('https://fonts.googleapis.com/css2?family=Suez+One&family=Cantora+One&family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/*
  APRICOTS FONT (Subtitle) — this is a paid font from Creative Market.
  To use it on your site:
    1. Purchase: https://creativemarket.com/kaitlynn.albani/3940200-Apricots
    2. Download the WOFF/WOFF2 files
    3. Upload them to your Netlify site (e.g. in an /assets/fonts/ folder)
    4. Uncomment the @font-face block below and update the src paths

  @font-face {
    font-family: 'Apricots';
    src: url('assets/fonts/Apricots.woff2') format('woff2'),
         url('assets/fonts/Apricots.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  Until then, Pacifico is used as a placeholder — friendly, legible, free handwritten style.
*/
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/* --- FONT TOKENS --- */
:root {
  --font-title:      'Suez One', Georgia, serif;           /* h1 / page titles */
  --font-subtitle:   'Apricots', 'Pacifico', cursive;    /* decorative subtitles — swap when you have Apricots */
  --font-heading:    'Cantora One', sans-serif;             /* h2, h3 section headings */
  --font-subheading: 'Atkinson Hyperlegible', sans-serif;   /* h4, card titles, labels */
  --font-body:       'Atkinson Hyperlegible', sans-serif;   /* all body copy */
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #fafafa;
  color: #1f2937;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; transition: all 0.2s ease; }
button { cursor: pointer; font-family: inherit; }

/* --- COLOUR TOKENS --- */
:root {
  --purple:  #8b5cf6;
  --purple-dark: #7c3aed;
  --green:   #10b981;
  --pink:    #ec4899;
  --yellow:  #fbbf24;
  --blue:    #3b82f6;
  --orange:  #f97316;
  --dark:    #1f2937;
  --mid:     #374151;
  --light:   #64748b;
  --border:  rgba(139,92,246,0.1);
  --bg:      #fafafa;
  --card:    #fffbf5;
  --white:   #ffffff;
}

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 5vw; }
.container--mid { max-width: 1100px; margin: 0 auto; padding: 0 5vw; }

/* --- TYPOGRAPHY --- */
h1 {
  font-family: var(--font-title);
  font-weight: 400; /* Suez One is a single-weight display font */
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-size: clamp(38px, 5.5vw, 64px);
}
h2 {
  font-family: var(--font-heading);
  font-weight: 400; /* Cantora One is single-weight */
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-size: clamp(28px, 4vw, 44px);
}
h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(20px, 2.5vw, 28px);
}
h4, .card__title, .service-card__title, .who-tile__name, .type-tile__name {
  font-family: var(--font-subheading);
  font-weight: 700;
}
p { line-height: 1.8; font-family: var(--font-body); }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 12px;
  display: block; font-family: var(--font-subheading);
}
.tagline-italic {
  font-size: 17px; font-weight: 400; font-style: normal;
  font-family: var(--font-subtitle);
  font-size: 22px;
  color: var(--purple); line-height: 1.55;
}

/* Nav uses subheading font */
.nav__logo-text-bottom, .nav__logo-bottom { font-family: var(--font-heading); }
.nav__link, .nav__cta { font-family: var(--font-subheading); }

/* Buttons use subheading font */
.btn { font-family: var(--font-subheading); font-weight: 700; }

/* Stat numbers get title font */
.stat__num { font-family: var(--font-heading); }

/* Footer */
.footer__logo-name { font-family: var(--font-heading); }

/* --- NAV --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 5vw;
  transition: background 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(250,250,250,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
}
.nav__logo img, .nav__logo-svg { height: 44px; width: 44px; object-fit: contain; }
.nav__logo-text-top { font-size: 11px; font-weight: 700; color: var(--purple); letter-spacing: 0.05em; line-height: 1; }
.nav__logo-text-bottom { font-size: 18px; font-weight: 900; color: var(--purple); line-height: 1.1; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link { color: var(--dark); font-weight: 500; font-size: 15px; }
.nav__link:hover { color: var(--purple); }
.nav__cta {
  background: var(--purple); color: #fff;
  padding: 10px 22px; border-radius: 100px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 14px rgba(139,92,246,0.3);
}
.nav__cta:hover { background: var(--purple-dark); transform: translateY(-1px); color: #fff; }
.nav__hamburger {
  display: none; background: none; border: none;
  font-size: 24px; color: var(--dark); padding: 8px;
}
.nav__mobile {
  display: none; background: #fff;
  border-top: 2px solid var(--purple); padding: 16px 5vw 24px;
}
.nav__mobile.open { display: block; }
.nav__mobile-link {
  display: block; padding: 13px 0; color: var(--dark);
  font-weight: 600; font-size: 17px;
  border-bottom: 1px solid #f3f4f6;
}
.nav__mobile-cta {
  display: block; margin-top: 16px;
  background: var(--purple); color: #fff;
  padding: 14px 0; border-radius: 12px;
  text-align: center; font-weight: 700;
}

/* Static nav variant (non-fixed, for inner pages) */
.nav--static {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block; border-radius: 100px;
  font-weight: 700; font-size: 16px; padding: 16px 32px;
  transition: all 0.25s ease; border: none;
  cursor: pointer; text-align: center;
}
.btn--primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  box-shadow: 0 8px 24px rgba(139,92,246,0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(139,92,246,0.45); color: #fff; }
.btn--outline {
  background: #fff; color: var(--purple);
  border: 2px solid rgba(139,92,246,0.25);
}
.btn--outline:hover { border-color: var(--purple); transform: translateY(-2px); color: var(--purple); }
.btn--white {
  background: #fff; color: var(--purple);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); color: var(--purple); }
.btn--purple { background: var(--purple); color: #fff; box-shadow: 0 8px 24px rgba(139,92,246,0.3); }
.btn--purple:hover { background: var(--purple-dark); transform: translateY(-2px); color: #fff; }
.btn--sm { font-size: 14px; padding: 12px 24px; }
.btn--lg { font-size: 18px; padding: 20px 48px; }

/* --- BADGE / PILL --- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,92,246,0.1); border-radius: 100px;
  padding: 6px 16px; font-size: 13px; font-weight: 600; color: var(--purple);
}
.badge__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
}
.tag {
  display: inline-block;
  background: rgba(139,92,246,0.1); color: var(--purple);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
}

/* --- CARDS --- */
.card {
  background: #fff; border-radius: 24px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.25);
}
.card--padded { padding: 28px; }
.card--large { padding: 36px; border-radius: 28px; }

/* --- SECTIONS --- */
.section { padding: 100px 0; }
.section--sm { padding: 80px 0; }
.section--white { background: #fff; }
.section--bg { background: var(--bg); }
.section--gradient { background: linear-gradient(135deg, #fdf4ff 0%, #f0fdf4 100%); }
.section--hero { background: linear-gradient(135deg, #fdf4ff 0%, #f0fdf4 50%, #fff7ed 100%); }
.section--purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 50%, var(--pink) 100%);
}
.section--dark { background: var(--dark); color: #fff; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { font-size: 17px; color: var(--light); max-width: 540px; margin: 16px auto 0; }

/* --- GRID HELPERS --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.gap-lg { gap: 40px; }
.gap-xl { gap: 64px; }
.gap-2xl { gap: 80px; }

/* --- HERO SPLIT --- */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-split--wide { grid-template-columns: 1fr 1.4fr; gap: 72px; }

/* --- COLOUR ACCENT BARS --- */
.accent-bar { height: 5px; border-radius: 3px; }
.accent-bar--purple { background: linear-gradient(90deg, var(--purple), rgba(139,92,246,0.4)); }
.accent-bar--full { background: linear-gradient(90deg, var(--purple), var(--pink), var(--green)); }

/* --- BLOB DECORATIONS --- */
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob--purple-tr { top: -10%; right: -5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%); }
.blob--green-bl { bottom: -10%; left: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%); }

/* --- PHOTO FRAME --- */
.photo-frame {
  border-radius: 32px; overflow: hidden;
  position: relative;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.photo-frame__badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--purple); border-radius: 100px;
  padding: 8px 18px;
  color: #fff; font-size: 13px; font-weight: 700;
}
.photo-frame__tags {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(31,41,55,0.85));
  padding: 40px 24px 24px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.photo-frame__tag {
  background: rgba(139,92,246,0.85); color: #fff;
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
}

/* --- STATS ROW --- */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat__num { font-size: 28px; font-weight: 900; color: var(--purple); }
.stat__label { font-size: 12px; color: var(--light); font-weight: 500; }

/* --- CTA STRIP --- */
.cta-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}

/* --- JOURNEY TYPE TICKER --- */
.ticker-card {
  background: #fff; border-radius: 28px; padding: 48px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 24px 64px rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.08);
  min-height: 340px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.ticker-card__bar {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--green));
}
.ticker-card__label {
  font-size: 13px; font-weight: 600; color: var(--light);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
.ticker-card__emoji { font-size: 64px; margin-bottom: 16px; transition: all 0.4s ease; }
.ticker-card__name { font-size: 26px; font-weight: 900; margin-bottom: 12px; transition: all 0.4s ease; }
.ticker-card__desc { font-size: 15px; color: var(--light); line-height: 1.6; transition: all 0.4s ease; }
.ticker-dots { display: flex; gap: 6px; margin-top: 24px; justify-content: center; }
.ticker-dot {
  height: 6px; border-radius: 3px; background: #e2e8f0;
  cursor: pointer; transition: all 0.3s ease;
}
.ticker-dot.active { background: var(--purple); width: 20px; }
.ticker-dot:not(.active) { width: 6px; }

/* --- WHO TILES --- */
.who-tile { text-align: center; padding: 28px 24px; }
.who-tile__emoji { font-size: 36px; margin-bottom: 12px; }
.who-tile__name { font-weight: 800; font-size: 16px; margin-bottom: 6px; }
.who-tile__sub { font-size: 13px; color: var(--light); line-height: 1.5; }

/* --- SERVICE CARD --- */
.service-card { padding: 36px; }
.service-card__who {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 6px;
}
.service-card__icon { font-size: 36px; margin-bottom: 16px; }
.service-card__title { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.service-card__desc { font-size: 15px; color: var(--light); line-height: 1.7; }
.service-card__link { font-weight: 700; font-size: 14px; margin-top: auto; display: block; padding-top: 16px; }

/* --- QUIZ CTA BANNER --- */
.quiz-banner { padding: 80px 5vw; position: relative; overflow: hidden; }
.quiz-banner__bg-emoji {
  position: absolute; top: 50%; right: 5%; transform: translateY(-50%);
  font-size: 300px; opacity: 0.08; pointer-events: none; line-height: 1;
}

/* --- JOURNEY TYPES GRID --- */
.type-tile { text-align: center; padding: 24px 20px; }
.type-tile__emoji { font-size: 32px; margin-bottom: 10px; }
.type-tile__name { font-weight: 800; font-size: 14px; margin-bottom: 8px; }
.type-tile__desc { font-size: 12px; color: var(--light); line-height: 1.5; }

/* --- ABOUT PAGE --- */
.origin-para { font-size: 17px; color: var(--light); line-height: 1.85; }
.origin-para--lead { color: var(--dark); font-weight: 500; }

/* --- THEORY BUTTONS --- */
.theory-btn {
  border-radius: 20px; padding: 20px 16px;
  border: 2px solid rgba(139,92,246,0.1);
  background: #fff; text-align: center;
  transition: all 0.25s ease; cursor: pointer;
}
.theory-btn:hover { transform: translateY(-2px); }
.theory-btn.active { color: #fff; }
.theory-btn__icon { font-size: 28px; margin-bottom: 8px; }
.theory-btn__name { font-weight: 800; font-size: 12px; line-height: 1.3; }
.theory-btn__cite { font-size: 10px; margin-top: 6px; line-height: 1.4; opacity: 0.7; }

/* --- THEORY PANEL --- */
.theory-panel { border-radius: 24px; padding: 40px; display: none; }
.theory-panel.open { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.theory-panel__icon { font-size: 48px; }
.theory-panel__body { flex: 1; min-width: 240px; }
.theory-panel__name { font-size: 22px; font-weight: 900; margin-bottom: 4px; }
.theory-panel__cite { font-size: 13px; font-weight: 600; font-style: italic; margin-bottom: 16px; }
.theory-panel__desc { font-size: 16px; color: var(--light); line-height: 1.8; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid rgba(139,92,246,0.1); }
.faq-btn {
  width: 100%; background: none; border: none;
  padding: 18px 0; display: flex;
  justify-content: space-between; align-items: center;
  text-align: left; gap: 16px; cursor: pointer;
}
.faq-btn__q { font-weight: 700; font-size: 15px; color: var(--dark); }
.faq-btn__icon { font-size: 20px; color: var(--purple); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-btn__icon.open { transform: rotate(45deg); }
.faq-answer { font-size: 15px; color: var(--light); line-height: 1.7; padding-bottom: 18px; padding-right: 32px; display: none; }
.faq-answer.open { display: block; }

/* --- PRICING PANEL --- */
.pricing-panel {
  border-radius: 20px; padding: 28px;
  margin-bottom: 16px;
}
.pricing-panel__label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.pricing-panel__duration-label { font-size: 12px; color: var(--light); margin-bottom: 4px; }
.pricing-panel__duration { font-weight: 800; font-size: 18px; margin-bottom: 12px; }
.pricing-panel__price-label { font-size: 12px; color: var(--light); margin-bottom: 4px; }
.pricing-panel__price { font-weight: 900; font-size: 28px; margin-bottom: 8px; }
.pricing-panel__intro { font-size: 11px; font-style: italic; color: var(--light); background: rgba(139,92,246,0.06); padding: 8px 12px; border-radius: 8px; margin-bottom: 20px; }

/* --- INCLUDES LIST --- */
.includes-list { list-style: none; }
.includes-list li { display: flex; gap: 8px; margin-bottom: 8px; font-size: 13px; color: var(--light); line-height: 1.5; }
.includes-list__check { font-weight: 700; flex-shrink: 0; }

/* --- BOOKING WIDGET PLACEHOLDER --- */
.booking-placeholder {
  background: rgba(255,255,255,0.95); border-radius: 16px;
  padding: 32px 24px; margin-bottom: 20px; text-align: center;
}
.booking-placeholder__icon { font-size: 32px; margin-bottom: 12px; }
.booking-placeholder__title { font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.booking-placeholder__desc { font-size: 14px; color: var(--light); margin-bottom: 16px; }

/* --- FREE VS PAID --- */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comparison-card { border-radius: 24px; padding: 40px; }
.comparison-card__badge { font-weight: 800; font-size: 13px; padding: 6px 14px; border-radius: 100px; display: inline-block; margin-bottom: 12px; }
.comparison-card__title { font-size: 22px; font-weight: 800; display: inline; margin-left: 12px; }
.comparison-card__header { display: flex; align-items: center; margin-bottom: 24px; }
.tick-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.6; }
.tick-list__icon { font-weight: 800; font-size: 16px; margin-top: 1px; flex-shrink: 0; }

/* --- DOMAIN SPECTRUM BAR --- */
.domain-card { border-radius: 20px; padding: 28px; }
.domain-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.domain-card__emoji { font-size: 28px; }
.domain-card__name { font-weight: 800; font-size: 15px; }
.domain-card__code { font-size: 12px; font-weight: 600; }
.domain-bar-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--light); margin-bottom: 8px; }
.domain-bar { height: 6px; border-radius: 3px; margin-bottom: 16px; }
.domain-card__desc { font-size: 13px; color: var(--light); line-height: 1.6; }

/* --- FOOTER --- */
.footer { background: var(--dark); color: #fff; padding: 60px 0 36px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 48px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__logo img { height: 40px; width: 40px; object-fit: contain; }
.footer__logo-name-top { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.footer__logo-name { font-size: 17px; font-weight: 900; color: #fff; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer__heading { font-weight: 700; font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer__link { display: block; color: rgba(255,255,255,0.5); font-size: 15px; margin-bottom: 10px; transition: color 0.2s; }
.footer__link:hover { color: #fff; }
.footer__email { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; }
.footer__social { display: flex; gap: 12px; }
.footer__social-btn {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
}
.footer__social-btn:hover { background: var(--purple); color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.35); }

/* --- ANIMATIONS --- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3 { transition-delay: 0.24s; }
.fade-up.delay-4 { transition-delay: 0.32s; }

/* --- UTILITY --- */
.text-purple { color: var(--purple); }
.text-light { color: var(--light); }
.text-center { text-align: center; }
.text-white { color: #fff; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .theory-btn__name { font-size: 11px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .nav { position: sticky; background: rgba(250,250,250,0.96); border-bottom: 1px solid var(--border); }

  h1 { font-size: clamp(34px, 9vw, 52px); }
  h2 { font-size: clamp(26px, 6vw, 36px); }

  .section { padding: 64px 0; }
  .section--sm { padding: 48px 0; }

  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-split--wide { grid-template-columns: 1fr; gap: 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cta-strip { flex-direction: column; align-items: stretch; }
  .theory-btn { padding: 14px 10px; }

  .photo-frame { aspect-ratio: 4/3; }
  .ticker-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── Who-tile clickable ─────────────────────────── */
.who-tile--link { transition: transform 0.2s, box-shadow 0.2s; }
.who-tile--link:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(139,92,246,0.12); }
.who-tile__cta { font-size: 13px; font-weight: 700; margin-top: 10px; opacity: 0; transition: opacity 0.2s; }
.who-tile--link:hover .who-tile__cta { opacity: 1; }

/* ── Who-tiles: 4-col row + centred 5th tile ───────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
/* 5th tile spans all 4 cols, then we use auto margins to centre it */
.who-grid > *:last-child {
  grid-column: 1 / -1;
  max-width: 280px;
  justify-self: center;
}
@media (max-width: 900px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid > *:last-child { grid-column: auto; max-width: 100%; justify-self: auto; }
}
@media (max-width: 480px) {
  .who-grid { grid-template-columns: 1fr; }
  .who-grid > *:last-child { grid-column: auto; max-width: 100%; }
}


/* ── BRANDING ENHANCEMENTS ── */
.hero__logo-mark img {
  filter: drop-shadow(0 4px 20px rgba(139,92,246,0.18));
}

.landing__logo-mark {
  margin-bottom: 0;
}

/* Logo strip / brand band */
.brand-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 0;
  opacity: 0.55;
  flex-wrap: wrap;
}
.brand-logo-strip img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  filter: saturate(0) brightness(0.5);
  transition: filter 0.25s, opacity 0.25s;
}
.brand-logo-strip img:hover {
  filter: saturate(1) brightness(1);
  opacity: 1;
}

/* Large featured brand logo on quiz page */
.quiz-brand-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}

/* Footer logo upgrade */
.footer__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Nav logo text update */
.nav__logo-text-top {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--purple);
  line-height: 1;
}
.nav__logo-text-bottom {
  font-size: 18px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1.1;
}
