/* ---- Sticky mobile CTA bar (mobile-only) ---- */
#afg-sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8500;
  background: #0e1116;
  color: #ffffff;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom)) 14px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
#afg-sticky-mobile-cta .afg-sticky-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  flex: 1 1 auto;
  min-width: 0;
}
#afg-sticky-mobile-cta .afg-sticky-btn {
  background: #ff6b35;
  color: #0e1116;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -0.005em;
}
#afg-sticky-mobile-cta .afg-sticky-btn:active { transform: scale(0.97); }
@media (max-width: 768px) {
  #afg-sticky-mobile-cta { display: flex; }
  /* Add bottom padding to body so the bar doesn't cover footer content */
  body { padding-bottom: 76px; }
}

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --bg-deep: #0e1116;
  --ink: #0e1116;
  --ink-soft: #3a3f47;
  --line: rgba(14, 17, 22, 0.10);
  --line-strong: rgba(14, 17, 22, 0.22);
  --orange: #ff6b35;
  --orange-dark: #e0521e;
  --navy: #004e89;
  --gold: #ffd60a;
  --green: #1f9d55;
  --shadow-sm: 0 2px 6px rgba(14, 17, 22, 0.06);
  --shadow-md: 0 12px 28px rgba(14, 17, 22, 0.10);
  --shadow-lg: 0 28px 60px rgba(14, 17, 22, 0.16);
  --radius: 10px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page { min-height: 100vh; }

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-block;
  background: var(--ink);
  position: relative;
  border-radius: 6px;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--orange);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-links a { text-decoration: none; padding: 11px 0; display: inline-flex; align-items: center; }
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}
.nav-cta:hover { background: var(--orange); color: #fff !important; }

/* ---------- Layout helpers ---------- */

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap.narrow { max-width: 820px; }
.wrap.wider  { max-width: 1320px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 800;
}
h1, h2 {
  font-family: 'Bricolage Grotesque', Inter, ui-sans-serif, sans-serif;
}
h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 6.4vw, 84px);
}
h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4.4vw, 56px);
}
h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

p { margin: 0 0 18px; }

.lead {
  color: var(--ink-soft);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.45;
  max-width: 760px;
  font-weight: 500;
}

.small-note {
  color: var(--ink-soft);
  font-size: 14px;
}

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

.cta-row {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease;
  background: transparent;
  color: var(--ink);
}
.button:hover { transform: translateY(-2px); }

.button.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.button.primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.button.dark:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}
.button.ghost:hover {
  background: var(--ink);
  color: #fff;
}

.button.lg {
  min-height: 58px;
  padding: 18px 28px;
  font-size: 18px;
  border-radius: 10px;
}

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

.hero {
  padding: 88px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.10), transparent 60%);
  top: -240px;
  right: -180px;
  border-radius: 50%;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.hero h1 .accent {
  color: var(--orange);
}
.hero .price-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.hero .price-strip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

/* ---------- Sections ---------- */

