/* =========================================================================
   JEBBEE.COM — site chrome (header, footer, buttons, sections)
   Light canvas · Jebbee Purple pop · STIX Two Text display / Outfit UI
   ========================================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cool-grey);
  color: var(--fg-2);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; }

::selection { background: var(--brand-purple); color: #fff; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(110, 107, 123, 0.1);
}
.site-header .logo-link { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.site-header .logo-link img.wordmark { height: 26px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.site-nav a.nav-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--fg-1);
  text-decoration: none;
  padding: 7px 11px;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav a.nav-link:hover { background: var(--brand-purple-soft); color: var(--brand-purple); text-decoration: none; }
.site-nav a.nav-link.active { background: var(--brand-purple); color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand-purple); color: #fff; }
.btn-primary:hover { background: var(--brand-purple-hover); box-shadow: var(--shadow-6); transform: translateY(-1px); }
.btn-dark { background: var(--brand-black); color: #fff; }
.btn-dark:hover { background: #1d1d22; box-shadow: var(--shadow-6); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--brand-purple);
  box-shadow: inset 0 0 0 1.5px var(--brand-purple);
}
.btn-outline:hover { background: var(--brand-purple-soft); }
.btn-lg { font-size: 17px; padding: 14px 32px; }
.btn-on-dark { background: #fff; color: var(--brand-black); }
.btn-on-dark:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.35); transform: translateY(-1px); }

.header-cta { margin-left: 8px; }

/* ------------------------------------------------ mobile nav (hamburger) */
/* button is injected by site.js; hidden on desktop */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(110, 107, 123, 0.16);
  border-radius: var(--radius-pill);
  background: #fff; color: var(--fg-1);
  cursor: pointer; flex: 0 0 auto;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-toggle:hover { background: var(--brand-purple-soft); color: var(--brand-purple); }
.nav-toggle .ico-close { display: none; }
.site-header.nav-open .nav-toggle .ico-open { display: none; }
.site-header.nav-open .nav-toggle .ico-close { display: inline-flex; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-left: 0;
    padding: 14px 20px 22px;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(110, 107, 123, 0.12);
    box-shadow: 0 18px 40px rgba(51, 48, 60, 0.12);
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .site-header.nav-open .site-nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a.nav-link {
    display: block;
    font-size: 16px;
    padding: 12px 14px;
  }
  .site-nav a.nav-link.active { display: block; }
  .header-cta { margin: 10px 0 0; width: 100%; }
}

/* avoid a flash of the unstyled mobile panel before JS runs */
@media (max-width: 880px) {
  .js-loading .site-nav { transition: none; }
}

