/* ==========================================================================
   gigBuddy marketing site
   Design tokens + components. Light theme only (brand is a light product).
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --navy:        #262b5e;
  --navy-deep:   #1a1e45;
  --navy-soft:   #4b5190;
  --teal:        #0f7b82;
  --teal-dark:   #0b5f65;
  --teal-soft:   #e6f3f4;
  --gold:        #c8971f;
  --silver:      #8d97a5;
  --bronze:      #a9713d;

  --ink:         #12162e;
  --body:        #4a5068;
  --muted:       #767d95;
  --line:        #e5e7f0;
  --line-strong: #d2d6e6;
  --bg:          #ffffff;
  --bg-soft:     #f6f7fb;
  --bg-tint:     #f0f2f9;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(18, 22, 46, .06), 0 2px 8px rgba(18, 22, 46, .04);
  --shadow:    0 2px 6px rgba(18, 22, 46, .06), 0 12px 32px rgba(18, 22, 46, .08);
  --shadow-lg: 0 8px 24px rgba(18, 22, 46, .10), 0 32px 64px rgba(18, 22, 46, .14);

  --maxw: 1180px;
  --nav-h: 72px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Poppins", var(--font);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 1.35rem + 2.6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); }
p  { margin: 0 0 1em; }
a  { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tint { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.05rem; color: var(--muted); margin: 0; }
.eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; line-height: 1;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(15, 123, 130, .28); }
.btn--primary:hover { background: var(--teal-dark); color: #fff; box-shadow: 0 10px 26px rgba(15, 123, 130, .34); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-deep); color: #fff; }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #f1f3fa; color: var(--navy); }
.btn--outline-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--outline-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }
.btn--sm { padding: 10px 18px; font-size: .875rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s, backdrop-filter .25s;
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(18, 22, 46, .05);
}
.nav { display: flex; align-items: center; gap: 28px; width: 100%; }
.nav__logo { flex: none; }
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 26px; flex: 1; }
.nav__links a {
  font-size: .93rem; font-weight: 500; color: var(--ink);
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--teal); border-bottom-color: var(--teal); }
.nav__actions { display: flex; align-items: center; gap: 12px; flex: none; }
.nav__login { font-size: .93rem; font-weight: 600; color: var(--ink); }
.nav__login:hover { color: var(--teal); }

/* language switch */
.lang {
  display: inline-flex; align-items: center; padding: 3px;
  background: var(--bg-tint); border-radius: 999px; gap: 2px;
}
.lang button, .lang a {
  border: 0; background: none; cursor: pointer; border-radius: 999px;
  padding: 5px 11px; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--muted); transition: background .18s, color .18s;
}
.lang button[aria-pressed="true"], .lang a[aria-current="page"] { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }

/* burger + mobile drawer */
.nav__burger {
  display: none; flex: none; width: 42px; height: 42px; border: 1px solid var(--line-strong);
  background: #fff; border-radius: 12px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .22s, opacity .18s;
}
.nav__burger span::before { transform: translateY(-6px); }
.nav__burger span::after  { transform: translateY(4px); }
body.nav-open .nav__burger span { background: transparent; }
body.nav-open .nav__burger span::before { transform: rotate(45deg); }
body.nav-open .nav__burger span::after  { transform: rotate(-45deg) translateY(-1px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: calc(var(--nav-h) + 64px) 0 40px; text-align: center; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; height: 760px; z-index: 0; pointer-events: none;
  background-image: url("../bg_04_light.webp");
  background-size: cover; background-position: center 28%; background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.92) 38%, rgba(0,0,0,.45) 72%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.92) 38%, rgba(0,0,0,.45) 72%, rgba(0,0,0,0) 100%);
}
/* light scrim so the navy type stays readable on the photo */
.hero__scrim {
  position: absolute; inset: 0; height: 760px; z-index: 1; pointer-events: none;
  background:
    radial-gradient(95% 58% at 50% 6%, rgba(255,255,255,.92) 0%, rgba(255,255,255,.66) 40%, rgba(255,255,255,.24) 68%, rgba(255,255,255,0) 100%),
    linear-gradient(to bottom, rgba(255,255,255,.28) 0%, rgba(255,255,255,.3) 45%, rgba(255,255,255,.82) 82%, #fff 100%);
}
.hero > .wrap { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 20px; color: var(--navy); text-shadow: 0 1px 0 rgba(255,255,255,.6); }
.hero h1 .accent { color: var(--teal); }
.hero__lead {
  max-width: 620px; margin: 0 auto 26px; font-size: 1.1rem; color: #3d4360;
}
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.hero__note { font-size: .85rem; color: var(--muted); margin: 0; }
.hero__rating { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 18px; }
.hero__rating .stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; }
.hero__rating .txt { font-size: .84rem; color: var(--muted); }