.section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
}
.section.tight { padding: 56px 0; }
.section.soft { background: var(--bg-soft); }
.section.dark {
  background: var(--bg-deep);
  color: #f1efe9;
  border-top: 0;
}
.section.dark h2,
.section.dark h3 { color: #fff; }
.section.dark .lead,
.section.dark .small-note { color: rgba(241, 239, 233, 0.78); }
.section.dark .button.ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.section.dark .button.ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.section.dark .eyebrow { color: var(--gold); }

.section.orange {
  background: var(--orange);
  color: #fff;
  border-top: 0;
}
.section.orange h2, .section.orange h3 { color: #fff; }
.section.orange .lead { color: rgba(255,255,255,0.92); }
.section.orange .button.dark { background: #fff; color: var(--ink); border-color: #fff; }
.section.orange .button.dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.section.orange .eyebrow { color: rgba(255,255,255,0.85); }

/* ---------- Two-col / Cards ---------- */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-link .card {
  height: 100%;
}
.card-link:hover .card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.card-cta {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
}
.card .num {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--orange);
  font-weight: 800;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 0;
  white-space: nowrap;
}

.section.dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: #f1efe9;
}
.section.dark .card:hover { border-color: var(--gold); }

/* ---------- Stat / Strip ---------- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.stat-strip > div {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.stat-strip > div:last-child { border-right: 0; }
.stat-strip strong {
  display: block;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--orange);
}
.stat-strip span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
}

/* ---------- Bundles ---------- */

.bundles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bundle {
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  box-shadow: var(--shadow-sm);
}
.bundle:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.bundles:has(> .bundle.featured) {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}
.bundle.featured {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.bundle.featured h3 { color: #fff; }
.bundle.featured .price-num { color: var(--orange); }
.bundle.featured .feature-list li::before { background: var(--orange); }
.bundle.featured .button { background: var(--orange); border-color: var(--orange); color: #fff; }
.bundle.featured .button:hover { background: #fff; color: var(--ink); border-color: #fff; }

.bundle .bundle-tag {
  position: absolute;
  top: -14px;
  right: 22px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.bundle .bundle-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.bundle.featured .bundle-name { color: var(--gold); }

.bundle .price-num {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin: 8px 0 4px;
}
.bundle .price-meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.bundle.featured .price-meta { color: rgba(255,255,255,0.7); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
}
.feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.45;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  background: var(--ink);
  clip-path: polygon(20% 50%, 0 70%, 40% 100%, 100% 30%, 80% 10%, 40% 60%);
}
.bundle .button { margin-top: auto; width: 100%; }

/* ---------- Catalog ---------- */

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.catalog-item {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 16px;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.catalog-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.catalog-item img {
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  background: #fff;
}
.catalog-item .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.catalog-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.catalog-item .price {
  margin-top: auto;
  padding-top: 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}

.catalog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.filter-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 140ms ease;
}
.filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.filter-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Cover image ---------- */

.cover-img {
  display: block;
  width: min(100%, 380px);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
}
.cover-img.tilt { transform: rotate(-3deg); }

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

.form-box {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.form-box h3 { margin-bottom: 6px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}
input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 14px 14px;
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.18);
}
.success {
  display: none;
  margin-top: 14px;
  color: var(--green);
  font-weight: 700;
}
.success.visible { display: block; }
.success .success-sub {
  display: block;
  font-weight: 400;
  font-size: 0.9em;
  margin-top: 6px;
  opacity: 0.85;
}

.error {
  display: none;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 700;
}
.error.visible { display: block; }

/* Hero inline capture form — sits directly under the hero lead paragraph. */
.form-box.hero-form {
  margin-top: 22px;
  padding: 20px 22px;
}
.form-box.hero-form .form-row { margin-top: 0; }

/* ---------- Lists ---------- */

.list { padding-left: 22px; margin: 0; }
.list li { margin-bottom: 10px; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 17px;
}
.check-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

/* ---------- Quote ---------- */

.quote {
  font-family: Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  max-width: 920px;
}
.quote .accent { color: var(--orange); }

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

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  background: var(--bg-soft);
}
.footer .wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  color: var(--ink);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--orange); }

/* ---------- Sample / Workflow boxes ---------- */

.workflow {
  background: var(--ink);
  color: #f1efe9;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 18px;
}
.workflow .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
pre {
  margin: 14px 0 0;
  white-space: pre-wrap;
  background: #0e1116;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 18px;
  color: #f1efe9;
  font-size: 14px;
  line-height: 1.55;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.callout {
  border-left: 4px solid var(--orange);
  background: var(--bg-soft);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin: 22px 0;
}
.callout strong { color: var(--orange); }

/* ---------- Banner ---------- */

.urgency {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}
.urgency .accent { color: var(--gold); }

/* ---------- Channel Cards ---------- */

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.channel {
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #fff;
}
.channel .channel-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.channel.amazon .channel-tag { background: #232f3e; color: #ff9900; }
.channel.direct .channel-tag { background: var(--orange); color: #fff; }

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

@media (max-width: 980px) {
  .hero-grid,
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .card-grid,
  .card-grid.four,
  .stat-strip,
  .bundles,
  .channel-grid { grid-template-columns: 1fr 1fr; }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stat-strip > div:nth-child(2) { border-right: 0; }
  .stat-strip > div { border-bottom: 1px solid var(--line); }
  .footer .wrap { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile nav hamburger ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav { position: relative; flex-wrap: nowrap; align-items: center; justify-content: space-between; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: -24px;
    right: -24px;
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 2px solid var(--line);
    padding: 8px 24px 16px;
    flex-direction: column;
    gap: 0;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 600; color: var(--ink); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta { margin-top: 8px; text-align: center; width: 100%; padding: 12px 16px; border-radius: 8px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav { flex-direction: row; align-items: center; gap: 0; }
  .nav-links { flex-wrap: nowrap; gap: 22px; }
  .hero { padding: 56px 0 34px; }
  .section { padding: 56px 0; }
  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .stat-strip,
  .bundles,
  .channel-grid,
  .form-row { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip > div { border-right: 0; }
  .footer .wrap { grid-template-columns: 1fr; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
}

/* ── Item 4: pricing surfaces (5.1) ──────────────────────────────────── */
.bundle-meta-tools {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 6px 0 4px;
  font-weight: 600;
}
.bundle.featured .bundle-meta-tools { color: rgba(255,255,255,0.7); }

.bundle-pricing-block {
  margin: 10px 0 12px;
}
.bundle-pricing-primary {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.bundle-pricing-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.bundle.featured .bundle-pricing-num { color: #fff; }
.bundle-pricing-unit {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.2;
}
.bundle.featured .bundle-pricing-unit { color: var(--gold); }
.bundle-pricing-compare {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 4px;
  line-height: 1.4;
}
.bundle.featured .bundle-pricing-compare { color: rgba(255,255,255,0.85); }
.bundle-pricing-breakdown {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: -0.01em;
}
.bundle.featured .bundle-pricing-breakdown { color: rgba(255,255,255,0.7); }
.bundle-pricing-updates {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 6px 0 0;
  line-height: 1.5;
}
.bundle.featured .bundle-pricing-updates { color: rgba(255,255,255,0.8); }
.bundle-pricing-kindle {
  display: inline;
  opacity: 0.85;
}

/* Bundle detail page hero variant */
.bundle-hero-pricing {
  margin: 20px 0;
}
.bundle-hero-pricing .bundle-pricing-num { font-size: clamp(42px, 6vw, 64px); }
.bundle-hero-pricing .bundle-pricing-unit { font-size: 18px; }
.bundle-hero-pricing .bundle-pricing-compare,
.bundle-hero-pricing .bundle-pricing-breakdown,
.bundle-hero-pricing .bundle-pricing-updates { font-size: 15px; }

/* ── Item 4: role-first picker (5.2) ─────────────────────────────────── */
.role-picker {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg, 18px);
  padding: 24px 28px;
}
.role-picker-title {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
.role-picker-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.role-chip {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}
.role-chip:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(14,17,22,0.06);
}
.role-chip:active { transform: translateY(0); }
.role-chip:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.role-picker-helper {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 14px 0 0;
}

.marketer-helper-line {
  display: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(232, 95, 41, 0.08);
  padding: 10px 14px;
  border-radius: 8px;
  margin: 14px 0 0;
  border-left: 3px solid var(--orange);
}
.marketer-helper-line.visible { display: block; }

/* Highlight pulse on bundle picker selection */
.bundle.bundle-picker-highlight {
  box-shadow: 0 0 0 3px var(--orange), 0 12px 32px rgba(232, 95, 41, 0.18);
  transform: translateY(-2px);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

/* ── Item 4: per-guide upsell card (5.3) ─────────────────────────────── */
.upsell-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg, 18px);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
}
.upsell-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}
.upsell-body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 12px;
}
.upsell-body.upsell-others {
  font-size: 15px;
  color: var(--ink-soft);
}
.upsell-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 10px;
}
.upsell-cta {
  text-align: center;
  width: 100%;
  white-space: nowrap;
}
.upsell-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 6px 0 0;
}
@media (max-width: 520px) {
  .upsell-ctas { grid-template-columns: 1fr; }
  .upsell-card { padding: 22px 20px; }
}

/* ── C1 2026-05-25: 5-route diagnostic + route blocks + disclosure ───────── */
.diagnostic-routes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}
.diagnostic-button {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  padding: 18px 22px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  width: 100%;
  line-height: 1.35;
}
.diagnostic-button:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(14,17,22,0.08);
}
.diagnostic-button.active {
  border-color: var(--orange);
  background: rgba(232, 95, 41, 0.05);
  box-shadow: 0 0 0 2px var(--orange);
}
.diagnostic-button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.diagnostic-button .diagnostic-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 6px;
  font-style: italic;
  line-height: 1.4;
}

.route-block {
  display: none;
}
.route-block.visible {
  display: block;
}
.route-block .route-anchor-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
}
.route-block .route-alt-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 32px 0 14px;
}
.route-block .identifiable-target {
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  margin: 10px 0 16px;
  line-height: 1.5;
}

.bundles-disclosure {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  background: var(--bg-soft);
}
.bundles-disclosure summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  padding: 4px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bundles-disclosure summary::-webkit-details-marker { display: none; }
.bundles-disclosure summary::before {
  content: "▸";
  font-size: 14px;
  color: var(--orange);
  transition: transform 150ms ease;
  display: inline-block;
}
.bundles-disclosure[open] summary::before {
  transform: rotate(90deg);
}
.bundles-disclosure summary:hover {
  color: var(--orange);
}