/* ---------------------------------------------------------------- shells */
.page-offset { padding-top: 64px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ------------------------------------------------------------- sections */
.section { padding: 96px 0; }
.section.alt { background: #fff; }
.section.tint { background: var(--lavender-mist); }
.section.dark { background: var(--brand-black); color: rgba(255,255,255,0.78); }
.section.dark h2, .section.dark h3 { color: #fff; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin: 0 0 16px;
}
.kicker::before {
  content: "";
  width: 18px; height: 2px; border-radius: 2px;
  background: var(--brand-purple);
}

.display-xl {
  font-family: var(--font-serif);
  font-weight: var(--fw-bold);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.display-lg {
  font-family: var(--font-serif);
  font-weight: var(--fw-bold);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 600px;
  text-wrap: pretty;
}
.section.dark .display-lg, .section.dark .display-xl { color: #fff; }
.section.dark .lede { color: rgba(255,255,255,0.72); }

em.accent { font-style: italic; color: var(--brand-purple); }

/* --------------------------------------------------------- feature rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 48px 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--divider); }
.feature-row.flip > .feature-copy { order: 2; }
.feature-row.flip > .feature-visual { order: 1; }
.feature-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
  margin: 0 0 18px;
}
.feature-copy p.body { font-size: 17px; line-height: 1.65; margin: 0 0 14px; max-width: 480px; }
.feature-icon-lockup { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.feature-icon-lockup .vessel {
  width: 44px; height: 44px;
  border-radius: 7px;
  background: var(--lavender-mist);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon-lockup .vessel img { width: 24px; height: 24px; object-fit: contain; }
/* per-feature icon: white vessel with a thick border in the feature's home-page color */
.feature-icon-lockup .vessel.t-purple { background: #fff; border: 8px solid var(--brand-purple); }
.feature-icon-lockup .vessel.t-lime   { background: #fff; border: 8px solid var(--chartreuse); }
.feature-icon-lockup .vessel.t-aqua   { background: #fff; border: 8px solid var(--electric-aqua); }
.feature-icon-lockup .vessel.t-green  { background: #fff; border: 8px solid #19cb6e; }
.feature-icon-lockup .vessel.t-orange { background: #fff; border: 8px solid #ff6a00; }
.feature-icon-lockup .vessel.t-blue   { background: #fff; border: 8px solid var(--electric-blue); }
.feature-icon-lockup .vessel.t-teal   { background: #fff; border: 8px solid #0d9488; }
.feature-icon-lockup .vessel.t-dust   { background: #fff; border: 8px solid var(--dust); }
.feature-icon-lockup .vessel.t-lav    { background: #fff; border: 8px solid var(--brand-purple); }
.feature-icon-lockup .vessel.t-black  { background: #fff; border: 8px solid var(--brand-black); }
.feature-icon-lockup .label {
  font-size: 13px; font-weight: var(--fw-bold);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-purple);
}
.feature-links { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

.feature-visual { position: relative; }

/* ------------------------------------------------------------ ui mocks */
.mock-card {
  background: var(--bg-paper);
  border-radius: 14px;
  box-shadow: var(--shadow-9);
  border: 1px solid rgba(110, 107, 123, 0.08);
  overflow: hidden;
}
.mock-pad { padding: 24px; }
.mock-title { font-weight: var(--fw-semibold); color: var(--fg-1); font-size: 15px; }
.mock-sub { font-size: 13px; color: var(--fg-3); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: var(--fw-medium);
  background: var(--brand-purple-soft); color: var(--brand-purple);
}
.chip.solid { background: var(--brand-purple); color: #fff; }
.chip.aqua { background: rgba(28, 185, 234, 0.14); color: #0e8fb6; }
.chip.lime { background: rgba(216, 229, 87, 0.32); color: #6d7415; }
.chip.grey { background: var(--bg-track); color: var(--fg-2); }

.match-bar { height: 8px; border-radius: 8px; background: var(--bg-track); overflow: hidden; }
.match-bar > i { display: block; height: 100%; border-radius: 8px; background: var(--brand-purple); }

/* --------------------------------------------------------------- footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--brand-black);
  color: rgba(255, 255, 255, 0.64);
  padding: 72px 0 40px;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-strip {
  position: absolute; top: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(6, 1fr);
  height: 6px;
}
/* color dash-bar above the footer — applied on every page via ::before */
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; z-index: 2;
  background: linear-gradient(90deg,
    var(--brand-purple) 0 16.6667%,
    var(--electric-aqua) 16.6667% 33.3333%,
    #19cb6e 33.3333% 50%,
    var(--chartreuse) 50% 66.6667%,
    #ff6a00 66.6667% 83.3333%,
    var(--electric-blue) 83.3333% 100%);
}
.footer-ast {
  position: absolute; right: -60px; bottom: -90px;
  width: 340px; height: auto;
  opacity: 0.06; pointer-events: none; z-index: 0;
  transform: rotate(-8deg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.site-footer img.wordmark,
.site-footer .footer-logo { height: 34px; width: auto; align-self: flex-start; margin-bottom: 16px; display: block; }
.site-footer .tagline { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: #fff; margin: 0 0 24px; }
.footer-col h6 {
  color: #fff; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: var(--fw-bold); margin: 0 0 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.64); font-size: 15px; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.store-badges { display: flex; gap: 12px; }
.store-badges img { height: 40px; width: auto; border-radius: 8px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-bottom .mini-links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ------------------------------------------------------------- reveals */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ------------------------------------------------------- subpage heros */
.page-hero { padding: 76px 0 64px; }
.page-hero.dark {
  background: var(--brand-black);
  color: rgba(255,255,255,0.75);
}
.page-hero.dark .display-xl { color: #fff; }
.page-hero.dark .lede { color: rgba(255,255,255,0.72); }

/* shared hero split + cinematic media card (audience & utility pages) */
.hero-split { display: grid; grid-template-columns: 1.18fr 0.82fr; gap: 56px; align-items: center; }
.hero-split .hero-copy { min-width: 0; }
.hero-media { position: relative; width: 100%; max-width: 360px; justify-self: center; aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden; background: var(--brand-black); box-shadow: var(--shadow-9); }
.hero-media video, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media .grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,4,5,0) 42%, rgba(4,4,5,0.62) 100%); }
.hero-media .play { position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.2); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; color: #fff; }
.hero-media .cap { position: absolute; left: 20px; right: 20px; bottom: 20px; color: #fff; }
.hero-media .cap .k { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(255,255,255,0.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 6px 13px; border-radius: 25px; }
.hero-media .cap .k .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--chartreuse); }
.hero-media .cap .t { font-family: var(--font-serif); font-weight: 700; font-size: 21px; line-height: 1.22; margin-top: 13px; text-shadow: 0 1px 10px rgba(0,0,0,0.45); }
@media (max-width: 880px) { .hero-split { grid-template-columns: 1fr; gap: 40px; } .hero-media { margin: 0 auto; max-width: 380px; } }

/* CTA band */
.cta-band { background: var(--brand-purple); color: #fff; padding: 88px 0; text-align: center; }
.cta-band .display-lg { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.82); font-size: 18px; margin: 0 auto 32px; max-width: 520px; }

/* ===================== TESTIMONIALS — horizontal scroller ============ */
.voices {
  --gutter: max(32px, calc((100vw - 1200px) / 2 + 32px));
  background: #ececed;
  padding: clamp(56px, 6vw, 100px) 0;
  overflow: hidden;
}
.voices-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(24px, 2.6vw, 40px);
}
.voices-head { max-width: 640px; }
.voices-head .kicker { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: var(--fw-bold); color: var(--brand-purple); margin: 0 0 12px; }
.voices-head h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 46px); line-height: 1.08; letter-spacing: -0.015em; color: var(--fg-1); margin: 0; }
.voices-head h2 em { font-style: normal; color: var(--brand-purple); }

.vscroll-nav { display: flex; gap: 10px; flex: 0 0 auto; padding-bottom: 4px; }
.vscroll-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(164, 74, 249, 0.3); background: #fff; color: var(--brand-purple);
  font-size: 19px; cursor: pointer; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(51, 48, 60, 0.1);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}
.vscroll-btn:hover { background: var(--brand-purple); color: #fff; transform: translateY(-2px); }
.vscroll-btn:disabled { opacity: 0.32; cursor: default; transform: none; }
@media (max-width: 680px) { .vscroll-nav { display: none; } }

.vscroll {
  display: flex; gap: 18px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 8px var(--gutter) 26px;
  scroll-padding-left: var(--gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.vscroll::-webkit-scrollbar { display: none; }

.qcard {
  flex: 0 0 clamp(282px, 31vw, 396px);
  scroll-snap-align: start;
  background: #fff; border-radius: 14px;
  padding: clamp(24px, 2vw, 34px);
  display: flex; flex-direction: column;
  box-shadow: 0 10px 30px rgba(51, 48, 60, 0.08);
  border: 1px solid rgba(110, 107, 123, 0.08);
}
.qcard .qtag {
  align-self: flex-start;
  font-size: 11.5px; font-weight: var(--fw-bold); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill, 25px);
  margin-bottom: clamp(16px, 1.6vw, 22px);
}
.qcard blockquote {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(16px, 1.2vw, 20px); line-height: 1.45; letter-spacing: -0.01em;
  color: var(--fg-1); margin: 0 0 auto; text-wrap: pretty;
}
.qcard .who { display: flex; align-items: center; gap: 12px; margin-top: clamp(20px, 2vw, 30px); }
.qcard .ini {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-weight: var(--fw-bold); font-size: 15px; color: #fff;
}
.qcard .who .nm { font-weight: var(--fw-semibold); font-size: 15px; color: var(--fg-1); line-height: 1.25; }
.qcard .who .rl { font-size: 12.5px; color: var(--fg-3); line-height: 1.3; }

.tag-student  { background: var(--brand-purple-soft); color: var(--brand-purple); }
.tag-teacher  { background: rgba(28, 185, 234, 0.16); color: #0e8fb6; }
.tag-employer { background: rgba(255, 106, 0, 0.15); color: #d9590a; }
.tag-school   { background: rgba(25, 203, 110, 0.18); color: #0f9152; }

/* ===================== AUDIENCE — directory list ===================== */
.path-cta { background: #fff; padding: clamp(56px, 6vw, 104px) 0; }
.path-head { max-width: 720px; margin: 0 0 clamp(18px, 2.2vw, 32px); }
.path-head h2 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(30px, 3.6vw, 52px); line-height: 1.06;
  letter-spacing: -0.015em; color: var(--fg-1); margin: 0 0 14px;
}
.path-head h2 em { font-style: normal; color: var(--brand-purple); }
.path-head p { color: var(--fg-3); font-size: clamp(15px, 1.15vw, 18px); line-height: 1.55; margin: 0; }

.path-list { border-top: 1px solid var(--divider, rgba(110, 107, 123, 0.16)); }
.path-row {
  position: relative; display: flex; align-items: center; gap: clamp(16px, 2vw, 30px);
  padding: clamp(20px, 2.6vw, 36px) clamp(14px, 1.6vw, 26px);
  border-bottom: 1px solid var(--divider, rgba(110, 107, 123, 0.16));
  text-decoration: none; color: var(--fg-1);
  transition: padding 0.3s ease, color 0.25s ease;
  overflow: hidden;
}
.path-row .row-fill {
  position: absolute; inset: 0; z-index: 0;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.1, 1);
}
.path-row > *:not(.row-fill) { position: relative; z-index: 1; }
.path-row .idx { font-family: var(--font-serif); font-weight: 700; font-size: clamp(14px, 1.05vw, 18px); color: var(--brand-purple); width: 2.6ch; flex: 0 0 auto; transition: color 0.25s ease; }
.path-row .vessel {
  width: clamp(48px, 4vw, 64px); height: clamp(48px, 4vw, 64px); border-radius: 24%;
  background: var(--lavender-mist); flex: 0 0 auto; color: var(--brand-purple);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.path-row .r-name { font-family: var(--font-serif); font-weight: 700; font-size: clamp(22px, 2.2vw, 38px); line-height: 1.04; letter-spacing: -0.015em; flex: 0 0 auto; min-width: clamp(150px, 16vw, 250px); }
.path-row .r-desc { color: var(--fg-3); font-size: clamp(13px, 1vw, 16px); line-height: 1.45; flex: 1; transition: color 0.25s ease; }
.path-row .r-go { flex: 0 0 auto; font-size: 24px; color: var(--brand-purple); transition: color 0.25s ease, transform 0.3s ease; }

.path-row:hover { color: #fff; }
.path-row:hover .row-fill { transform: scaleX(1); }
.path-row:hover .idx,
.path-row:hover .r-desc { color: rgba(255, 255, 255, 0.9); }
.path-row:hover .r-name { color: #fff; }
.path-row:hover .vessel { background: rgba(255, 255, 255, 0.18); color: #fff; transform: scale(1.06) rotate(-4deg); }
.path-row:hover .r-go { color: #fff; transform: translateX(5px); }

.fill-purple { background: var(--brand-purple); }
.fill-aqua   { background: var(--electric-aqua); }
.fill-blue   { background: var(--electric-blue); }
.fill-orange { background: #ff6a00; }

@media (max-width: 720px) {
  .path-row { flex-wrap: wrap; gap: 12px 16px; }
  .path-row .idx { display: none; }
  .path-row .r-name { min-width: 0; }
  .path-row .r-desc { flex: 1 1 100%; order: 3; }
}

/* =========================================================================
   RESPONSIVE — global breakpoints for shared layout primitives
   (component-specific pages add their own breakpoints in <style> blocks)
   ========================================================================= */

/* two-column feature rows stack on tablets and below */
@media (max-width: 980px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; padding: 36px 0; }
  .feature-row.flip > .feature-copy,
  .feature-row.flip > .feature-visual { order: 0; }
  .feature-copy p.body { max-width: none; }
}

/* footer: 4 cols -> 2 cols */
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
}

/* tighten vertical rhythm + side padding on phones */
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .page-hero { padding: 52px 0 44px; }
  .cta-band { padding: 64px 0; }
  .container, .container-wide { padding: 0 20px; }
}

/* small phones */
@media (max-width: 560px) {
  .site-header { padding: 0 18px; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-lg { font-size: 15px; padding: 12px 24px; }
  .feature-links { width: 100%; }
  .feature-links .btn { flex: 1 1 auto; justify-content: center; }
  .store-badges img { height: 38px; }
}
