/* ===============================================================
   C²I — Creative Business in a Box
   Stylesheet
   Premium, institutional, light mode default. Gold accent.
   =============================================================== */

:root {
  --black: #F7F8FA;
  --black-2: #FFFFFF;
  --black-3: #F0F1F3;
  --line: #E5E7EB;
  --line-2: #D1D5DB;
  --white: #1A1B1E;
  --grey: #6B7280;
  --grey-2: #9CA3AF;
  --accent: #C4952A;
  --accent-dark: #A67D1F;

  --maxw: 1160px;
  --maxw-narrow: 800px;
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--maxw-narrow); }

.section__headline {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin: 0 auto 16px;
  text-align: center;
}
.section__sub {
  color: var(--grey);
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn--accent {
  background: var(--accent);
  color: var(--black);
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196, 149, 42, 0.2);
}
.btn--lg { padding: 17px 38px; font-size: 1.08rem; }

/* ===============================================================
   SECTION 1: NAV
   =============================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1.05; }
.nav__logo-mark { font-weight: 900; font-size: 1.35rem; letter-spacing: 0.02em; }
.nav__logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 3px;
}
.nav__links {
  display: flex;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav__links a { color: var(--grey); transition: color 0.15s var(--ease); }
.nav__links a:hover { color: var(--white); }

.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__login { font-weight: 500; color: var(--grey); transition: color 0.15s var(--ease); }
.nav__login:hover { color: var(--white); }
.nav__cta { padding: 9px 20px; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--line);
  background: #FFFFFF;
}
.nav__mobile a {
  padding: 12px 0;
  color: var(--grey);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .btn { margin-top: 12px; }
.nav.open .nav__mobile { display: flex; }

/* ===============================================================
   SECTION 2: HERO
   =============================================================== */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 72px) 0 clamp(44px, 6vw, 76px);
  background:
    radial-gradient(820px 460px at 18% -6%, rgba(196, 149, 42, 0.08), transparent 60%),
    radial-gradient(640px 380px at 88% 8%, rgba(196, 149, 42, 0.04), transparent 55%),
    var(--black);
  border-bottom: 1px solid var(--line);
}
.hero__inner { max-width: 920px; }
.hero__pre {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero__headline {
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 16ch;
}
.hero__sub {
  font-size: clamp(1.02rem, 1.9vw, 1.22rem);
  color: var(--grey);
  font-weight: 400;
  max-width: 62ch;
  margin-bottom: 34px;
  line-height: 1.55;
}
.hero__sub-lead {
  color: var(--white);
  font-weight: 600;
}
.hero__stats {
  display: flex;
  gap: clamp(28px, 6vw, 64px);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}
.stat__label {
  color: var(--grey);
  font-size: 0.95rem;
  margin-top: 8px;
}
.hero__divider {
  width: 100%;
  max-width: 460px;
  height: 1px;
  margin: 0 0 30px;
  background: linear-gradient(90deg, var(--accent), rgba(196, 149, 42, 0));
}
.hero__cta { margin-bottom: 16px; }
.hero__note { color: var(--grey-2); font-size: 0.92rem; }

/* ===============================================================
   SECTION 3: TESTIMONIAL MARQUEE
   =============================================================== */
.marquee {
  overflow: hidden;
  padding: 44px 0;
  background: var(--black-2);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.quote {
  flex: 0 0 auto;
  width: 380px;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.quote__mark {
  color: var(--accent);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 0.5;
  display: block;
  height: 22px;
}
.quote__text { font-size: 0.98rem; color: var(--white); margin-bottom: 16px; }
.quote__name { font-size: 0.85rem; color: var(--grey-2); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ===============================================================
   SECTION 4: PROBLEM
   (Light statbar removed per V2 corrections.)
   =============================================================== */
.problem { padding: clamp(56px, 7vw, 84px) 0; border-bottom: 1px solid var(--line); }
.problem__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.problem__headline {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.problem__text p { color: var(--grey); margin-bottom: 18px; font-size: 1.08rem; }
.problem__hard {
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1.25rem !important;
}
.problem__graphic { display: flex; flex-direction: column; gap: 12px; }
.problem__graphic-card {
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-weight: 600;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 12px;
}
.problem__graphic-x { color: #E05a5a; font-size: 1.3rem; font-weight: 800; }
.problem__graphic-check { color: var(--accent); font-size: 1.2rem; font-weight: 800; }
.problem__graphic-card--ok {
  background: linear-gradient(135deg, rgba(196,149,42,0.1), rgba(196,149,42,0.03));
  border-color: var(--accent-dark);
  color: var(--white);
}

/* ===============================================================
   SECTION 6: WHAT'S INSIDE ACCORDION
   =============================================================== */
.inside { padding: clamp(56px, 7vw, 84px) 0; background: var(--black); }
.pathway {
  margin-bottom: 28px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-2);
}
.pathway:last-child { margin-bottom: 0; }
/* Distinct background tint per pathway so they read as separate sections */
.pathway--1 { background: linear-gradient(180deg, rgba(196,149,42,0.04), transparent 220px), var(--black-2); }
.pathway--2 { background: linear-gradient(180deg, rgba(110,168,216,0.04), transparent 220px), var(--black-2); }
.pathway--3 { background: linear-gradient(180deg, rgba(139,196,160,0.04), transparent 220px), var(--black-2); }

.pathway__head {
  margin-bottom: 20px;
  padding-left: 18px;
  position: relative;
}
.pathway__head::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: var(--accent);
}
.pathway__index {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.pathway__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.pathway__desc { color: var(--grey); font-style: italic; margin-top: 10px; max-width: 70ch; }
.pathway__summary {
  margin-top: 18px;
  text-align: right;
  color: var(--grey);
  font-size: 0.92rem;
}
.pathway__summary strong { color: var(--accent); font-weight: 700; }

.accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-2);
}
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item:last-child { border-bottom: none; }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s var(--ease);
}
.acc-trigger:hover { background: var(--black-3); }
.acc-trigger__title { font-size: 1.1rem; font-weight: 700; }
.acc-trigger__meta { color: var(--grey-2); font-weight: 400; font-size: 0.95rem; }
.acc-trigger__right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.acc-trigger__count {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(196,149,42,0.10);
  border: 1px solid rgba(196,149,42,0.25);
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.acc-trigger__icon {
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.acc-trigger__icon::before,
.acc-trigger__icon::after {
  content: "";
  position: absolute;
  background: var(--grey);
  transition: transform 0.25s var(--ease), background 0.2s var(--ease);
}
.acc-trigger__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc-trigger__icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.acc-trigger[aria-expanded="true"] .acc-trigger__icon::after { transform: scaleY(0); }
.acc-trigger[aria-expanded="true"] .acc-trigger__icon::before { background: var(--accent); }

.acc-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}
.acc-panel-inner { padding: 0 24px 24px; }
.tool-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  padding: 4px 24px 26px;
}
.tool-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--grey);
  font-size: 0.98rem;
  line-height: 1.4;
}
.tool-name { flex: 1; }