/* ==========================================================================
   Feature carousel + product showcase
   ========================================================================== */
.showcase { position: relative; z-index: 2; padding-bottom: 24px; }

.carousel-wrap {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 34px;
}
.carousel {
  display: flex; align-items: flex-start; gap: 4px;
  overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  padding: 18px 10px 12px; scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
}
.carousel::-webkit-scrollbar { display: none; }
.carousel__spacer { flex: 0 0 auto; height: 1px; }
.feat {
  flex: 0 0 auto; width: 94px; display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 8px 4px 10px; text-align: center; cursor: pointer;
  background: none; border: 0; border-bottom: 2px solid transparent;
  color: var(--muted); transition: color .22s, border-color .22s;
}
.feat:hover { color: var(--navy); }
.feat svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feat__label { font-size: .72rem; font-weight: 600; line-height: 1.25; color: inherit; }
.feat[aria-selected="true"] { color: var(--teal); border-bottom-color: var(--teal); }

/* carousel arrows */
.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: #fff; box-shadow: var(--shadow-sm); cursor: pointer; display: none;
  align-items: center; justify-content: center; color: var(--navy); padding: 0;
}
.carousel-nav:hover { border-color: var(--teal); color: var(--teal); }
.carousel-nav--prev { left: -8px; }
.carousel-nav--next { right: -8px; }
@media (min-width: 861px) { .carousel-nav { display: flex; } }

/* --- stage --- */
.stage { position: relative; }
.stage__caption { text-align: center; max-width: 640px; margin: 0 auto 26px; }
.stage__caption h2 { font-size: clamp(1.35rem, 1.1rem + .9vw, 1.85rem); margin-bottom: 8px; }
.stage__caption p { color: var(--muted); margin: 0; }

.stage__frames { position: relative; padding-bottom: 40px; }

/* browser chrome around the desktop screenshot */
.browser {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--line-strong); box-shadow: var(--shadow-lg);
}
.browser__bar {
  display: flex; align-items: center; gap: 8px; padding: 11px 16px;
  background: linear-gradient(#fbfbfe, #f3f4fa); border-bottom: 1px solid var(--line);
}
.browser__dots { display: flex; gap: 6px; flex: none; }
.browser__dots i { width: 10px; height: 10px; border-radius: 50%; background: #d7dae8; display: block; }
.browser__url {
  flex: 1; max-width: 320px; margin: 0 auto; height: 22px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); display: flex; align-items: center;
  justify-content: center; font-size: .68rem; color: var(--muted); letter-spacing: .02em;
}
.browser__shot { position: relative; aspect-ratio: 2100 / 1350; background: var(--bg-soft); }
.browser__shot img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center;
  opacity: 0; transition: opacity .35s ease;
}
.browser__shot img.is-active { opacity: 1; }

