:root {
  --navy: #111b27;
  --navy-2: #1f2937;
  --navy-3: #0b1420;
  --green: #84bd00;
  --green-dark: #639400;
  --blue: #3b6ea8;
  --light-blue: #4a90e2;
  --gold: #d4a017;
  --text: #1f2937;
  --muted: #5f6875;
  --line: #e6eaf0;
  --surface: #f7f9fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 28, 39, .10);
  --shadow-sm: 0 10px 28px rgba(18, 28, 39, .08);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.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;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  padding: .8rem 1rem;
  background: var(--green);
  color: #132000;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.narrow { max-width: 900px; text-align: center; }
.section-white, .section-light { padding: 108px 0; }
.section-light { background: var(--surface); }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 76% 30%, rgba(132, 189, 0, .14), transparent 27%),
    radial-gradient(circle at 10% 80%, rgba(74, 144, 226, .08), transparent 22%),
    linear-gradient(135deg, var(--navy-3), var(--navy-2));
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.3) 0 1px, transparent 1.5px),
    radial-gradient(circle at 76% 62%, rgba(255,255,255,.24) 0 1px, transparent 1.5px),
    linear-gradient(110deg, transparent 47%, rgba(255,255,255,.05) 48%, transparent 49%);
  background-size: 110px 110px, 160px 160px, 240px 240px;
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  background: rgba(11, 20, 32, .84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { background: rgba(11,20,32,.96); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 174px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 1.8rem; }
.primary-nav > a:not(.button) { text-decoration: none; color: #e7ecf2; font-size: .94rem; font-weight: 650; transition: color .2s ease; }
.primary-nav > a:not(.button):hover, .primary-nav > a:not(.button):focus-visible { color: var(--green); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: white; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: currentColor; margin: 6px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 50px;
  padding: .86rem 1.25rem;
  border: 0;
  border-radius: 11px;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 800;
  color: #142000;
  background: linear-gradient(180deg, #9bd70f, var(--green));
  box-shadow: 0 10px 22px rgba(132,189,0,.26);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(132,189,0,.34); filter: saturate(1.07); }
.button svg { width: 19px; height: 19px; stroke-width: 2.2; }
.button-small { min-height: 42px; padding: .68rem 1rem; font-size: .86rem; }
.button-large { min-height: 58px; padding: 1rem 1.5rem; }
.text-link { color: var(--white); text-decoration: none; font-weight: 750; padding: .8rem .2rem; }
.text-link:hover { color: var(--green); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.8rem; }

.eyebrow { display: inline-block; margin-bottom: .8rem; color: #c9e988; font-size: .79rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow.dark { color: var(--green-dark); }
.badge { display: inline-flex; align-items: center; padding: .42rem .72rem; border: 1px solid #cfe79b; color: #567b00; background: #f5fae9; border-radius: 999px; font-weight: 800; font-size: .82rem; }

h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.25rem); max-width: 820px; margin-bottom: 1.3rem; }
h1 em { display: inline; color: var(--green); font-style: normal; }
h2 { font-size: clamp(2.2rem, 4vw, 3.45rem); margin-bottom: 1rem; }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1rem; }

.hero { padding: 156px 0 104px; min-height: 760px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-copy > p { max-width: 700px; color: #cbd3dd; font-size: 1.08rem; }
.hero-trust { margin-top: .9rem !important; font-size: .83rem !important; color: #91a0af !important; }

.bundle-stage { position: relative; min-height: 520px; perspective: 1300px; transform-style: preserve-3d; }
.glow { position: absolute; inset: 22% 5% 8% 8%; border-radius: 50%; background: radial-gradient(circle, rgba(132,189,0,.28), transparent 66%); filter: blur(25px); }
.book {
  position: absolute;
  width: 145px;
  height: 335px;
  border-radius: 3px 7px 7px 3px;
  background: linear-gradient(145deg, #202c3b 0%, #0f1824 62%, #1c2734 100%);
  color: white;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: -6px 15px 30px rgba(0,0,0,.35), inset -7px 0 10px rgba(0,0,0,.25);
  padding: 42px 13px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform-origin: bottom center;
  overflow: hidden;
}
.book::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: rgba(255,255,255,.12); }
.book::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 12%, rgba(255,255,255,.10) 29%, transparent 44%); pointer-events: none; }
.book small { font-size: .55rem; color: #aab4c0; letter-spacing: .1em; }
.book > span { font-size: .78rem; line-height: 1.25; font-weight: 900; margin-top: 7px; }
.book-main { left: 0; bottom: 24px; width: 190px; height: 405px; z-index: 8; padding: 48px 18px 18px; transform: rotateY(5deg); }
.book-main .book-logo { font-size: .5rem; line-height: 1.1; letter-spacing: .08em; color: white; margin-bottom: 40px; }
.book-main .book-logo strong { color: var(--green); }
.book-main > span { font-size: 1.1rem; line-height: 1.12; }
.book-main > small { margin-top: 15px; font-size: .57rem; line-height: 1.4; }
.book-main > b { margin: auto -18px -18px; padding: 14px 12px; background: var(--green); color: #1a2a00; font-size: .62rem; text-align: center; letter-spacing: .05em; }
.book-1 { left: 155px; bottom: 28px; z-index: 7; border-bottom: 10px solid var(--light-blue); transform: rotateY(-7deg); }
.book-2 { left: 235px; bottom: 25px; z-index: 6; border-bottom: 10px solid #7ab8ff; transform: rotateY(-5deg); }
.book-3 { left: 315px; bottom: 22px; z-index: 5; border-bottom: 10px solid var(--blue); transform: rotateY(-3deg); }
.book-4 { left: 395px; bottom: 19px; z-index: 4; border-bottom: 10px solid var(--green); transform: rotateY(-1deg); }
.book-5 { left: 475px; bottom: 16px; z-index: 3; border-bottom: 10px solid var(--gold); }

.story { padding-bottom: 94px; }
.story-head { text-align: center; }
.story-label { margin-top: .65rem; color: #6f7a86; font-size: .88rem; font-weight: 700; }
.assumption-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr) 1.45fr; gap: 1rem; align-items: stretch; margin-top: 2rem; }
.assumption-card, .truth-card { border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); min-height: 165px; padding: 1.4rem; display: flex; align-items: center; justify-content: center; text-align: center; }
.assumption-card svg { width: 40px; height: 40px; color: #97a1ae; margin-bottom: 1rem; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.assumption-card { flex-direction: column; }
.assumption-card h3 { font-size: .94rem; color: #535d68; margin-bottom: 0; max-width: 140px; }
.truth-card { justify-content: flex-start; text-align: left; gap: 1rem; border-color: #cfe89b; box-shadow: 0 15px 36px rgba(132,189,0,.14); background: linear-gradient(135deg, white, #f7fce9); }
.truth-card svg { flex: 0 0 52px; width: 52px; height: 52px; color: var(--green); fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.truth-card span { text-transform: uppercase; color: #789f1c; font-size: .68rem; font-weight: 850; letter-spacing: .1em; }
.truth-card h3 { margin: .2rem 0 0; font-size: 1.26rem; }
.versus { position: absolute; top: 50%; left: 61.5%; transform: translate(-50%,-50%); z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: white; display: grid; place-items: center; font-size: .64rem; font-weight: 900; border: 5px solid var(--surface); }
.story-note { margin: 1.45rem auto 0; text-align: center; font-size: 1rem; color: #596370; font-weight: 700; }

.section-heading { text-align: center; max-width: 820px; }
.section-heading > p { color: var(--muted); font-size: 1.05rem; }
.skill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
.skill-card { --accent: var(--blue); position: relative; min-height: 330px; padding: 2rem 1.6rem; border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; overflow: hidden; }
.skill-card::after { content: ""; position: absolute; right: -45px; top: -45px; width: 120px; height: 120px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 8%, transparent); }
.skill-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.skill-card.training { --accent: var(--light-blue); }
.skill-card.operations { --accent: var(--green); }
.skill-card.leadership { --accent: var(--gold); }
.icon-circle { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--accent); margin-bottom: 1.5rem; }
.icon-circle svg { width: 28px; height: 28px; }
.skill-card h3 { font-size: 1.35rem; max-width: 180px; }
.skill-card p { color: var(--muted); font-size: .97rem; }
.skill-card a { display: inline-flex; gap: .4rem; margin-top: 1rem; text-decoration: none; font-weight: 800; color: var(--accent); }

.starter-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 5rem; align-items: center; }
.bundle-card { min-height: 540px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, white, #f4f7fa); box-shadow: var(--shadow); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.bundle-stage-small { width: 620px; transform: scale(.78); transform-origin: center; }
.starter-copy h2 { margin-top: 1rem; }
.starter-copy > p { color: var(--muted); font-size: 1.04rem; }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.4rem; padding: 0; margin: 1.6rem 0; list-style: none; }
.benefit-list li { display: flex; align-items: center; gap: .5rem; font-weight: 750; }
.benefit-list span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #1a2a00; font-size: .75rem; }
.included { border-top: 1px solid var(--line); padding-top: 1.3rem; margin: 1.2rem 0 1.5rem; }
.included h3 { font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.included ol { list-style: none; padding: 0; margin: 0; display: grid; gap: .62rem; }
.included li { display: flex; align-items: center; gap: .75rem; font-size: .92rem; }
.included li span { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 7px; background: #f0f5e4; color: #6f970f; font-weight: 900; font-size: .68rem; }
.trust-line { margin: .9rem 0 0 !important; font-size: .82rem !important; color: #7b8490 !important; }

.philosophy-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: center; }
.philosophy-copy > p { color: var(--muted); font-size: 1.02rem; }
.philosophy-close { color: var(--text) !important; font-weight: 700; margin-top: 1.5rem; }
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: .8rem; align-items: center; }
.flow-step { text-align: center; }
.flow-icon { width: 66px; height: 66px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; color: #6e9c00; background: #f2f8e5; box-shadow: 0 8px 24px rgba(132,189,0,.12); }
.flow-icon svg { width: 31px; height: 31px; }
.flow-step span { display: block; font-weight: 850; font-size: .94rem; }
.flow-step p { color: var(--muted); font-size: .82rem; margin-top: .4rem; }
.flow-arrow { color: #bcc6d0; font-size: 1.5rem; }

.final-cta { padding: 76px 0; }
.final-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.final-cta h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
.final-cta p { color: #c4ced8; max-width: 690px; }
.cta-action { display: flex; align-items: flex-start; flex-direction: column; gap: .9rem; justify-self: end; }
.cta-action span { color: #9ba8b5; font-size: .82rem; }

.site-footer { padding: 74px 0 24px; color: #d8dfe7; background: #08111c; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.1fr; gap: 3rem; }
.footer-brand img { width: 188px; margin-bottom: 1.6rem; }
.footer-brand h2 { color: white; font-size: 1.35rem; max-width: 420px; }
.footer-brand p { color: #8f9caa; max-width: 470px; font-size: .93rem; }
.site-footer h3 { color: white; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.1rem; }
.site-footer a { display: block; text-decoration: none; color: #9ca8b5; margin: .65rem 0; font-size: .9rem; }
.site-footer a:hover { color: var(--green); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 3.2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.08); color: #687482; font-size: .76rem; }
.footer-bottom nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-bottom a { display: inline; margin: 0; font-size: .76rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
  .bundle-stage { width: 620px; max-width: 100%; margin: -25px auto 0; }
  .skill-grid { grid-template-columns: repeat(2, 1fr); }
  .starter-grid { grid-template-columns: 1fr; gap: 3rem; }
  .bundle-card { min-height: 500px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .cta-action { justify-self: start; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .section-white, .section-light { padding: 82px 0; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 1rem 1.25rem 1.4rem;
    background: rgba(8,17,28,.98);
    border-top: 1px solid rgba(255,255,255,.08);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav > a { padding: .85rem 0; }
  .primary-nav .button { margin-top: .6rem; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { min-height: 0; padding-bottom: 78px; }
  .hero-grid { gap: 2rem; }
  .bundle-stage { transform: scale(.78); transform-origin: left center; width: 760px; margin-bottom: -80px; }
  .assumption-grid { grid-template-columns: 1fr 1fr; }
  .truth-card { grid-column: 1 / -1; }
  .versus { display: none; }
  .flow { grid-template-columns: 1fr; gap: 1.4rem; }
  .flow-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 1.5rem), var(--container)); }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 145px; }
  .primary-nav { inset-block-start: 68px; }
  h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero { padding-top: 120px; }
  .button-row { align-items: stretch; flex-direction: column; }
  .text-link { text-align: center; }
  .bundle-stage { display: none; }
  .assumption-grid { grid-template-columns: 1fr; }
  .skill-grid { grid-template-columns: 1fr; }
  .skill-card { min-height: auto; }
  .bundle-card { display: none; }
  .starter-grid { display: block; }
  .benefit-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Starter Kit landing page */
.primary-nav a[aria-current="page"] { color: var(--green); }
.kit-hero { padding: 152px 0 96px; min-height: 760px; display: flex; align-items: center; }
.kit-hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.kit-hero-copy h1 { font-size: clamp(3.2rem, 5.6vw, 5.4rem); max-width: 690px; }
.kit-hero-copy > p { max-width: 650px; color: #cbd3dd; font-size: 1.06rem; }
.kit-subheadline { color: white !important; font-size: clamp(1.18rem, 2vw, 1.45rem) !important; font-weight: 800; max-width: 620px !important; }
.kit-bundle-stage { min-height: 555px; transform: scale(1.02); transform-origin: center; }

.process-strip { display: flex; align-items: center; justify-content: center; gap: .85rem; margin-top: 2.4rem; padding: 1rem 1.4rem; border: 1px solid #dce5cf; border-radius: 999px; background: #f7fbea; color: #5c7b18; font-size: .88rem; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.process-strip b { color: #a4b085; }
.playbook-list { margin-top: 4.4rem; }
.playbook-row { --row-accent: var(--blue); display: grid; grid-template-columns: .78fr 1.22fr; gap: 5rem; align-items: center; padding: 4.25rem 0; border-top: 1px solid var(--line); }
.playbook-row:nth-child(even) .cover-wrap { order: 2; }
.playbook-row:nth-child(even) .playbook-copy { order: 1; }
.playbook-row.boolean-row, .playbook-row.kpi-row { --row-accent: var(--green); }
.playbook-row.screen-row, .playbook-row.interview-row { --row-accent: var(--light-blue); }
.cover-wrap { min-height: 430px; display: grid; place-items: center; position: relative; }
.cover-wrap::before { content: ""; position: absolute; width: 78%; height: 58%; border-radius: 50%; background: color-mix(in srgb, var(--row-accent) 18%, transparent); filter: blur(38px); }
.product-cover { position: relative; z-index: 1; width: min(300px, 78%); aspect-ratio: .68; padding: 2.1rem 1.65rem 1.5rem; display: flex; flex-direction: column; color: white; border-radius: 5px 10px 10px 5px; overflow: hidden; background: linear-gradient(145deg, #203044, #0f1925 70%); box-shadow: -12px 24px 48px rgba(16,25,36,.28), inset -9px 0 12px rgba(0,0,0,.25); border-bottom: 12px solid var(--row-accent); transform: perspective(900px) rotateY(-7deg) rotateZ(-1deg); }
.playbook-row:nth-child(even) .product-cover { transform: perspective(900px) rotateY(7deg) rotateZ(1deg); }
.product-cover::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: radial-gradient(circle at 18% 24%, rgba(255,255,255,.5) 0 1px, transparent 1.5px), radial-gradient(circle at 75% 63%, rgba(255,255,255,.35) 0 1px, transparent 1.5px), linear-gradient(112deg, transparent 37%, rgba(255,255,255,.13) 39%, transparent 44%); background-size: 72px 72px, 95px 95px, 100% 100%; }
.product-cover::after { content: "RECRUITING OPS LAB"; position: absolute; left: 1.65rem; right: 1.65rem; bottom: 1.25rem; padding-top: .8rem; border-top: 1px solid rgba(255,255,255,.18); color: color-mix(in srgb, var(--row-accent) 80%, white); font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.cover-kicker { position: relative; z-index: 1; color: #aab5c1; font-size: .7rem; letter-spacing: .16em; }
.product-cover strong { position: relative; z-index: 1; margin-top: .65rem; font-size: clamp(1.45rem, 2.25vw, 2rem); line-height: 1.05; letter-spacing: -.03em; }
.product-cover small { position: relative; z-index: 1; margin-top: 1.3rem; color: #c5cfda; font-size: .78rem; line-height: 1.45; }
.step-label { display: inline-block; color: var(--row-accent); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.playbook-copy h3 { margin: .6rem 0 .45rem; font-size: clamp(2rem, 3.6vw, 3.05rem); }
.playbook-copy h4 { margin: 0 0 .9rem; color: #354150; font-size: 1.08rem; }
.playbook-copy > p { color: var(--muted); font-size: 1.02rem; max-width: 680px; }
.inside-list { margin-top: 1.6rem; padding: 1.4rem 1.5rem; border-left: 4px solid var(--row-accent); border-radius: 0 13px 13px 0; background: color-mix(in srgb, var(--row-accent) 6%, white); }
.inside-list > span { display: block; margin-bottom: .65rem; color: #4a5663; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.inside-list ul { margin: 0; padding-left: 1.15rem; display: grid; gap: .45rem; color: #46515e; }
.inside-list li::marker { color: var(--row-accent); }
.kit-mid-cta { max-width: 900px; margin-top: 2rem; padding: 3.5rem; text-align: center; border: 1px solid #dfe6d2; border-radius: 24px; background: linear-gradient(145deg, #fbfdf7, #f4f8ec); box-shadow: var(--shadow-sm); }
.kit-mid-cta h3 { font-size: clamp(1.8rem, 3vw, 2.55rem); }
.kit-mid-cta p { color: var(--muted); max-width: 740px; margin-inline: auto; }
.kit-mid-cta .button { margin-top: 1rem; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.audience-card { min-height: 370px; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.audience-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 1.35rem; border-radius: 50%; color: white; }
.audience-icon svg { width: 29px; height: 29px; }
.productivity-icon { background: var(--blue); }
.training-icon { background: var(--light-blue); }
.leadership-icon { background: var(--gold); }
.audience-card h3 { font-size: 1.45rem; }
.audience-card h4 { margin: 0 0 .8rem; color: #3f4a57; font-size: .98rem; }
.audience-card p { color: var(--muted); }
.fit-panel { margin-top: 2rem; padding: 2.3rem 2.5rem; display: grid; grid-template-columns: 1.25fr .75fr; gap: 3rem; align-items: center; border-radius: 20px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.fit-panel ul { margin: .4rem 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .65rem 1.2rem; }
.fit-panel li { position: relative; padding-left: 1.55rem; color: #45515e; }
.fit-panel li::before { content: "✓"; position: absolute; left: 0; color: var(--green-dark); font-weight: 900; }
.fit-panel > p { margin: 0; padding-left: 2rem; border-left: 1px solid var(--line); color: var(--muted); font-size: 1.1rem; }
.fit-panel strong { color: var(--text); }

.workflow-track { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; gap: .7rem; align-items: center; margin-top: 3.3rem; }
.workflow-track > article { position: relative; min-height: 250px; padding: 1.35rem 1rem 1.2rem; text-align: center; border-top: 4px solid var(--stage); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow-sm); }
.workflow-track > article svg { width: 42px; height: 42px; margin: .9rem auto 1rem; color: var(--stage); }
.workflow-number { position: absolute; top: .75rem; left: .8rem; color: #9aa5b1; font-size: .66rem; font-weight: 900; letter-spacing: .08em; }
.workflow-track h3 { margin: 0; font-size: 1.18rem; }
.workflow-track article > span { display: block; margin: .35rem 0 .6rem; color: var(--stage); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.workflow-track article > p { color: var(--muted); font-size: .79rem; }
.workflow-track > b { color: #b8c1ca; font-size: 1.35rem; }
.workflow-details { margin-top: 2.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.workflow-details article { padding: 1.35rem 1.45rem; border: 1px solid var(--line); border-radius: 14px; }
.workflow-details article:last-child { grid-column: 1 / -1; }
.workflow-details h3 { margin-bottom: .45rem; font-size: 1.02rem; }
.workflow-details p { margin: 0; color: var(--muted); font-size: .9rem; }
.workflow-close { max-width: 850px; margin-top: 2.5rem; text-align: center; color: #364250; font-size: 1.08rem; font-weight: 700; }

.kit-final-cta { padding: 100px 0; text-align: center; }
.kit-final-inner { position: relative; z-index: 1; max-width: 900px; }
.kit-final-inner h2 { font-size: clamp(2.4rem, 4.7vw, 4.1rem); }
.kit-final-inner > p { max-width: 760px; margin-inline: auto; color: #c7d0da; }
.reinforcement-list { margin: 1.8rem auto 2rem; padding: 0; list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; }
.reinforcement-list li { padding: .55rem .85rem; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #d9e0e7; font-size: .82rem; }
.cta-trust { margin-top: .9rem !important; color: #92a0ae !important; font-size: .82rem; }
.closing-statement { margin-top: 1.8rem !important; color: white !important; font-weight: 750; }

@media (max-width: 1100px) {
  .kit-hero-grid { grid-template-columns: 1fr; }
  .kit-hero { padding-top: 140px; }
  .kit-bundle-stage { width: 650px; max-width: 100%; margin: -20px auto -35px; transform: scale(.92); }
  .playbook-row { gap: 3rem; }
  .workflow-track { grid-template-columns: repeat(5, 1fr); gap: .8rem; }
  .workflow-track > b { display: none; }
}

@media (max-width: 820px) {
  .kit-hero { min-height: 0; padding-bottom: 80px; }
  .kit-bundle-stage { transform: scale(.78); transform-origin: left center; width: 760px; margin-bottom: -90px; }
  .process-strip { border-radius: 18px; flex-wrap: wrap; }
  .playbook-row, .playbook-row:nth-child(even) { grid-template-columns: 1fr; gap: 1.5rem; padding: 3.2rem 0; }
  .playbook-row:nth-child(even) .cover-wrap, .playbook-row:nth-child(even) .playbook-copy { order: initial; }
  .cover-wrap { min-height: 390px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; }
  .fit-panel { grid-template-columns: 1fr; }
  .fit-panel > p { padding: 1.5rem 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .workflow-track { grid-template-columns: 1fr; }
  .workflow-track > article { min-height: 0; }
  .workflow-details { grid-template-columns: 1fr; }
  .workflow-details article:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  .kit-hero { padding-top: 116px; }
  .kit-bundle-stage { display: none; }
  .kit-mid-cta { padding: 2.2rem 1.25rem; }
  .fit-panel { padding: 1.6rem 1.25rem; }
  .fit-panel ul { grid-template-columns: 1fr; }
  .product-cover { width: min(270px, 86%); }
  .cover-wrap { min-height: 360px; }
  .reinforcement-list { align-items: stretch; flex-direction: column; }
}

/* Playbooks page */
.playbooks-hero { min-height: 720px; padding: 152px 0 94px; display: flex; align-items: center; }
.playbooks-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 4rem; align-items: center; }
.playbooks-hero-copy > p { max-width: 660px; color: #cbd3dd; font-size: 1.08rem; }
.playbook-shelf { position: relative; min-height: 500px; perspective: 1200px; }
.shelf-glow { position: absolute; inset: 25% 4% 7%; border-radius: 50%; background: radial-gradient(circle, rgba(132,189,0,.22), rgba(59,110,168,.08) 44%, transparent 70%); filter: blur(26px); }
.shelf-badge { position: absolute; top: 32px; left: 50%; transform: translateX(-50%); z-index: 10; padding: .48rem .85rem; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #d9e5c0; background: rgba(8,17,28,.78); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.shelf-cover { --cover-accent: var(--blue); position: absolute; bottom: 54px; width: 138px; height: 330px; display: flex; flex-direction: column; padding: 1.25rem .9rem 1rem; overflow: hidden; color: white; border-radius: 5px 10px 10px 5px; border-bottom: 11px solid var(--cover-accent); background: linear-gradient(150deg, #243448, #101a27 74%); box-shadow: -10px 22px 38px rgba(0,0,0,.36), inset -7px 0 10px rgba(0,0,0,.26); transform-origin: bottom center; }
.shelf-cover::before { content: ""; position: absolute; inset: 0; opacity: .25; background: linear-gradient(112deg, transparent 27%, rgba(255,255,255,.12) 33%, transparent 41%), repeating-linear-gradient(135deg, transparent 0 34px, rgba(255,255,255,.025) 35px 36px); }
.shelf-cover::after { content: ""; position: absolute; right: -48px; bottom: 38px; width: 112px; height: 112px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 14px rgba(255,255,255,.025), 0 0 0 28px rgba(255,255,255,.015); }
.shelf-cover > * { position: relative; z-index: 1; }
.cover-icon { width: 40px; height: 40px; margin-bottom: 1.2rem; display: grid; place-items: center; border-radius: 11px; color: white; background: color-mix(in srgb, var(--cover-accent) 82%, #102032); box-shadow: 0 8px 18px rgba(0,0,0,.2); }
.cover-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.shelf-cover > small { color: #a9b5c2; font-size: .5rem; font-weight: 800; letter-spacing: .13em; }
.shelf-cover > strong { margin-top: .45rem; font-size: .79rem; line-height: 1.12; }
.shelf-productivity { --cover-accent: var(--blue); left: 0; z-index: 7; transform: rotateY(6deg) rotateZ(-2deg); }
.shelf-boolean { --cover-accent: #72b6e8; left: 17%; z-index: 6; transform: rotateY(3deg) rotateZ(-1deg); }
.shelf-screen { --cover-accent: var(--light-blue); left: 34%; z-index: 5; }
.shelf-interview { --cover-accent: #7a8dcc; left: 51%; z-index: 4; transform: rotateY(-3deg) rotateZ(1deg); }
.shelf-kpi { --cover-accent: var(--green); left: 68%; z-index: 3; transform: rotateY(-6deg) rotateZ(2deg); }
.shelf-line { position: absolute; left: 0; right: 0; bottom: 42px; height: 12px; border-radius: 50%; background: rgba(6,12,20,.7); box-shadow: 0 12px 30px rgba(0,0,0,.45); }

.resource-grid { margin-top: 3.3rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.resource-card { min-height: 580px; display: grid; grid-template-rows: 300px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.resource-card-featured { grid-column: 1 / -1; min-height: 500px; grid-template-columns: 1.05fr .95fr; grid-template-rows: 1fr; border-color: #d9e8ba; background: linear-gradient(145deg, #fbfdf7, white 58%); }
.resource-visual { min-height: 100%; display: grid; place-items: center; padding: 2rem; background: radial-gradient(circle at center, rgba(132,189,0,.14), transparent 64%); }
.resource-mini-bundle { position: relative; width: 590px; max-width: 100%; min-height: 340px; display: flex; align-items: flex-end; justify-content: center; gap: 8px; perspective: 1000px; }
.mini-book { --mini-accent: var(--blue); position: relative; width: 105px; height: 270px; padding: 1.15rem .72rem 1rem; color: white; background: linear-gradient(150deg, #243448, #101a27 74%); border-radius: 4px 7px 7px 4px; border-bottom: 9px solid var(--mini-accent); box-shadow: -7px 15px 26px rgba(14,23,34,.28), inset -5px 0 8px rgba(0,0,0,.22); overflow: hidden; transform: perspective(700px) rotateY(-4deg); }
.mini-book:nth-child(2) { transform: translateY(-8px) perspective(700px) rotateY(-2deg); }
.mini-book:nth-child(3) { transform: translateY(-14px); }
.mini-book:nth-child(4) { transform: translateY(-8px) perspective(700px) rotateY(2deg); }
.mini-book:nth-child(5) { transform: perspective(700px) rotateY(4deg); }
.mini-book::before { content: ""; position: absolute; inset: 0; background: linear-gradient(112deg, transparent 30%, rgba(255,255,255,.12) 36%, transparent 44%), repeating-linear-gradient(135deg, transparent 0 32px, rgba(255,255,255,.025) 33px 34px); }
.mini-book::after { content: ""; position: absolute; right: -36px; bottom: 35px; width: 82px; height: 82px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 10px rgba(255,255,255,.02); }
.mini-book > * { position: relative; z-index: 1; }
.mini-icon { width: 34px; height: 34px; margin-bottom: 1rem; display: grid; place-items: center; border-radius: 9px; color: white; background: var(--mini-accent); }
.mini-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mini-book small { color: #aeb9c5; font-size: .45rem; letter-spacing: .12em; }
.mini-book strong { display: block; margin-top: .42rem; font-size: .63rem; line-height: 1.12; }
.mini-productivity { --mini-accent: var(--blue); }
.mini-boolean { --mini-accent: #72b6e8; }
.mini-screen { --mini-accent: var(--light-blue); }
.mini-interview { --mini-accent: #7a8dcc; }
.mini-kpi { --mini-accent: var(--green); }
.resource-content { padding: 2.1rem 2.2rem 2.3rem; }
.resource-card-featured .resource-content { display: flex; flex-direction: column; justify-content: center; padding: 3rem; }
.resource-meta { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem; margin-bottom: 1rem; }
.resource-meta span { padding: .38rem .65rem; border-radius: 999px; background: #f0f3f6; color: #687380; font-size: .68rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.resource-meta .status-live { color: #547600; background: #eef7d9; }
.resource-meta .status-future { color: #526171; background: #eaf0f5; }
.resource-content h3 { margin-bottom: .7rem; font-size: clamp(1.7rem, 2.7vw, 2.45rem); }
.resource-content > p { color: var(--muted); }
.resource-points { margin: .75rem 0 1.6rem; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; }
.resource-points li { padding: .45rem .7rem; border: 1px solid #dfe7d1; border-radius: 999px; color: #4f5f39; background: #f8fbed; font-size: .78rem; font-weight: 750; }
.single-cover { --cover-accent: var(--light-blue); position: relative; width: 220px; height: 305px; margin: 1.5rem auto 0; padding: 1.45rem 1.25rem; display: flex; flex-direction: column; overflow: hidden; color: white; border-radius: 5px 10px 10px 5px; border-bottom: 11px solid var(--cover-accent); background: linear-gradient(150deg, #243448, #101a27 74%); box-shadow: -10px 20px 34px rgba(16,25,36,.25), inset -7px 0 10px rgba(0,0,0,.25); transform: perspective(800px) rotateY(-6deg); }
.single-cover::before { content: ""; position: absolute; inset: 0; background: linear-gradient(112deg, transparent 31%, rgba(255,255,255,.12) 37%, transparent 45%), repeating-linear-gradient(135deg, transparent 0 36px, rgba(255,255,255,.025) 37px 38px); }
.single-cover::after { content: ""; position: absolute; right: -48px; bottom: 44px; width: 115px; height: 115px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 14px rgba(255,255,255,.025); }
.single-cover > * { position: relative; z-index: 1; }
.single-cover-icon { width: 48px; height: 48px; margin-bottom: 1.25rem; display: grid; place-items: center; border-radius: 13px; color: white; background: var(--cover-accent); box-shadow: 0 9px 20px rgba(0,0,0,.22); }
.single-cover-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.single-cover > span:not(.single-cover-icon) { color: #aab5c1; font-size: .62rem; letter-spacing: .14em; }
.single-cover > strong { margin-top: .55rem; font-size: 1.25rem; line-height: 1.06; }
.single-cover > small { margin-top: 1.2rem; color: #c2ccd7; font-size: .68rem; line-height: 1.45; }
.productivity-edition { --cover-accent: var(--blue); }
.included-note { margin: 1.2rem 0 .6rem !important; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .85rem; font-weight: 700; color: #4c5865 !important; }
.resource-link { color: var(--green-dark); text-decoration: none; font-weight: 850; }
.resource-link:hover { color: var(--green); }

.library-skill-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.library-skill-card { --skill-accent: var(--blue); min-height: 430px; padding: 2.1rem; border-top: 5px solid var(--skill-accent); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); }
.skill-training { --skill-accent: var(--light-blue); }
.skill-operations { --skill-accent: var(--green); }
.skill-leadership { --skill-accent: var(--gold); }
.library-icon { width: 58px; height: 58px; margin-bottom: 1.25rem; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--skill-accent); }
.library-icon svg { width: 30px; height: 30px; }
.library-skill-card h3 { font-size: 1.55rem; }
.library-skill-card > p { color: var(--muted); }
.library-skill-card ul { margin: 1.35rem 0 0; padding: 0; list-style: none; display: grid; gap: .65rem; }
.library-skill-card li { position: relative; padding-left: 1.35rem; color: #45515e; }
.library-skill-card li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--skill-accent); }

.future-library-panel { padding: 3.4rem; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; border: 1px solid #dfe5eb; border-radius: 24px; background: linear-gradient(145deg, #fbfcfd, #f5f8fa); box-shadow: var(--shadow-sm); }
.future-icon { width: 90px; height: 90px; display: grid; place-items: center; border-radius: 22px; color: var(--green-dark); background: #edf6d9; }
.future-icon svg { width: 46px; height: 46px; }
.future-library-panel h2 { margin-bottom: .75rem; font-size: clamp(2rem, 3.5vw, 3.15rem); }
.future-library-panel p { max-width: 820px; margin: 0; color: var(--muted); font-size: 1.04rem; }

.playbooks-final { padding: 100px 0; text-align: center; }
.playbooks-final-inner { max-width: 800px; }
.playbooks-final h2 { font-size: clamp(2.4rem, 5vw, 4.3rem); }
.playbooks-final p { max-width: 690px; margin: 0 auto 1.8rem; color: #c5ced7; font-size: 1.08rem; }

@media (max-width: 1100px) {
  .playbooks-hero-grid { grid-template-columns: 1fr; }
  .playbook-shelf { width: 760px; max-width: 100%; margin: -10px auto -25px; }
  .resource-card-featured { grid-template-columns: 1fr; }
  .resource-card-featured .resource-visual { min-height: 430px; }
}

@media (max-width: 820px) {
  .playbooks-hero { min-height: 0; padding: 140px 0 75px; }
  .playbook-shelf { transform: scale(.78); transform-origin: left center; width: 760px; margin-bottom: -95px; }
  .resource-grid, .library-skill-grid { grid-template-columns: 1fr; }
  .resource-card-featured { grid-column: auto; }
  .future-library-panel { grid-template-columns: 1fr; text-align: center; }
  .future-icon { margin-inline: auto; }
}

@media (max-width: 600px) {
  .playbooks-hero { padding-top: 118px; }
  .playbook-shelf { display: none; }
  .resource-card, .resource-card-featured { grid-template-columns: 1fr; grid-template-rows: auto 1fr; min-height: 0; }
  .resource-card-featured .resource-visual { min-height: 430px; padding: 1.2rem .7rem; overflow: hidden; }
  .resource-mini-bundle { width: 100%; min-height: 380px; gap: 4px; transform: scale(.78); transform-origin: center; }
  .mini-book { width: 94px; height: 285px; }
  .mini-book strong { font-size: .58rem; }
  .resource-content, .resource-card-featured .resource-content { padding: 1.7rem 1.35rem 2rem; }
  .library-skill-card { min-height: 0; padding: 1.7rem 1.35rem; }
  .future-library-panel { padding: 2.2rem 1.35rem; }
}

/* About page */
.primary-nav a[aria-current="page"] { color: var(--green); }

.about-hero { padding: 154px 0 96px; }
.about-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.about-hero h1 { max-width: 780px; font-size: clamp(3rem, 5.2vw, 4.9rem); }
.about-opening { margin-top: 1.4rem; color: #cbd3dd; font-size: 1.05rem; }
.about-opening p { margin: .22rem 0; }
.about-truth-line { margin-top: 2rem; padding: 1.25rem 1.35rem; display: grid; gap: .25rem; border-left: 4px solid var(--green); border-radius: 0 14px 14px 0; background: rgba(255,255,255,.06); box-shadow: inset 0 1px rgba(255,255,255,.05); }
.about-truth-line span { color: #aeb9c5; font-size: .8rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.about-truth-line strong { color: white; font-size: 1.25rem; }

.about-system-visual { position: relative; min-height: 530px; padding: 2rem; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(255,255,255,.10); border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); box-shadow: 0 28px 70px rgba(0,0,0,.26); overflow: hidden; }
.system-visual-glow { position: absolute; inset: 40% 12% 3%; background: radial-gradient(circle, rgba(132,189,0,.24), transparent 65%); filter: blur(25px); }
.system-source-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.system-source-card { min-height: 145px; padding: 1.1rem .9rem; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; background: rgba(6,13,22,.44); text-align: center; }
.system-source-card > span { display: block; margin-bottom: .7rem; color: #7e8b98; font-size: .66rem; font-weight: 900; letter-spacing: .11em; }
.system-source-card strong { display: block; color: #eef2f6; font-size: .9rem; }
.system-source-card small { display: block; margin-top: .5rem; color: #8f9daa; font-size: .7rem; line-height: 1.35; }
.system-connector { position: relative; z-index: 1; margin: 1.4rem 0; display: grid; grid-template-columns: 1fr auto 1fr; gap: .8rem; align-items: center; color: #bad777; }
.system-connector span { height: 1px; background: linear-gradient(90deg, transparent, rgba(132,189,0,.65)); }
.system-connector span:last-child { background: linear-gradient(90deg, rgba(132,189,0,.65), transparent); }
.system-connector b { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }
.system-result-card { position: relative; z-index: 1; padding: 1.5rem; display: flex; gap: 1.2rem; align-items: center; border: 1px solid rgba(167,213,68,.45); border-radius: 18px; background: linear-gradient(145deg, rgba(132,189,0,.17), rgba(132,189,0,.07)); box-shadow: 0 18px 42px rgba(0,0,0,.22); }
.system-result-card svg { flex: 0 0 58px; width: 58px; height: 58px; color: var(--green); }
.system-result-card span { display: block; color: #cce49a; font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.system-result-card strong { display: block; margin-top: .2rem; color: white; font-size: 1.45rem; line-height: 1.1; }
.about-hero-close { position: relative; z-index: 1; max-width: 920px; margin-top: 3.7rem; padding-top: 2.6rem; border-top: 1px solid rgba(255,255,255,.12); text-align: center; color: #bec8d2; font-size: 1.05rem; }
.about-hero-close strong { color: white; }
.about-hero-summary { margin: 1.6rem auto 0; max-width: 800px; color: white; font-size: 1.15rem; font-weight: 650; }

.why-exist-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.why-exist-copy > p { max-width: 720px; color: var(--muted); font-size: 1.04rem; }
.why-exist-emphasis { margin-top: 1.7rem !important; padding: 1.25rem 1.35rem; border-left: 4px solid var(--green); border-radius: 0 14px 14px 0; color: var(--text) !important; background: white; box-shadow: var(--shadow-sm); font-weight: 650; }
.structure-path { padding: 2rem; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow); }
.path-stage { display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.2rem; border-radius: 16px; }
.path-stage + .path-stage { margin-top: 0; }
.path-problem { background: #f2f4f6; }
.path-system { background: #f3f8e8; border: 1px solid #d9e8b7; }
.path-outcome { color: white; background: linear-gradient(135deg, #17314d, var(--blue)); }
.path-icon { flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: #72808d; background: white; box-shadow: 0 7px 18px rgba(20,31,43,.08); }
.path-icon svg { width: 27px; height: 27px; }
.path-system .path-icon { color: var(--green-dark); }
.path-outcome .path-icon { color: white; background: rgba(255,255,255,.15); }
.path-stage span { display: block; margin-bottom: .15rem; color: #75818d; font-size: .68rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.path-stage strong { display: block; font-size: 1.05rem; }
.path-outcome span { color: #c4d7e9; }
.path-arrow { padding: .45rem; color: #9ca6af; text-align: center; font-size: 1.4rem; }

.beliefs-grid { margin-top: 3.1rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.belief-card { position: relative; min-height: 330px; padding: 2rem 1.7rem; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; overflow: hidden; }
.belief-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.belief-card::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--green)); }
.belief-number { position: absolute; right: 1.2rem; top: 1rem; color: #e4e8ec; font-size: 2rem; font-weight: 900; letter-spacing: -.05em; }
.belief-icon { width: 58px; height: 58px; margin-bottom: 1.35rem; display: grid; place-items: center; border-radius: 16px; color: var(--blue); background: #eef3f8; }
.belief-icon svg { width: 31px; height: 31px; }
.belief-card:nth-child(2) .belief-icon, .belief-card:nth-child(5) .belief-icon { color: var(--green-dark); background: #f0f7e1; }
.belief-card:nth-child(3) .belief-icon, .belief-card:nth-child(6) .belief-icon { color: var(--gold); background: #fbf4df; }
.belief-card h3 { max-width: 275px; font-size: 1.28rem; }
.belief-card p { color: var(--muted); }

.audience-grid { margin-top: 3.1rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.audience-card { min-height: 380px; padding: 2.2rem 1.8rem; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow-sm); }
.audience-icon { width: 68px; height: 68px; margin-bottom: 1.35rem; display: grid; place-items: center; border-radius: 18px; color: white; }
.audience-icon svg { width: 35px; height: 35px; }
.audience-blue { background: var(--blue); }
.audience-gold { background: var(--gold); }
.audience-green { background: var(--green); }
.audience-card > span { color: #788491; font-size: .73rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.audience-card h3 { margin-top: .55rem; font-size: 1.55rem; }
.audience-card p { color: var(--muted); }

.mission-promise { padding: 108px 0; }
.mission-promise-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.5rem; }
.mission-panel, .promise-panel { min-height: 410px; padding: 3rem; border: 1px solid rgba(255,255,255,.10); border-radius: 24px; background: rgba(255,255,255,.055); box-shadow: 0 20px 60px rgba(0,0,0,.18); }
.mission-panel h2 { font-size: clamp(2.35rem, 4vw, 3.7rem); }
.promise-panel > p { color: #d1d8e0; font-size: 1.22rem; line-height: 1.55; }
.promise-standard { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }
.promise-standard > span { color: #aeb9c5; font-size: .74rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.promise-standard ul { margin: 1rem 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.promise-standard li { position: relative; padding-left: 1.2rem; color: white; font-weight: 700; }
.promise-standard li::before { content: ""; position: absolute; left: 0; top: .58em; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.about-final { padding: 105px 0; text-align: center; }
.about-final-inner { max-width: 820px; }
.about-final-inner > p { max-width: 680px; margin: 0 auto 1.8rem; color: var(--muted); font-size: 1.08rem; }
.about-final-inner small { display: block; margin-top: 1rem; color: #78838e; }

@media (max-width: 1050px) {
  .about-hero-grid, .why-exist-grid, .mission-promise-grid { grid-template-columns: 1fr; }
  .about-system-visual { max-width: 720px; width: 100%; margin-inline: auto; }
  .beliefs-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 0; }
}

@media (max-width: 820px) {
  .about-hero { padding: 136px 0 76px; }
  .about-hero-grid { gap: 2.6rem; }
  .about-hero-close { margin-top: 2.8rem; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .belief-card { min-height: 0; }
  .mission-panel, .promise-panel { min-height: 0; padding: 2.3rem; }
}

@media (max-width: 600px) {
  .about-hero { padding-top: 116px; }
  .about-system-visual { min-height: 0; padding: 1.15rem; border-radius: 20px; }
  .system-source-grid { grid-template-columns: 1fr; }
  .system-source-card { min-height: 0; text-align: left; }
  .system-source-card > span { display: inline-block; margin: 0 .55rem 0 0; }
  .system-source-card strong { display: inline; }
  .system-source-card small { margin-left: 2.15rem; }
  .system-result-card { padding: 1.2rem; }
  .system-result-card svg { flex-basis: 45px; width: 45px; height: 45px; }
  .system-result-card strong { font-size: 1.2rem; }
  .about-hero-close { text-align: left; }
  .structure-path { padding: 1.15rem; }
  .path-stage { padding: 1rem; }
  .belief-card, .audience-card { padding: 1.7rem 1.35rem; }
  .mission-panel, .promise-panel { padding: 1.9rem 1.35rem; }
  .promise-standard ul { grid-template-columns: 1fr; }
}

/* Contact page */
.primary-nav a[aria-current="page"] { color: var(--green); }

.contact-hero { min-height: 720px; padding: 154px 0 96px; display: flex; align-items: center; }
.contact-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; gap: 5rem; align-items: center; }
.contact-hero-copy h1 { max-width: 760px; font-size: clamp(3rem, 5.5vw, 4.95rem); }
.contact-hero-copy > p { max-width: 690px; color: #c7d0da; font-size: 1.07rem; }
.contact-email-link { width: fit-content; margin-top: 2rem; padding: 1rem 1.2rem; display: inline-flex; align-items: center; gap: .9rem; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; color: white; background: rgba(255,255,255,.055); text-decoration: none; transition: transform .22s ease, background .22s ease, border-color .22s ease; }
.contact-email-link:hover, .contact-email-link:focus-visible { transform: translateY(-2px); background: rgba(255,255,255,.085); border-color: rgba(132,189,0,.52); }
.contact-email-link svg { width: 34px; height: 34px; color: var(--green); }
.contact-email-link small { display: block; color: #93a1ae; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-email-link strong { display: block; margin-top: .1rem; font-size: 1rem; }

.contact-visual { position: relative; min-height: 500px; }
.contact-visual-glow { position: absolute; inset: 16% 5% 3% 7%; border-radius: 50%; background: radial-gradient(circle, rgba(132,189,0,.25), transparent 65%); filter: blur(26px); }
.contact-gear { position: absolute; right: 3%; top: 4%; width: 180px; height: 180px; display: grid; place-items: center; color: rgba(132,189,0,.25); }
.contact-gear svg { width: 100%; height: 100%; stroke-width: 1.1; }
.contact-message-card { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; color: white; background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035)); box-shadow: 0 26px 65px rgba(0,0,0,.30); backdrop-filter: blur(10px); }
.message-main { left: 3%; top: 22%; width: 83%; min-height: 270px; padding: 2.25rem; display: flex; flex-direction: column; justify-content: flex-end; }
.message-icon { width: 72px; height: 72px; margin-bottom: 3.3rem; display: grid; place-items: center; border-radius: 20px; color: var(--green); background: rgba(132,189,0,.12); }
.message-icon svg { width: 39px; height: 39px; }
.message-main > span { color: #b7c1cc; font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.message-main > strong { max-width: 410px; margin-top: .45rem; font-size: 1.8rem; line-height: 1.12; }
.message-small { min-height: 62px; padding: .95rem 1.15rem; display: grid; place-items: center; color: #dce3ea; font-size: .76rem; font-weight: 800; letter-spacing: .05em; }
.message-top { right: 0; top: 18%; transform: rotate(3deg); }
.message-bottom { right: 5%; bottom: 2%; transform: rotate(-2deg); }

.contact-help { padding-bottom: 118px; }
.contact-help-grid { margin-top: 3.2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.contact-help-card { --help-accent: var(--blue); position: relative; min-height: 360px; padding: 2rem 1.55rem 1.7rem; display: flex; flex-direction: column; border: 1px solid var(--line); border-top: 4px solid var(--help-accent); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; overflow: hidden; }
.contact-help-card::after { content: ""; position: absolute; right: -50px; top: -50px; width: 135px; height: 135px; border-radius: 50%; background: color-mix(in srgb, var(--help-accent) 8%, transparent); }
.contact-help-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.help-feedback { --help-accent: var(--light-blue); }
.help-partnership { --help-accent: var(--gold); }
.help-issue { --help-accent: var(--green); }
.contact-help-icon { position: relative; z-index: 1; width: 62px; height: 62px; margin-bottom: 1.45rem; display: grid; place-items: center; border-radius: 18px; color: white; background: var(--help-accent); }
.contact-help-icon svg { width: 31px; height: 31px; }
.contact-help-card h3 { font-size: 1.35rem; }
.contact-help-card p { color: var(--muted); font-size: .96rem; }
.contact-help-card strong { display: block; color: var(--text); font-size: .93rem; }
.contact-help-card a { margin-top: auto; padding-top: 1.35rem; display: inline-flex; gap: .4rem; color: var(--help-accent); text-decoration: none; font-size: .9rem; font-weight: 850; }

.contact-form-section { padding: 118px 0; }
.contact-form-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 5rem; align-items: start; }
.contact-form-copy { position: sticky; top: 120px; }
.contact-form-copy > p { max-width: 540px; color: var(--muted); font-size: 1.04rem; }
.contact-expectation { margin-top: 1.35rem; padding: 1.1rem; display: flex; gap: 1rem; align-items: center; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: 0 7px 20px rgba(18,28,39,.05); }
.contact-expectation svg { flex: 0 0 42px; width: 42px; height: 42px; padding: .55rem; border-radius: 12px; color: var(--green-dark); background: #f0f7e1; }
.contact-expectation strong { display: block; }
.contact-expectation span, .contact-expectation a { display: block; margin-top: .1rem; color: var(--muted); font-size: .86rem; }
.contact-expectation a { color: var(--blue); font-weight: 700; text-decoration: none; }

.contact-form { padding: 2.4rem; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-field { margin-bottom: 1.15rem; }
.form-field label { display: block; margin-bottom: .45rem; color: #303b47; font-size: .86rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: .9rem 1rem; border: 1px solid #d7dde4; border-radius: 10px; color: var(--text); background: #fbfcfd; font: inherit; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-field textarea { min-height: 170px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); background: white; box-shadow: 0 0 0 4px rgba(59,110,168,.12); }
.form-field [aria-invalid="true"] { border-color: #b42318; box-shadow: 0 0 0 4px rgba(180,35,24,.08); }
.field-error { min-height: 1.15rem; display: block; padding-top: .25rem; color: #b42318; font-size: .75rem; }
.form-note { margin: .9rem 0 0; color: #77818c; font-size: .76rem; line-height: 1.45; }

.contact-faq { padding: 116px 0; }
.contact-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 5rem; align-items: start; }
.contact-faq-heading > p { max-width: 500px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.45rem 3rem 1.45rem 0; cursor: pointer; list-style: none; color: var(--text); font-size: 1.02rem; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: var(--green-dark); background: #f0f7e1; font-size: 1.25rem; transition: transform .2s ease; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -.25rem 0 1.45rem; padding-right: 3rem; color: var(--muted); }

.contact-closing { padding: 86px 0; }
.contact-closing-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr auto; gap: 3rem; align-items: center; }
.contact-closing h2 { max-width: 780px; font-size: clamp(2.2rem, 4vw, 3.55rem); }
.contact-closing p { max-width: 720px; color: #c4ced8; }
.contact-closing .button { white-space: nowrap; }

@media (max-width: 1050px) {
  .contact-hero-grid, .contact-form-grid, .contact-faq-grid { grid-template-columns: 1fr; }
  .contact-visual { width: min(100%, 700px); margin-inline: auto; }
  .contact-help-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-help-card { min-height: 320px; }
  .contact-form-copy { position: static; }
  .contact-closing-inner { grid-template-columns: 1fr; }
  .contact-closing .button { width: fit-content; }
}

@media (max-width: 720px) {
  .contact-hero { min-height: 0; padding: 132px 0 76px; }
  .contact-hero-grid { gap: 2.8rem; }
  .contact-visual { min-height: 400px; }
  .message-main { left: 0; width: 92%; min-height: 235px; padding: 1.6rem; }
  .message-icon { margin-bottom: 2.2rem; }
  .message-main > strong { font-size: 1.5rem; }
  .message-top { right: 1%; }
  .contact-help-grid { grid-template-columns: 1fr; }
  .contact-help-card { min-height: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 1.6rem 1.25rem; }
  .contact-faq-grid { gap: 2.5rem; }
}

@media (max-width: 480px) {
  .contact-email-link { width: 100%; }
  .contact-email-link strong { font-size: .87rem; word-break: break-word; }
  .contact-visual { min-height: 340px; }
  .contact-gear { width: 125px; height: 125px; }
  .message-main { top: 17%; min-height: 210px; }
  .message-icon { width: 57px; height: 57px; margin-bottom: 1.55rem; }
  .message-icon svg { width: 31px; height: 31px; }
  .message-small { min-height: 50px; padding: .7rem .8rem; font-size: .63rem; }
  .message-bottom { bottom: 0; }
  .contact-form .button { width: 100%; }
}

/* Thank You page */
.thank-hero { min-height: 720px; padding: 150px 0 94px; display: flex; align-items: center; }
.thank-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; gap: 5rem; align-items: center; }
.thank-hero-copy > p { max-width: 700px; color: #c7d0db; font-size: 1.08rem; }
.thank-hero-copy .button { margin-top: 1rem; }
.thank-delivery-note { margin-top: .9rem !important; color: #8f9dac !important; font-size: .8rem !important; }
.thank-confirmation { position: relative; min-height: 470px; display: grid; place-items: center; }
.thank-confirmation-glow { position: absolute; width: 90%; height: 72%; border-radius: 50%; background: radial-gradient(circle, rgba(132,189,0,.28), transparent 68%); filter: blur(28px); }
.confirmation-card { position: relative; width: min(100%, 430px); min-height: 410px; padding: 3rem 2.5rem 2.4rem; display: flex; flex-direction: column; align-items: center; text-align: center; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; color: white; background: linear-gradient(145deg, rgba(31,41,55,.96), rgba(10,19,31,.98)); box-shadow: 0 28px 70px rgba(0,0,0,.4); overflow: hidden; }
.confirmation-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(118deg, transparent 14%, rgba(255,255,255,.08) 31%, transparent 47%); pointer-events: none; }
.confirmation-check { width: 88px; height: 88px; margin-bottom: 1.35rem; display: grid; place-items: center; border-radius: 50%; color: #182600; background: linear-gradient(180deg, #a5df19, var(--green)); box-shadow: 0 16px 34px rgba(132,189,0,.28); }
.confirmation-check svg { width: 50px; height: 50px; stroke-width: 2.5; }
.confirmation-card > span { color: #b9dd6b; font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.confirmation-card > strong { max-width: 320px; margin-top: .55rem; font-size: 1.75rem; line-height: 1.15; }
.confirmation-files { width: 100%; margin: 2rem 0 1.3rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: .55rem; }
.confirmation-files i { height: 72px; border-radius: 3px 6px 6px 3px; background: linear-gradient(145deg, #273547, #101a27); border-bottom: 5px solid var(--blue); box-shadow: 0 8px 20px rgba(0,0,0,.22); }
.confirmation-files i:nth-child(2) { border-bottom-color: var(--light-blue); }
.confirmation-files i:nth-child(3) { border-bottom-color: #72b6e8; }
.confirmation-files i:nth-child(4) { border-bottom-color: var(--green); }
.confirmation-files i:nth-child(5) { border-bottom-color: var(--gold); }
.confirmation-card > small { color: #98a6b5; font-size: .8rem; }

.thank-inside { padding: 116px 0; }
.thank-playbook-grid { margin-top: 3.2rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.thank-playbook { --pb-accent: var(--blue); position: relative; min-height: 265px; padding: 1.6rem 1.2rem; display: flex; flex-direction: column; border: 1px solid var(--line); border-top: 4px solid var(--pb-accent); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; overflow: hidden; }
.thank-playbook:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.thank-playbook::after { content: ""; position: absolute; right: -50px; top: -50px; width: 135px; height: 135px; border-radius: 50%; background: color-mix(in srgb, var(--pb-accent) 8%, transparent); }
.thank-playbook.boolean { --pb-accent: var(--light-blue); }
.thank-playbook.screen { --pb-accent: #72b6e8; }
.thank-playbook.interview { --pb-accent: var(--blue); }
.thank-playbook.kpi { --pb-accent: var(--green); }
.thank-playbook > span { color: var(--pb-accent); font-size: .74rem; font-weight: 900; letter-spacing: .08em; }
.thank-playbook-icon { position: relative; z-index: 1; width: 58px; height: 58px; margin: 1.65rem 0 2.25rem; display: grid; place-items: center; border-radius: 16px; color: white; background: var(--pb-accent); }
.thank-playbook-icon svg { width: 30px; height: 30px; }
.thank-playbook h3 { margin: auto 0 0; font-size: 1.13rem; }

.thank-next { padding: 116px 0; }
.thank-next-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 5.5rem; align-items: center; }
.thank-next-copy > p { max-width: 530px; color: var(--muted); font-size: 1.04rem; }
.thank-reading-order { position: relative; margin: 0; padding: 0; list-style: none; display: grid; gap: .8rem; }
.thank-reading-order::before { content: ""; position: absolute; left: 27px; top: 40px; bottom: 40px; width: 2px; background: linear-gradient(var(--blue), var(--light-blue), var(--green)); }
.thank-reading-order li { position: relative; min-height: 78px; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: 0 8px 24px rgba(18,28,39,.06); }
.thank-reading-order li > span { position: relative; z-index: 1; flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--navy-2); font-size: .72rem; font-weight: 900; }
.thank-reading-order strong { display: block; font-size: .98rem; }
.thank-reading-order small { display: block; margin-top: .12rem; color: var(--muted); font-size: .8rem; }

.thank-system { padding: 116px 0; }
.thank-system-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: center; }
.thank-system-copy > p { max-width: 580px; color: var(--muted); font-size: 1.04rem; }
.thank-goal { margin-top: 2rem; padding: 1.35rem 1.45rem; border-left: 4px solid var(--green); border-radius: 0 14px 14px 0; background: #f4f9e9; }
.thank-goal span { display: block; color: #6a8e19; font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.thank-goal strong { display: block; margin-top: .45rem; font-size: 1rem; line-height: 1.45; }
.thank-future-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.thank-future-grid > div { min-height: 130px; padding: 1.35rem; display: flex; align-items: center; gap: 1rem; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: var(--shadow-sm); }
.thank-future-grid svg { flex: 0 0 44px; width: 44px; height: 44px; padding: .55rem; border-radius: 12px; color: var(--green-dark); background: #f0f7e1; }
.thank-future-grid span { font-weight: 800; }

.thank-social { padding: 112px 0; }
.thank-social-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.thank-social-card { min-height: 120px; padding: 1.25rem; display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; border: 1px solid var(--line); border-radius: 17px; background: white; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform .22s ease, box-shadow .22s ease; }
.thank-social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.thank-social-card > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; color: white; background: var(--navy-2); font-size: 1rem; font-weight: 900; }
.thank-social-card strong, .thank-social-card small { display: block; }
.thank-social-card small { margin-top: .2rem; color: var(--muted); font-size: .77rem; }
.thank-social-card b { color: var(--green-dark); font-size: 1.2rem; }

.thank-closing { padding: 102px 0; }
.thank-closing-inner { position: relative; z-index: 1; max-width: 830px; margin-inline: auto; text-align: center; }
.thank-closing-mark { width: 86px; height: 86px; margin: 0 auto 1.5rem; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: rgba(132,189,0,.09); border: 1px solid rgba(132,189,0,.22); }
.thank-closing-mark svg { width: 56px; height: 56px; }
.thank-closing h2 { font-size: clamp(2.35rem, 4.7vw, 4rem); }
.thank-closing p { margin: .25rem 0; color: #c5ced8; font-size: 1.08rem; }
.thank-closing p strong { color: white; }
.thank-closing-note { max-width: 660px; margin: 1.8rem auto 0 !important; color: #98a6b5 !important; font-size: .94rem !important; }

@media (max-width: 1050px) {
  .thank-hero-grid, .thank-next-grid, .thank-system-grid { grid-template-columns: 1fr; }
  .thank-confirmation { width: min(100%, 680px); margin-inline: auto; }
  .thank-playbook-grid { grid-template-columns: repeat(3, 1fr); }
  .thank-next-grid, .thank-system-grid { gap: 3.5rem; }
}

@media (max-width: 760px) {
  .thank-hero { min-height: 0; padding: 132px 0 76px; }
  .thank-hero-grid { gap: 2.5rem; }
  .thank-confirmation { min-height: 420px; }
  .confirmation-card { min-height: 370px; padding: 2.4rem 1.5rem 2rem; }
  .thank-playbook-grid { grid-template-columns: 1fr; }
  .thank-playbook { min-height: 180px; }
  .thank-playbook-icon { margin: 1.2rem 0 1.7rem; }
  .thank-future-grid, .thank-social-grid { grid-template-columns: 1fr; }
  .thank-social-card { min-height: 105px; }
}

@media (max-width: 480px) {
  .thank-hero-copy .button { width: 100%; }
  .thank-confirmation { min-height: 360px; }
  .confirmation-card { min-height: 330px; }
  .confirmation-check { width: 72px; height: 72px; }
  .confirmation-card > strong { font-size: 1.45rem; }
  .confirmation-files i { height: 55px; }
  .thank-reading-order li { padding: .9rem; }
  .thank-future-grid > div { min-height: 105px; }
}

/* 404 page */
.error-page { background: var(--surface); }
.error-hero { min-height: 710px; padding: 160px 0 110px; display: flex; align-items: center; }
.error-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 5rem; align-items: center; }
.error-copy { position: relative; z-index: 2; }
.error-copy h1 { max-width: 710px; font-size: clamp(3rem, 5.8vw, 5.25rem); }
.error-copy > p { max-width: 670px; margin: .45rem 0; color: #c2ccd6; font-size: 1.09rem; }
.error-copy .error-lead { margin: 1.15rem 0 1.8rem; color: white; font-weight: 750; }
.error-copy .button svg { width: 21px; height: 21px; }
.error-visual { position: relative; min-height: 470px; display: grid; place-items: center; isolation: isolate; }
.error-glow { position: absolute; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(132,189,0,.22), rgba(59,110,168,.08) 47%, transparent 70%); filter: blur(10px); }
.error-code { position: absolute; z-index: -1; color: rgba(255,255,255,.045); font-size: clamp(11rem, 20vw, 17rem); font-weight: 950; letter-spacing: -.09em; line-height: 1; }
.error-gear { position: relative; z-index: 3; width: 225px; height: 225px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: linear-gradient(145deg, rgba(31,41,55,.96), rgba(8,17,28,.98)); border: 1px solid rgba(255,255,255,.13); box-shadow: 0 30px 80px rgba(0,0,0,.38), inset 0 0 40px rgba(132,189,0,.05); }
.error-gear::before { content: ""; position: absolute; inset: 18px; border-radius: 50%; border: 1px dashed rgba(132,189,0,.25); }
.error-gear svg { width: 130px; height: 130px; stroke-width: 2; }
.error-orbit { position: absolute; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.orbit-one { width: 355px; height: 355px; }
.orbit-two { width: 445px; height: 445px; border-style: dashed; border-color: rgba(132,189,0,.14); }
.error-route { position: absolute; z-index: 1; width: 125px; height: 1px; background: linear-gradient(90deg, transparent, rgba(132,189,0,.58)); transform-origin: right center; }
.route-a { right: 12%; top: 31%; transform: rotate(-28deg); }
.route-b { left: 10%; bottom: 28%; transform: rotate(32deg); background: linear-gradient(90deg, rgba(74,144,226,.48), transparent); }
.error-node { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(132,189,0,.09); }
.node-a { right: 14%; top: 28%; }
.node-b { left: 13%; bottom: 25%; background: var(--light-blue); box-shadow: 0 0 0 7px rgba(74,144,226,.09); }
.node-c { right: 19%; bottom: 17%; width: 7px; height: 7px; opacity: .65; }

.error-options { padding: 116px 0 124px; }
.error-card-grid { margin-top: 3.2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.error-card { --error-accent: var(--blue); position: relative; min-height: 350px; padding: 1.8rem 1.55rem 1.55rem; display: flex; flex-direction: column; border: 1px solid var(--line); border-top: 4px solid var(--error-accent); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.error-card::after { content: ""; position: absolute; top: -55px; right: -55px; width: 145px; height: 145px; border-radius: 50%; background: color-mix(in srgb, var(--error-accent) 8%, transparent); }
.error-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.error-card.featured { --error-accent: var(--green); background: linear-gradient(145deg, white, #f8fce9); border-color: #d6e9ad; border-top-color: var(--green); box-shadow: 0 16px 40px rgba(132,189,0,.12); }
.error-card:nth-child(3) { --error-accent: var(--light-blue); }
.error-card:nth-child(4) { --error-accent: var(--gold); }
.error-card-icon { position: relative; z-index: 1; width: 62px; height: 62px; margin-bottom: 1.55rem; display: grid; place-items: center; border-radius: 16px; color: white; background: var(--error-accent); box-shadow: 0 10px 24px color-mix(in srgb, var(--error-accent) 24%, transparent); }
.error-card-icon svg { width: 32px; height: 32px; }
.error-card-label { color: var(--error-accent); font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.error-card h3 { margin: .65rem 0 .7rem; font-size: 1.35rem; }
.error-card p { margin: 0 0 1.5rem; color: var(--muted); font-size: .94rem; }
.error-card-link { margin-top: auto; display: inline-flex; gap: .45rem; align-items: center; color: var(--error-accent); font-weight: 850; text-decoration: none; }
.error-card-link:hover span { transform: translateX(3px); }
.error-card-link span { transition: transform .2s ease; }

.error-closing { padding: 94px 0; }
.error-closing-inner { max-width: 930px; margin-inline: auto; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; }
.error-compass { width: 104px; height: 104px; display: grid; place-items: center; border-radius: 50%; color: var(--green-dark); background: white; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.error-compass svg { width: 60px; height: 60px; }
.error-closing h2 { margin: .45rem 0 .7rem; }
.error-closing p { margin: .2rem 0; color: var(--muted); font-size: 1.03rem; }
.error-closing p strong { color: var(--text); }

@media (max-width: 1050px) {
  .error-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .error-hero { min-height: 0; }
  .error-copy { text-align: center; }
  .error-copy h1, .error-copy > p { margin-inline: auto; }
  .error-visual { min-height: 410px; }
  .error-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .error-hero { padding: 132px 0 72px; }
  .error-copy h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .error-visual { min-height: 350px; }
  .error-gear { width: 180px; height: 180px; }
  .error-gear svg { width: 105px; height: 105px; }
  .orbit-one { width: 285px; height: 285px; }
  .orbit-two { width: 345px; height: 345px; }
  .error-code { font-size: 10rem; }
  .error-card-grid { grid-template-columns: 1fr; }
  .error-card { min-height: 285px; }
  .error-closing-inner { grid-template-columns: 1fr; text-align: center; }
  .error-compass { margin-inline: auto; }
}

@media (max-width: 480px) {
  .error-copy .button { width: 100%; }
  .error-visual { min-height: 305px; }
  .error-gear { width: 150px; height: 150px; }
  .error-gear svg { width: 88px; height: 88px; }
  .orbit-one { width: 235px; height: 235px; }
  .orbit-two { width: 285px; height: 285px; }
  .error-code { font-size: 8rem; }
}


/* Legal pages */
.legal-hero {
  min-height: 610px;
  padding: 154px 0 96px;
  display: flex;
  align-items: center;
}

.legal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 5rem;
  align-items: center;
}

.legal-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 1.2rem;
}

.legal-hero-copy > p {
  max-width: 690px;
  margin: 0;
  color: #c7d0db;
  font-size: 1.1rem;
}

.legal-updated {
  width: fit-content;
  margin-top: 2rem;
  padding: .8rem 1rem;
  display: flex;
  gap: .7rem;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
}

.legal-updated span {
  color: #aeb8c4;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-updated strong {
  color: white;
  font-size: .86rem;
}

.legal-hero-visual {
  position: relative;
  min-height: 350px;
  display: grid;
  place-items: center;
}

.legal-hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132,189,0,.2), rgba(132,189,0,0) 69%);
  filter: blur(5px);
}

.legal-document-mark {
  position: relative;
  z-index: 2;
  width: 238px;
  height: 238px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 38px;
  color: var(--green);
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  box-shadow: 0 30px 80px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.12);
  transform: rotate(2deg);
}

.legal-document-mark::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px dashed rgba(132,189,0,.22);
  border-radius: 29px;
}

.legal-document-mark svg {
  width: 128px;
  height: 128px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-terms .legal-document-mark { color: var(--light-blue); }
.legal-refund .legal-document-mark { color: var(--gold); }
.legal-cookies .legal-document-mark { color: #b2da54; }

.legal-visual-line {
  position: absolute;
  z-index: 1;
  width: 135px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132,189,0,.55));
}

.legal-visual-line.line-one { right: 5%; top: 25%; transform: rotate(-27deg); }
.legal-visual-line.line-two { left: 3%; bottom: 24%; transform: rotate(25deg); background: linear-gradient(90deg, rgba(74,144,226,.45), transparent); }

.legal-visual-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(132,189,0,.08);
}

.legal-visual-node.node-one { right: 8%; top: 21%; }
.legal-visual-node.node-two { left: 5%; bottom: 20%; background: var(--light-blue); box-shadow: 0 0 0 7px rgba(74,144,226,.08); }
.legal-visual-node.node-three { right: 13%; bottom: 11%; width: 6px; height: 6px; opacity: .7; }

.legal-body { padding: 118px 0 125px; }

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 5rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 116px;
}

.legal-side-nav {
  padding: 1.25rem;
  display: grid;
  gap: .3rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.legal-side-label {
  margin: .1rem .65rem .7rem;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-side-nav a {
  padding: .73rem .7rem;
  border-radius: 9px;
  color: var(--text);
  font-size: .88rem;
  font-weight: 750;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.legal-side-nav a:hover { background: var(--surface); }
.legal-side-nav a[aria-current="page"] { color: #253609; background: #eff8dc; }

.legal-sidebar-note {
  margin-top: 1rem;
  padding: 1.2rem;
  border-left: 3px solid var(--green);
  border-radius: 4px 12px 12px 4px;
  background: var(--surface);
}

.legal-sidebar-note strong { display: block; margin-bottom: .35rem; }
.legal-sidebar-note p { margin: 0 0 .7rem; color: var(--muted); font-size: .84rem; }
.legal-sidebar-note a { color: var(--green-dark); font-size: .84rem; font-weight: 850; }

.legal-article {
  max-width: 850px;
}

.legal-article section {
  position: relative;
  padding: 0 0 3.6rem;
  margin-bottom: 3.6rem;
  border-bottom: 1px solid var(--line);
}

.legal-article section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-section-number {
  display: inline-flex;
  min-width: 34px;
  height: 28px;
  padding: 0 .55rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #31430e;
  background: #eff8dc;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.legal-article h2 {
  margin: .8rem 0 1.1rem;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.legal-article p {
  max-width: 790px;
  margin: .65rem 0;
  color: #4c5968;
  font-size: 1.02rem;
  line-height: 1.78;
}

.legal-article a { color: var(--green-dark); font-weight: 800; }

.legal-list {
  margin: 1.25rem 0 1.4rem;
  padding: 0;
  display: grid;
  gap: .72rem;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #394655;
  line-height: 1.6;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .63em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(132,189,0,.1);
}

.check-list li::before {
  width: 13px;
  height: 7px;
  top: .45em;
  border-radius: 0;
  background: transparent;
  border-left: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  box-shadow: none;
  transform: rotate(-45deg);
}

.x-list li::before,
.x-list li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: .74em;
  width: 11px;
  height: 2px;
  border-radius: 1px;
  background: #bd5260;
  box-shadow: none;
  transform: rotate(45deg);
}

.x-list li::after { transform: rotate(-45deg); }

.legal-highlight {
  margin-top: 1.5rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid #dcebbf;
  border-left: 4px solid var(--green);
  border-radius: 14px;
  background: linear-gradient(135deg, #fbfdf5, #f3f9e7);
}

.legal-highlight strong {
  display: block;
  margin-bottom: .2rem;
  color: #31430e;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.legal-highlight p { margin: 0; color: var(--text); font-weight: 700; }

.legal-permission-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-permission {
  padding: 1.5rem 1.45rem .9rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

.legal-permission > span {
  display: inline-block;
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.legal-permission.restricted > span { color: #9d3542; }
.legal-permission .legal-list { margin-bottom: .4rem; }

.legal-contact-section { padding: 86px 0; }

.legal-contact {
  max-width: 930px;
  margin-inline: auto;
  padding: 2.1rem 2.3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.legal-contact-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: var(--green-dark);
  background: #eff8dc;
}

.legal-contact-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-contact h2 { margin: .4rem 0 .45rem; font-size: 1.8rem; }
.legal-contact p { margin: 0 0 .35rem; color: var(--muted); }
.legal-contact a { color: var(--green-dark); font-weight: 850; }

.footer-bottom nav a[aria-current="page"] {
  color: var(--green);
}

@media (max-width: 980px) {
  .legal-hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .legal-hero-copy { text-align: center; }
  .legal-hero-copy h1, .legal-hero-copy > p { margin-inline: auto; }
  .legal-updated { margin-inline: auto; }
  .legal-hero-visual { min-height: 310px; }
  .legal-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .legal-sidebar { position: static; }
  .legal-side-nav { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .legal-side-label { grid-column: 1 / -1; }
  .legal-side-nav a { text-align: center; }
  .legal-sidebar-note { display: none; }
  .legal-article { max-width: none; }
}

@media (max-width: 720px) {
  .legal-hero { min-height: 0; padding: 132px 0 72px; }
  .legal-hero-visual { min-height: 280px; }
  .legal-document-mark { width: 190px; height: 190px; border-radius: 30px; }
  .legal-document-mark svg { width: 100px; height: 100px; }
  .legal-hero-glow { width: 290px; height: 290px; }
  .legal-body { padding: 82px 0 92px; }
  .legal-side-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-article section { padding-bottom: 2.8rem; margin-bottom: 2.8rem; }
  .legal-permission-grid { grid-template-columns: 1fr; }
  .legal-contact { grid-template-columns: 1fr; text-align: center; }
  .legal-contact-icon { margin-inline: auto; }
}

@media (max-width: 480px) {
  .legal-updated { width: 100%; justify-content: center; }
  .legal-hero-visual { min-height: 250px; }
  .legal-document-mark { width: 164px; height: 164px; }
  .legal-document-mark svg { width: 86px; height: 86px; }
  .legal-side-nav { grid-template-columns: 1fr; }
  .legal-side-label { text-align: center; }
  .legal-contact { padding: 1.75rem 1.25rem; }
}

/* v16 canonical product visual system */
.cover-collection {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 1.4rem;
  isolation: isolate;
}
.collection-glow {
  position: absolute;
  inset: 12% 5% 10%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(132,189,0,.18);
  filter: blur(42px);
}
.collection-main,
.collection-playbooks img,
.canonical-cover,
.thank-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(16,25,36,.18);
}
.collection-main {
  position: relative;
  z-index: 3;
  max-width: 330px;
  justify-self: end;
  transform: rotate(-1.5deg);
}
.collection-playbooks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .85rem;
  align-items: end;
}
.collection-playbooks img {
  aspect-ratio: 7 / 10;
  object-fit: cover;
  min-width: 0;
  transform: none;
}
.collection-playbooks img:nth-child(4),
.collection-playbooks img:nth-child(5) {
  transform: translateX(52%);
}
.collection-small {
  width: 100%;
  min-height: 460px;
  transform: none;
}
.collection-small .collection-main { max-width: 280px; }
.collection-small .collection-playbooks { gap: .65rem; }
.kit-cover-collection { min-height: 600px; }
.playbooks-cover-collection { min-height: 570px; }

.canonical-cover {
  max-width: 320px;
  margin-inline: auto;
  aspect-ratio: 7 / 10;
  object-fit: cover;
}
.featured-canonical-cover {
  max-width: 285px;
  transform: none;
}
.cover-wrap {
  min-height: 430px;
  display: grid;
  place-items: center;
  position: relative;
}
.cover-wrap::before {
  content: "";
  position: absolute;
  width: 74%;
  height: 60%;
  border-radius: 50%;
  background: rgba(132,189,0,.10);
  filter: blur(40px);
}
.cover-wrap .canonical-cover { position: relative; z-index: 1; }

.thank-cover {
  width: 100%;
  max-width: 150px;
  margin: 0 auto 1.1rem;
  aspect-ratio: 7 / 10;
  object-fit: cover;
}

/* Clear, stable icon trio */
.assumption-card:first-child svg {
  width: 42px;
  height: 42px;
}

/* Remove obsolete texture and thin-book presentation */
.bundle-stage,
.playbook-shelf,
.product-cover,
.single-product-cover {
  background-image: none !important;
}

@media (max-width: 980px) {
  .cover-collection {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.2rem;
    padding: 1rem 0;
  }
  .collection-main {
    justify-self: center;
    max-width: 300px;
  }
  .collection-playbooks {
    width: min(100%, 700px);
    margin-inline: auto;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: .6rem;
  }
  .collection-playbooks img:nth-child(4),
  .collection-playbooks img:nth-child(5) { transform: none; }
  .collection-small { min-height: auto; }
}

@media (max-width: 600px) {
  .cover-collection {
    display: block;
    min-height: auto;
    padding: .5rem 0 1rem;
  }
  .collection-main {
    width: 64%;
    max-width: 270px;
    margin: 0 auto 1rem;
    transform: none;
  }
  .collection-playbooks {
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: .32rem;
    align-items: start;
  }
  .collection-playbooks img {
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(16,25,36,.16);
  }
  .collection-small .collection-main { max-width: 250px; }
  .canonical-cover { max-width: 245px; }
  .thank-cover { max-width: 130px; }
}


/* v17 playbook consistency refinements */
.featured-cover-set {
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
  align-items: end;
  margin-inline: auto;
}
.featured-cover-set img {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 10;
  object-fit: cover;
  border-radius: 7px;
  background: white;
  box-shadow: 0 14px 30px rgba(16,25,36,.17);
  transform: none;
}
.resource-card-featured .resource-visual {
  padding: 2rem 1.4rem;
  overflow: hidden;
}
.library-skill-card.skill-leadership .library-icon svg {
  width: 31px;
  height: 31px;
}
@media (max-width: 600px) {
  .featured-cover-set {
    width: 118%;
    margin-left: -9%;
    gap: .28rem;
  }
  .featured-cover-set img {
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(16,25,36,.15);
  }
  .resource-card-featured .resource-visual {
    min-height: 330px;
    padding: 1.4rem .65rem;
  }
}


/* v18 leadership icon and featured Starter Kit composition */
.skill-card.leadership .icon-circle svg,
.library-skill-card.skill-leadership .library-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.featured-kit-composition {
  position: relative;
  width: min(100%, 720px);
  min-height: 390px;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.featured-kit-main {
  position: absolute;
  left: 2%;
  top: 0;
  z-index: 1;
  width: 31%;
  max-width: 205px;
  height: auto;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 40px rgba(16,25,36,.22);
}
.featured-kit-composition .featured-cover-set {
  position: relative;
  z-index: 2;
  width: 84%;
  margin-left: 16%;
  margin-bottom: .2rem;
}
@media (max-width: 600px) {
  .featured-kit-composition {
    min-height: 315px;
    width: 112%;
    margin-left: -6%;
  }
  .featured-kit-main {
    left: 0;
    top: 4px;
    width: 34%;
    max-width: 145px;
  }
  .featured-kit-composition .featured-cover-set {
    width: 88%;
    margin-left: 12%;
    gap: .24rem;
  }
}


/* v19 leadership icon consistency and improved Starter Kit overlap */
.skill-card.leadership .icon-circle svg,
.library-skill-card.skill-leadership .library-icon svg,
.leadership-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.featured-kit-composition {
  position: relative;
  width: min(100%, 760px);
  min-height: 380px;
  margin-inline: auto;
  padding-top: .5rem;
}
.featured-kit-main {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  width: 34%;
  max-width: 220px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 20px 44px rgba(16,25,36,.20);
}
.featured-kit-composition .featured-cover-set {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  width: 92%;
  max-width: 640px;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 0;
}
.featured-kit-composition .featured-cover-set img {
  width: 21%;
  max-width: 126px;
  margin-left: -2.2%;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(16,25,36,.17);
}
.featured-kit-composition .featured-cover-set img:first-child { margin-left: 0; }
.featured-kit-composition .featured-cover-set img:nth-child(1),
.featured-kit-composition .featured-cover-set img:nth-child(5) { transform: translateY(12px); }
.featured-kit-composition .featured-cover-set img:nth-child(2),
.featured-kit-composition .featured-cover-set img:nth-child(4) { transform: translateY(4px); }
.featured-kit-composition .featured-cover-set img:nth-child(3) { transform: translateY(0); }
@media (max-width: 900px) {
  .featured-kit-composition { min-height: 350px; }
  .featured-kit-main { width: 37%; }
  .featured-kit-composition .featured-cover-set { width: 98%; }
  .featured-kit-composition .featured-cover-set img { width: 21.5%; max-width: none; }
}
@media (max-width: 640px) {
  .featured-kit-composition {
    min-height: 315px;
    width: 100%;
  }
  .featured-kit-main {
    width: 40%;
    max-width: 170px;
    top: 4px;
  }
  .featured-kit-composition .featured-cover-set {
    width: 108%;
  }
  .featured-kit-composition .featured-cover-set img {
    width: 22%;
    margin-left: -3.5%;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(16,25,36,.14);
  }
  .featured-kit-composition .featured-cover-set img:nth-child(1),
  .featured-kit-composition .featured-cover-set img:nth-child(5) { transform: translateY(10px); }
}


/* v20 refined leadership icon and featured kit composition */
.skill-card.leadership .icon-circle svg,
.library-skill-card.skill-leadership .library-icon svg,
.leadership-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.featured-kit-composition {
  position: relative;
  width: min(100%, 760px);
  min-height: 390px;
  margin-inline: auto;
  padding-top: 0.25rem;
}
.featured-kit-main {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  width: 32%;
  max-width: 205px;
  border-radius: 10px;
  box-shadow: 0 18px 36px rgba(16,25,36,.16);
}
.featured-kit-composition .featured-cover-set {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  z-index: 2;
  width: 94%;
  max-width: 650px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
}
.featured-kit-composition .featured-cover-set img {
  width: 18.4%;
  max-width: 112px;
  margin-left: -1.2%;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(16,25,36,.14);
}
.featured-kit-composition .featured-cover-set img:first-child { margin-left: 0; }
.featured-kit-composition .featured-cover-set img:nth-child(1),
.featured-kit-composition .featured-cover-set img:nth-child(5) { transform: translateY(14px); }
.featured-kit-composition .featured-cover-set img:nth-child(2),
.featured-kit-composition .featured-cover-set img:nth-child(4) { transform: translateY(7px); }
.featured-kit-composition .featured-cover-set img:nth-child(3) { transform: translateY(0); }
@media (max-width: 900px) {
  .featured-kit-composition { min-height: 365px; }
  .featured-kit-main { width: 34%; max-width: 190px; }
  .featured-kit-composition .featured-cover-set { width: 98%; }
  .featured-kit-composition .featured-cover-set img { width: 18.8%; }
}
@media (max-width: 640px) {
  .featured-kit-composition {
    min-height: 330px;
    width: 100%;
  }
  .featured-kit-main {
    width: 40%;
    max-width: 170px;
    top: 6px;
  }
  .featured-kit-composition .featured-cover-set {
    width: 100%;
    bottom: 4px;
  }
  .featured-kit-composition .featured-cover-set img {
    width: 18.6%;
    max-width: none;
    margin-left: -1.1%;
    border-radius: 6px;
    box-shadow: 0 9px 18px rgba(16,25,36,.12);
  }
  .featured-kit-composition .featured-cover-set img:nth-child(1),
  .featured-kit-composition .featured-cover-set img:nth-child(5) { transform: translateY(12px); }
  .featured-kit-composition .featured-cover-set img:nth-child(2),
  .featured-kit-composition .featured-cover-set img:nth-child(4) { transform: translateY(6px); }
}


/* v21 simplified leadership icon and cleaner Starter Kit overlap */
.skill-card.leadership .icon-circle svg,
.library-skill-card.skill-leadership .library-icon svg,
.leadership-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.featured-kit-composition {
  position: relative;
  width: min(100%, 760px);
  min-height: 360px;
  margin-inline: auto;
  padding-top: .25rem;
}
.featured-kit-main {
  position: absolute;
  left: 24%;
  top: 24px;
  transform: none;
  z-index: 1;
  width: 29%;
  max-width: 176px;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(16,25,36,.14);
  opacity: .98;
}
.featured-kit-composition .featured-cover-set {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 2;
  width: 96%;
  max-width: 660px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
}
.featured-kit-composition .featured-cover-set img {
  width: 18.9%;
  max-width: 118px;
  margin-left: -1.4%;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(16,25,36,.13);
}
.featured-kit-composition .featured-cover-set img:first-child { margin-left: 0; }
.featured-kit-composition .featured-cover-set img:nth-child(1),
.featured-kit-composition .featured-cover-set img:nth-child(5) { transform: translateY(12px); }
.featured-kit-composition .featured-cover-set img:nth-child(2),
.featured-kit-composition .featured-cover-set img:nth-child(4) { transform: translateY(6px); }
.featured-kit-composition .featured-cover-set img:nth-child(3) { transform: translateY(0); }
@media (max-width: 900px) {
  .featured-kit-composition { min-height: 345px; }
  .featured-kit-main { left: 22%; top: 22px; width: 31%; max-width: 170px; }
  .featured-kit-composition .featured-cover-set { width: 100%; }
  .featured-kit-composition .featured-cover-set img { width: 19%; }
}
@media (max-width: 640px) {
  .featured-kit-composition {
    min-height: 292px;
    width: 100%;
  }
  .featured-kit-main {
    left: 18%;
    top: 18px;
    width: 34%;
    max-width: 146px;
  }
  .featured-kit-composition .featured-cover-set {
    width: 100%;
    bottom: 8px;
  }
  .featured-kit-composition .featured-cover-set img {
    width: 18.5%;
    max-width: none;
    margin-left: -1.3%;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(16,25,36,.11);
  }
  .featured-kit-composition .featured-cover-set img:nth-child(1),
  .featured-kit-composition .featured-cover-set img:nth-child(5) { transform: translateY(10px); }
  .featured-kit-composition .featured-cover-set img:nth-child(2),
  .featured-kit-composition .featured-cover-set img:nth-child(4) { transform: translateY(5px); }
}


/* v22 centered Starter Kit composition across mobile and desktop */
.featured-kit-composition {
  position: relative;
  width: min(100%, 760px);
  min-height: 365px;
  margin-inline: auto;
  overflow: visible;
}
.featured-kit-main {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  z-index: 1;
  width: 30%;
  max-width: 185px;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(16,25,36,.14);
}
.featured-kit-composition .featured-cover-set {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 2;
  width: 88%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
}
.featured-kit-composition .featured-cover-set img {
  width: 19%;
  max-width: 112px;
  margin-left: -1.2%;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(16,25,36,.13);
}
.featured-kit-composition .featured-cover-set img:first-child { margin-left: 0; }
.featured-kit-composition .featured-cover-set img:nth-child(1),
.featured-kit-composition .featured-cover-set img:nth-child(5) { transform: translateY(10px); }
.featured-kit-composition .featured-cover-set img:nth-child(2),
.featured-kit-composition .featured-cover-set img:nth-child(4) { transform: translateY(5px); }
.featured-kit-composition .featured-cover-set img:nth-child(3) { transform: translateY(0); }
@media (max-width: 900px) {
  .featured-kit-composition { min-height: 345px; }
  .featured-kit-main { width: 32%; max-width: 175px; }
  .featured-kit-composition .featured-cover-set { width: 90%; }
  .featured-kit-composition .featured-cover-set img { width: 19.2%; }
}
@media (max-width: 640px) {
  .featured-kit-composition {
    min-height: 290px;
    width: 100%;
    overflow: hidden;
  }
  .featured-kit-main {
    left: 50%;
    top: 14px;
    width: 35%;
    max-width: 148px;
    transform: translateX(-50%);
  }
  .featured-kit-composition .featured-cover-set {
    left: 50%;
    width: 86%;
    max-width: none;
    bottom: 8px;
    transform: translateX(-50%);
  }
  .featured-kit-composition .featured-cover-set img {
    width: 19.2%;
    max-width: none;
    margin-left: -1%;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(16,25,36,.11);
  }
  .featured-kit-composition .featured-cover-set img:nth-child(1),
  .featured-kit-composition .featured-cover-set img:nth-child(5) { transform: translateY(8px); }
  .featured-kit-composition .featured-cover-set img:nth-child(2),
  .featured-kit-composition .featured-cover-set img:nth-child(4) { transform: translateY(4px); }
}


/* v23 exact-centered Starter Kit row using a five-column grid */
.featured-kit-composition .featured-cover-set {
  left: 50%;
  transform: translateX(-50%);
  width: 84%;
  max-width: 570px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0;
}
.featured-kit-composition .featured-cover-set img,
.featured-kit-composition .featured-cover-set img:first-child {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}
@media (max-width: 900px) {
  .featured-kit-composition .featured-cover-set { width: 86%; }
}
@media (max-width: 640px) {
  .featured-kit-composition .featured-cover-set {
    left: 48%;
    transform: translateX(-50%);
    width: 84%;
    max-width: none;
  }
  .featured-kit-composition .featured-cover-set img {
    width: 100%;
    margin: 0;
  }
}


/* v24: visibly centered fan composition for the featured Starter Kit */
.featured-kit-composition {
  position: relative;
  width: min(100%, 720px);
  min-height: 370px;
  margin-inline: auto;
  overflow: hidden;
}
.featured-kit-main {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  z-index: 1;
  width: 31%;
  max-width: 190px;
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(16,25,36,.14);
}
.featured-kit-composition .featured-cover-set {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  display: block;
  transform: none;
}
.featured-kit-composition .featured-cover-set img,
.featured-kit-composition .featured-cover-set img:first-child {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 18%;
  max-width: 118px;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(16,25,36,.13);
}
.featured-kit-composition .featured-cover-set img:nth-child(1) { transform: translateX(-210%) translateY(12px); }
.featured-kit-composition .featured-cover-set img:nth-child(2) { transform: translateX(-130%) translateY(6px); }
.featured-kit-composition .featured-cover-set img:nth-child(3) { transform: translateX(-50%) translateY(0); }
.featured-kit-composition .featured-cover-set img:nth-child(4) { transform: translateX(30%) translateY(6px); }
.featured-kit-composition .featured-cover-set img:nth-child(5) { transform: translateX(110%) translateY(12px); }

@media (max-width: 900px) {
  .featured-kit-composition { min-height: 345px; }
  .featured-kit-main { width: 32%; max-width: 175px; }
  .featured-kit-composition .featured-cover-set img,
  .featured-kit-composition .featured-cover-set img:first-child { width: 18.5%; }
}

@media (max-width: 640px) {
  .featured-kit-composition {
    min-height: 300px;
    width: 100%;
    overflow: hidden;
  }
  .featured-kit-main {
    left: 50%;
    top: 10px;
    width: 36%;
    max-width: 150px;
  }
  .featured-kit-composition .featured-cover-set img,
  .featured-kit-composition .featured-cover-set img:first-child {
    left: 50%;
    bottom: 8px;
    width: 17.5%;
    max-width: none;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(16,25,36,.11);
  }
  .featured-kit-composition .featured-cover-set img:nth-child(1) { transform: translateX(-220%) translateY(9px); }
  .featured-kit-composition .featured-cover-set img:nth-child(2) { transform: translateX(-135%) translateY(4px); }
  .featured-kit-composition .featured-cover-set img:nth-child(3) { transform: translateX(-50%) translateY(0); }
  .featured-kit-composition .featured-cover-set img:nth-child(4) { transform: translateX(35%) translateY(4px); }
  .featured-kit-composition .featured-cover-set img:nth-child(5) { transform: translateX(120%) translateY(9px); }
}


/* v25 fixed Starter Kit composite image */
.featured-kit-image-wrap {
  width: 100%;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 1rem 0;
}
.featured-kit-image {
  display: block;
  width: min(100%, 720px);
  height: auto;
  margin-inline: auto;
}
@media (max-width: 640px) {
  .featured-kit-image-wrap {
    min-height: 285px;
    padding: .25rem 0 .5rem;
  }
  .featured-kit-image {
    width: 94%;
  }
}