/* Type tag injected by script.js (calculator, template, script, etc.) */
.tool-tag {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid currentColor;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.92;
}
.tool-tag--template  { color: #3b82c4; }
.tool-tag--calculator{ color: var(--accent); }
.tool-tag--script    { color: #3a9960; }
.tool-tag--checklist { color: #8b6cbf; }
.tool-tag--framework { color: #c0753a; }
.tool-tag--tracker   { color: #2d9494; }

/* FAQ uses the same accordion, single-column text panels */
.accordion--faq .acc-panel-inner { padding: 0 24px 22px; }
.accordion--faq .acc-panel p { color: var(--grey); padding: 0 24px 24px; }

/* ===============================================================
   SECTION 7: RESOURCE SHOWCASE
   =============================================================== */
.showcase { padding: clamp(56px, 7vw, 84px) 0; background: var(--black-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.rcard {
  display: grid;
  grid-template-columns: 128px 1fr;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.rcard:hover {
  transform: scale(1.02);
  border-color: var(--line-2);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}
.rcard__img {
  grid-row: 1 / span 2;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.rcard__img svg {
  width: 44px; height: 44px;
  color: var(--accent);
}
.rcard__title { font-size: 1.08rem; font-weight: 700; padding: 22px 22px 0; }
.rcard__desc { color: var(--grey); font-size: 0.92rem; padding: 8px 22px 22px; }

/* ===============================================================
   SECTION 8: WHO IT'S FOR
   =============================================================== */
.who { padding: clamp(56px, 7vw, 84px) 0; }
.who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.who__card {
  background: linear-gradient(180deg, rgba(196, 149, 42, 0.04), transparent 120px), var(--black-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.who__num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 14px;
}
.who__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; line-height: 1.25; }
.who__card p { color: var(--grey); font-size: 0.98rem; }

/* ===============================================================
   SECTION 9: WHAT CHANGES
   =============================================================== */
.changes { padding: clamp(56px, 7vw, 84px) 0; background: var(--black-2); border-top: 1px solid var(--line); }
.changes__list { display: flex; flex-direction: column; gap: 32px; }
.change {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.change--reverse .change__img { order: 2; }
.change__img {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(196,149,42,0.08), transparent 60%),
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px) 0 0 / 100% 28px,
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px) 0 0 / 28px 100%,
    var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Faint wireframe to suggest the tool screenshot that will replace this */
.change__img::before {
  content: "";
  position: absolute;
  left: 12%; right: 12%; top: 16%;
  height: 14px;
  border-radius: 4px;
  background: rgba(196,149,42,0.15);
  box-shadow:
    0 28px 0 -2px rgba(0,0,0,0.06),
    0 50px 0 -2px rgba(0,0,0,0.06),
    0 72px 0 -2px rgba(0,0,0,0.06);
}
.change__img span {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.75);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(196,149,42,0.3);
}
.change__text h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.change__text p { color: var(--grey); font-size: 1.05rem; }

/* ===============================================================
   SECTION 10: FOUNDER STORY
   =============================================================== */
.founder {
  padding: clamp(56px, 7vw, 84px) 0;
  background:
    radial-gradient(760px 460px at 80% 0%, rgba(196,149,42,0.06), transparent 62%),
    linear-gradient(180deg, rgba(196,149,42,0.03), transparent 40%),
    var(--black);
  border-top: 1px solid var(--line);
}
.founder__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.founder__photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: linear-gradient(135deg, var(--black-3), var(--black-2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100px;
}
.founder__photo span {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.founder__quote {
  font-family: Georgia, 'Times New Roman', 'Iowan Old Style', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin-bottom: 32px;
  padding-top: 40px;
  position: relative;
}
.founder__quote::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  left: -6px;
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}
.founder__attr {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.4;
  padding-top: 20px;
  position: relative;
}
.founder__attr::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--accent);
}
.founder__attr strong { color: var(--accent); }
.founder__bio { color: var(--grey-2); font-size: 0.95rem; max-width: 70ch; }

/* ===============================================================
   SECTION 11: RESOURCE VAULT CATEGORIES
   =============================================================== */
.vault { padding: clamp(56px, 7vw, 84px) 0; background: var(--black-2); border-top: 1px solid var(--line); }
.vault__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.vcard {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease);
}
.vcard:hover {
  transform: translateY(-3px);
  border-color: var(--accent-dark);
  background: linear-gradient(180deg, rgba(196,149,42,0.06), transparent), var(--black);
}
.vcard__icon { color: var(--accent); font-size: 1.1rem; display: block; margin-bottom: 14px; }
.vcard h3 { font-size: 1.02rem; font-weight: 700; line-height: 1.25; margin-bottom: 8px; }
.vcard__count { color: var(--grey-2); font-size: 0.85rem; font-weight: 600; }

/* ===============================================================
   SECTION 12: PRICING
   =============================================================== */
.pricing { padding: clamp(56px, 7vw, 84px) 0; background: var(--black); }
.pcard {
  max-width: 560px;
  margin: 0 auto;
  background:
    radial-gradient(500px 300px at 50% -20%, rgba(196,149,42,0.06), transparent 60%),
    var(--black-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 56px);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.06), 0 0 0 1px rgba(196,149,42,0.1), 0 0 60px rgba(196,149,42,0.04);
}
.pcard__brand { font-size: 1.8rem; font-weight: 900; color: var(--accent); }
.pcard__badge {
  display: inline-block;
  margin: 20px 0 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196,149,42,0.10);
  border: 1px solid rgba(196,149,42,0.25);
  padding: 6px 14px;
  border-radius: 999px;
}
.pcard__name {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 6px;
}
.pcard__price {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 16px 0 28px;
}
.pcard__cta { width: 100%; max-width: 320px; }
.pcard__list {
  text-align: left;
  margin: 34px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pcard__list li {
  position: relative;
  padding-left: 34px;
  color: var(--white);
  font-size: 0.98rem;
}
.pcard__list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: rgba(196,149,42,0.10);
  border: 1px solid var(--accent-dark);
  color: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}
.pcard__secure { color: var(--grey-2); font-size: 0.9rem; margin-bottom: 22px; }
.pcard__pay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pcard__pay span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 14px;
  background: var(--black);
}

/* ===============================================================
   SECTION 13: FAQ
   =============================================================== */
.faq { padding: clamp(56px, 7vw, 84px) 0; background: var(--black); border-top: 1px solid var(--line); }
.faq .acc-trigger__title { font-size: 1.05rem; }
.faq__cta { text-align: center; margin-top: 44px; }

/* ===============================================================
   SECTION 14: FOOTER
   =============================================================== */
.footer { background: var(--black-2); border-top: 1px solid var(--line); padding-top: 56px; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 44px;
}
.footer__logo { font-size: 1.6rem; font-weight: 900; color: var(--white); }
.footer__tag { color: var(--accent); font-weight: 600; margin-top: 8px; font-style: italic; }
.footer__links, .footer__social { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a, .footer__social a { color: var(--grey); font-size: 0.95rem; transition: color 0.15s var(--ease); }
.footer__links a:hover, .footer__social a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 22px 24px;
  text-align: center;
}
.footer__bottom p { color: var(--grey-2); font-size: 0.85rem; max-width: var(--maxw); margin: 0 auto; }

/* ===============================================================
   RESPONSIVE
   =============================================================== */
@media (max-width: 1024px) {
  .showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .vault__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__toggle { display: flex; }

  .who__grid { grid-template-columns: 1fr; }
  .problem__inner { grid-template-columns: 1fr; }
  .founder__inner { grid-template-columns: 1fr; }
  .founder__photo { position: static; max-width: 220px; }

  .change { grid-template-columns: 1fr; gap: 18px; }
  .change--reverse .change__img { order: 0; }
  .change__img { aspect-ratio: 16 / 9; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  /* Stats stack vertically on mobile */
  .hero__stats { flex-direction: column; gap: 20px; }
  .statbar__inner { flex-direction: column; gap: 36px; }

  .vault__grid { grid-template-columns: repeat(2, 1fr); }

  /* Tool lists single column on small screens */
  .tool-list { grid-template-columns: 1fr; padding: 4px 20px 22px; }

  .acc-trigger { padding: 18px 18px; gap: 12px; }
  .acc-trigger__title { font-size: 1rem; }
  .acc-trigger__meta { display: block; margin-top: 2px; }

  .pathway__desc { padding-left: 0; }
  .pathway__title::before { display: none; }

  /* Resource grid stacks to a single column on mobile */
  .showcase__grid { grid-template-columns: 1fr; }
  .rcard { grid-template-columns: 92px 1fr; }
  .rcard__img svg { width: 36px; height: 36px; }
  .pathway { padding: 20px 16px; }
  .pathway__summary { text-align: left; }

  .footer__inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 420px) {
  .quote { width: 280px; }
  .vault__grid { grid-template-columns: 1fr; }
}

/* ===============================================================
   AUTH MODAL (login / signup)
   =============================================================== */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.auth-modal-overlay.visible {
  opacity: 1;
}
.auth-modal {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.2s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.auth-modal-overlay.visible .auth-modal {
  transform: translateY(0);
}
.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #9CA3AF;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.auth-close:hover {
  color: #1A1B1E;
}
.auth-logo {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  color: #1A1B1E;
}
.auth-logo sup {
  color: #C4952A;
  font-size: 16px;
}
.auth-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #1A1B1E;
  margin-bottom: 4px;
}
.auth-subtitle {
  text-align: center;
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 32px;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.auth-field input {
  width: 100%;
  padding: 14px 16px;
  background: #F7F8FA;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  color: #1A1B1E;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.auth-field input:focus {
  outline: none;
  border-color: #C4952A;
}
.auth-field input::placeholder {
  color: #9CA3AF;
}
.auth-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #E74C3C;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
}
.auth-submit {
  width: 100%;
  padding: 16px;
  background: #C4952A;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.auth-submit:hover {
  filter: brightness(1.1);
}
.auth-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.auth-toggle {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #6B7280;
}
.auth-toggle-btn {
  background: none;
  border: none;
  color: #C4952A;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  margin-left: 4px;
}
.auth-toggle-btn:hover {
  text-decoration: underline;
}

/* Success state */
.auth-success {
  text-align: center;
  padding: 20px 0;
}
.auth-success .checkmark {
  width: 48px;
  height: 48px;
  background: rgba(76, 175, 80, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #4CAF50;
}
.auth-success p {
  color: #6B7280;
  font-size: 14px;
}

@media (max-width: 480px) {
  .auth-modal {
    margin: 16px;
    padding: 32px 24px;
  }
}