/* phone overlay, only rendered when the feature has a mobile screenshot */
.phone {
  position: absolute; right: -10px; bottom: -14px; z-index: 4; width: 178px;
  border-radius: 26px; background: #12162e; padding: 7px;
  box-shadow: 0 18px 40px rgba(18, 22, 46, .3), 0 2px 0 rgba(255,255,255,.15) inset;
  opacity: 0; pointer-events: none;
  transform: perspective(1000px) rotateY(-13deg) rotateX(4deg) translateY(14px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.8,.25,1);
}
.phone.is-visible { opacity: 1; transform: perspective(1000px) rotateY(-13deg) rotateX(4deg) translateY(0) scale(1); }
.phone__screen {
  position: relative; border-radius: 20px; overflow: hidden; background: #fff;
  aspect-ratio: 1290 / 2796;
}
.phone__screen img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center;
  opacity: 0; transition: opacity .35s ease;
}
.phone__screen img.is-active { opacity: 1; }
.phone::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.35); z-index: 2;
}

/* mobile-only feature: show the phone big and centred instead of a browser */
.stage__frames.is-mobile-only .browser { display: none; }
.stage__frames.is-mobile-only {
  background: linear-gradient(150deg, #eaf3f4 0%, #f1f0fb 55%, #f7f8fb 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 42px 20px; display: flex; justify-content: center;
}
.stage__frames.is-mobile-only .phone {
  position: static; width: 268px; transform: none; opacity: 1;
  box-shadow: 0 24px 60px rgba(18, 22, 46, .28);
}

@media (max-width: 720px) {
  .phone { width: 118px; right: -4px; bottom: -10px; border-radius: 18px; padding: 5px; }
  .phone__screen { border-radius: 13px; }
  .phone::before { width: 34px; height: 4px; top: 10px; }
  .stage__frames.is-mobile-only .phone { width: 210px; }
}

/* ==========================================================================
   Trusted / stats strip
   ========================================================================== */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 34px 0; }
.stat { text-align: center; padding: 6px 10px; }
.stat__num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.stat__lbl { font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   Feature sections (alternating rows)
   ========================================================================== */
.fblock { display: grid; grid-template-columns: 1fr 1.12fr; gap: 52px; align-items: center; padding: 46px 0; }
.fblock--reverse .fblock__media { order: -1; }
.fblock__head h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); margin-bottom: 10px; }
.fblock__head > p { color: var(--muted); margin-bottom: 22px; }
.fcards { display: grid; gap: 10px; }
.fcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.fcard:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.fcard__t { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); font-size: .98rem; }
.fcard__t svg { width: 18px; height: 18px; flex: none; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fcard__d { font-size: .875rem; color: var(--muted); margin: 4px 0 0 28px; line-height: 1.5; }

.shot {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong);
  box-shadow: var(--shadow); background: #fff;
}
.shot img { width: 100%; height: auto; display: block; }
.shot--tall img { aspect-ratio: 2100/1350; object-fit: cover; object-position: top center; }

/* ==========================================================================
   Integrations
   ========================================================================== */
.int-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.int {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; transition: box-shadow .2s, transform .2s, border-color .2s;
}
.int:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--line-strong); }
.int__logo { height: 26px; margin-bottom: 16px; display: flex; align-items: center; }
.int__logo img { max-height: 26px; width: auto; object-fit: contain; }
.int__name { font-family: var(--font-head); font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.int__desc { font-size: .855rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* social platforms row */
.socials-row { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; align-items: center; margin-top: 40px; }
.socials-row img { height: 26px; width: auto; opacity: .5; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.socials-row img:hover { opacity: 1; filter: none; }

/* ==========================================================================
   Screenshot gallery marquee
   ========================================================================== */
.gallery { overflow: hidden; padding: 12px 0 6px; }
.gallery__track { display: flex; gap: 20px; width: max-content; animation: slide 60s linear infinite; }
.gallery:hover .gallery__track { animation-play-state: paused; }
.gallery__item {
  flex: none; width: 380px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); background: #fff;
}
.gallery__item img { width: 100%; aspect-ratio: 2100/1350; object-fit: cover; object-position: top center; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .gallery__track { animation: none; }
  .gallery { overflow-x: auto; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--teal-dark) 130%);
  color: #fff; text-align: center; padding: 76px 0; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: auto -10% -60% -10%; height: 320px;
  background: radial-gradient(50% 60% at 50% 0%, rgba(255,255,255,.13), transparent 70%);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto 28px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; }
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; color: var(--muted); max-width: 280px; }
.footer-auth { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.footer-h { font-family: var(--font-head); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer-list li { margin-bottom: 9px; }
.footer-list a, .footer-list span { font-size: .855rem; color: var(--muted); }
.footer-list a:hover { color: var(--teal); }
.footer-more { color: var(--teal) !important; font-weight: 600; }
.footer-section + .footer-section { margin-top: 30px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.footer-social img { height: 20px; width: 20px; object-fit: contain; opacity: .45; transition: opacity .2s; }
.footer-social a:hover img { opacity: 1; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); margin-top: 48px; padding-top: 22px;
  font-size: .8rem; color: var(--muted);
}
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--teal); }

/* ==========================================================================
   Pricing page
   ========================================================================== */
.pricing-hero { padding: calc(var(--nav-h) + 68px) 0 12px; text-align: center; position: relative; }
.pricing-hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 460px; z-index: -1;
  background: radial-gradient(80% 60% at 50% 0%, var(--teal-soft) 0%, rgba(246,247,251,0) 72%);
}
.pricing-hero h1 { max-width: 860px; margin-inline: auto; }
.pricing-hero__lead { max-width: 620px; margin: 0 auto 34px; font-size: 1.05rem; color: var(--muted); }

/* "What are you looking for?" — artist vs band */
.audience { margin-bottom: 34px; }
.audience__q {
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  color: var(--ink); margin: 0 0 14px;
}
.audience-toggle {
  display: inline-flex; gap: 6px; padding: 6px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm);
}
.audience-toggle button {
  display: inline-flex; align-items: center; gap: 10px; border: 0; background: none;
  cursor: pointer; border-radius: 999px; padding: 13px 26px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--body);
  transition: background .18s, color .18s, box-shadow .18s;
}
.audience-toggle button svg {
  width: 19px; height: 19px; flex: none; stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.audience-toggle button:hover { background: var(--bg-tint); color: var(--ink); }
.audience-toggle button[aria-pressed="true"] {
  background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(15, 123, 130, .28);
}
.audience-toggle button[aria-pressed="true"]:hover { background: var(--teal-dark); color: #fff; }
@media (max-width: 560px) {
  .audience-toggle { flex-direction: column; width: 100%; max-width: 320px; border-radius: var(--radius-lg); }
  .audience-toggle button { justify-content: center; }
}

.billing-toggle {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px;
  background: var(--bg-tint); border-radius: 999px; margin-bottom: 10px;
}
.billing-toggle button {
  border: 0; background: none; cursor: pointer; border-radius: 999px; padding: 9px 20px;
  font-family: var(--font-head); font-size: .875rem; font-weight: 600; color: var(--muted);
  transition: background .18s, color .18s;
}
.billing-toggle button[aria-pressed="true"] { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.save-badge {
  display: inline-block; margin-left: 8px; font-size: .7rem; font-weight: 700;
  background: var(--teal-soft); color: var(--teal-dark); border-radius: 999px; padding: 2px 8px;
}

/* module block */
.module { padding: 40px 0 76px; }
.module__head { text-align: center; margin-bottom: 32px; }
.module__head h2 { margin-bottom: 6px; }
.module__head p { margin: 0 auto; color: var(--muted); max-width: 620px; }
.module__tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #fff; background: var(--navy);
  border-radius: 999px; padding: 5px 14px; margin-bottom: 12px;
}
.module__tag--band { background: var(--teal); }

.plans { display: grid; gap: 20px; align-items: stretch; margin-inline: auto; }
.plans--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
.plans--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px 30px; display: flex; flex-direction: column;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.plan:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.plan--featured { border-color: var(--teal); box-shadow: 0 12px 40px rgba(15,123,130,.14); }
.plan__ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 999px; padding: 5px 14px; white-space: nowrap;
}
.plan__badge { width: 46px; height: 46px; margin-bottom: 14px; }
.plan__name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.plan__tagline { font-size: .855rem; color: var(--muted); min-height: 40px; margin-bottom: 16px; }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 2px; }
.plan__amount { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.plan__per { font-size: .85rem; color: var(--muted); }
.plan__billed { font-size: .78rem; color: var(--muted); min-height: 20px; margin-bottom: 18px; }
.plan__cta { margin-bottom: 20px; }
.plan__inc { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.plan__list li {
  position: relative; padding-left: 26px; font-size: .875rem; color: var(--body); margin-bottom: 9px; line-height: 1.45;
}
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: .34em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f7b82' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* comparison table */
.compare { margin-top: 56px; }
.compare__scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .885rem; }
table.cmp th, table.cmp td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.cmp thead th {
  background: #fff; vertical-align: bottom;
  font-family: var(--font-head); font-size: .95rem; color: var(--ink); border-bottom: 2px solid var(--line-strong);
}
table.cmp thead th:first-child { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
table.cmp thead th small { display: block; font-size: .75rem; font-weight: 500; color: var(--muted); font-family: var(--font); }
table.cmp td:not(:first-child), table.cmp th:not(:first-child) { text-align: center; width: 140px; }
table.cmp tbody tr:hover { background: #fafbff; }
table.cmp .grp td {
  background: var(--bg-tint); font-family: var(--font-head); font-weight: 700; color: var(--ink);
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: 11px 18px;
}
.cmp .yes, .cmp .no { display: inline-block; width: 20px; height: 20px; }
.cmp .yes {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f7b82' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/17px no-repeat;
}
.cmp .no {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23c9cddd' stroke-width='2.6' stroke-linecap='round'%3E%3Cline x1='6' y1='12' x2='18' y2='12'/%3E%3C/svg%3E") center/17px no-repeat;
}
.cmp .val { font-weight: 600; color: var(--ink); font-size: .85rem; }
.cmp td:first-child { color: var(--body); }
.cmp .hint { display: block; font-size: .78rem; color: var(--muted); }

/* faq */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 0 20px; margin-bottom: 12px; transition: border-color .2s;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 17px 30px 17px 0; position: relative;
  font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq p { font-size: .9rem; color: var(--muted); padding-bottom: 18px; margin: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); row-gap: 40px; }
}
@media (max-width: 960px) {
  .fblock { grid-template-columns: 1fr; gap: 30px; padding: 34px 0; }
  .fblock--reverse .fblock__media { order: 0; }
  .plans--3 { grid-template-columns: 1fr; max-width: 480px; }
  .plans--2 { grid-template-columns: 1fr; max-width: 480px; }
  .module .plans { margin-inline: auto; }
}
@media (max-width: 860px) {
  :root { --nav-h: 64px; }
  .nav__burger { display: flex; }
  .nav__links, .nav__actions .nav__login, .nav__actions .btn--primary {
    display: none;
  }
  body.nav-open .nav__links, body.nav-open .nav__actions .nav__login, body.nav-open .nav__actions .btn--primary { display: flex; }
  body.nav-open .site-header {
    height: auto; background: #fff; border-bottom-color: var(--line); box-shadow: var(--shadow);
  }
  body.nav-open .nav {
    flex-wrap: wrap; align-items: flex-start; padding-bottom: 20px; row-gap: 18px;
  }
  body.nav-open .nav__links {
    order: 3; flex-basis: 100%; flex-direction: column; align-items: flex-start; gap: 4px;
    border-top: 1px solid var(--line); padding-top: 16px;
  }
  body.nav-open .nav__links a { font-size: 1.05rem; padding: 8px 0; }
  body.nav-open .nav__actions { order: 4; flex-basis: 100%; flex-wrap: wrap; }
  body.nav-open .nav__actions .btn--primary { display: inline-flex; }
  .nav { gap: 14px; }
  .nav__actions { margin-left: auto; }
  .section { padding: 60px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .gallery__item { width: 260px; }
}
@media (max-width: 680px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero__bg, .hero__scrim { height: 620px; }
  .btn { padding: 13px 22px; }
  .feat { width: 84px; }
}
