/* ==========================================================================
   CreatorLab Studios — Digital Presence Workbook
   styles.css  |  Hand-written CSS3. No frameworks, no build step.
   Brand colours sampled directly from the supplied playbook PDFs.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand gradient stops */
  --pink:   #E82AAE;
  --purple: #9137F0;
  --blue:   #2DA3F0;
  --cyan:   #25BFE4;
  --grad: linear-gradient(90deg, var(--pink) 0%, var(--purple) 42%, var(--blue) 78%, var(--cyan) 100%);

  /* Surfaces */
  --ink:      #0A0B10;
  --ink-soft: #12131B;
  --ink-line: rgba(255, 255, 255, .14);
  --paper:    #F5F4F0;
  --white:    #FFFFFF;

  /* Type */
  --text:      #14151C;
  --text-soft: #55565F;
  --text-mute: #7C7D86;
  --on-dark:      #F7F6F2;
  --on-dark-soft: #B7B8C2;

  --line: #E2DFD7;

  --wrap: 1160px;
  --gut: 24px;
  --radius: 4px;

  --font: "Archivo", "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow: 0 18px 46px rgba(10, 11, 16, .16);
  --shadow-lg: 0 30px 70px rgba(10, 11, 16, .30);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; border: 0; }
svg { display: block; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.022em;
  text-transform: uppercase;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 6.4vw, 4.35rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.1vw, 1.45rem); letter-spacing: -.01em; }
h4 { font-size: 1rem; letter-spacing: .01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
a:not([class]) {
  color: #8B2AC4;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:not([class]):hover { color: var(--pink); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }

strong, b { font-weight: 700; }

hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

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

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: 820px; }

.section { padding: clamp(60px, 8.5vw, 116px) 0; }
.section--tight { padding: clamp(46px, 6vw, 76px) 0; }

.section--dark {
  background-color: var(--ink);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.hero h1, .hero h2, .hero h3, .hero h4,
.cta-band h1, .cta-band h2, .cta-band h3 { color: var(--on-dark); }

/* The diagonal hairline texture used across the printed playbook */
.stripes::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, .045) 0 1px,
    transparent 1px 15px
  );
  pointer-events: none;
}
.stripes > * { position: relative; z-index: 1; }

.grad-bar {
  height: 6px;
  background: var(--grad);
  width: 100%;
}

.rule {
  width: 108px;
  height: 4px;
  background: var(--grad);
  border-radius: 2px;
  margin: 26px 0 0;
}
.rule--center { margin-inline: auto; }

.center { text-align: center; }
.lead {
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  color: var(--text-soft);
  max-width: 62ch;
}
.section--dark .lead,
.hero .lead,
.cta-band .lead { color: var(--on-dark-soft); }
.lead--center { margin-inline: auto; }

/* --------------------------------------------------------------------------
   4. Eyebrows, pills, section numbers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 20px;
}
.section--dark .eyebrow,
.hero .eyebrow,
.cta-band .eyebrow { color: var(--on-dark-soft); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 26px;
  background: rgba(255, 255, 255, .55);
}
.section--dark .pill,
.pill--dark {
  border-color: var(--ink-line);
  color: var(--on-dark);
  background: rgba(255, 255, 255, .04);
}

.pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
}

.snum {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.snum b { color: var(--pink); font-weight: 800; }
.section--dark .snum,
.hero .snum,
.cta-band .snum { color: var(--on-dark-soft); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: .795rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.15;
  cursor: pointer;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, opacity .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background-image: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px rgba(145, 55, 240, .30);
}
.btn--primary:hover { box-shadow: 0 18px 40px rgba(145, 55, 240, .42); }

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--purple); color: #6E2ECF; }

.section--dark .btn--ghost,
.hero .btn--ghost,
.cta-band .btn--ghost,
.btn--ghost-dark {
  border-color: var(--ink-line);
  color: var(--on-dark);
}
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.btn--ghost-dark:hover { border-color: var(--cyan); color: var(--cyan); }

.btn--sm { padding: 12px 22px; font-size: .72rem; }
.btn--block { display: flex; width: 100%; }

.btn-note {
  margin: 16px 0 0;
  font-size: .8rem;
  color: var(--text-mute);
  letter-spacing: .01em;
}
.section--dark .btn-note,
.hero .btn-note,
.cta-band .btn-note { color: var(--on-dark-soft); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   6. Header + navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 11, 16, .94);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.site-header .grad-bar { height: 4px; }

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  margin-right: auto;
  padding: 6px 0;
}
.brand img { height: 34px; width: auto; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--ink-line);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle .bars,
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle .bars { position: relative; }
.nav-toggle .bars::before,
.nav-toggle .bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after  { transform: translateY(-6px) rotate(-45deg); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: block;
  padding: 10px 14px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  border-radius: 6px;
  transition: color .16s ease, background-color .16s ease;
}
.nav-menu a:hover { color: #fff; background: rgba(255, 255, 255, .07); }
.nav-menu a[aria-current="page"] { color: #fff; }
.nav-menu a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 5px;
  border-radius: 2px;
  background: var(--grad);
}
.nav-cta { margin-left: 10px; }

@media (max-width: 900px) {
  .nav { min-height: 66px; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 12px var(--gut) 22px;
    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 14px 4px; font-size: .8rem; }
  .nav-menu a[aria-current="page"]::after { width: 42px; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  background-color: var(--ink);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 104px) 0 clamp(60px, 8vw, 108px);
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  right: -180px; bottom: -300px;
  background: radial-gradient(circle, rgba(145, 55, 240, .30) 0%, rgba(45, 163, 240, .10) 45%, transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.hero h1 { margin-bottom: 18px; }
.hero h1 .sub {
  display: block;
  margin-top: .18em;
  text-transform: none;
  font-weight: 700;
  font-size: .49em;
  letter-spacing: -.012em;
  color: var(--on-dark-soft);
}
.hero p { color: var(--on-dark-soft); max-width: 54ch; }
.hero .wrap--narrow p { max-width: none; }
.hero .hero-kicker {
  color: var(--on-dark);
  font-weight: 600;
  font-size: 1.06rem;
}

.hero-art { position: relative; }
.hero-art img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.6deg);
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 12px -14px -18px 22px;
  background: var(--grad);
  filter: blur(46px);
  opacity: .34;
  border-radius: 40px;
  z-index: -1;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 340px; margin: 6px auto 0; }
  .hero-art img { transform: none; }
}

/* --------------------------------------------------------------------------
   8. Marquee-ish value strip
   -------------------------------------------------------------------------- */
.strip {
  background: var(--ink-soft);
  color: var(--on-dark-soft);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 20px 0;
}
.strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.strip li { display: flex; align-items: center; gap: 10px; margin: 0; }
.strip li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
}

/* --------------------------------------------------------------------------
   9. Generic grids + cards
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #D3CFC5; }
.card:hover::before { opacity: 1; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: .95rem; margin-bottom: 0; }

.card .idx {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--pink);
  margin-bottom: 12px;
}

.card--dark {
  background: var(--ink-soft);
  border-color: rgba(255, 255, 255, .11);
  color: var(--on-dark);
}
.card--dark h3 { color: var(--on-dark); }
.card--dark p { color: var(--on-dark-soft); }
.card--dark:hover { border-color: rgba(255, 255, 255, .24); }

/* Checklist bullets styled like the workbook's checkbox rows */
.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.checks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 2px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  font-size: .97rem;
}
.checks li::before {
  content: "";
  flex: none;
  width: 15px; height: 15px;
  margin-top: 5px;
  border: 1.5px solid #B9B5AA;
  border-radius: 2px;
}
.section--dark .checks,
.section--dark .checks li,
.hero .checks,
.hero .checks li { border-color: rgba(255, 255, 255, .13); }
.section--dark .checks li::before,
.hero .checks li::before { border-color: rgba(255, 255, 255, .38); }

/* "From the lab" callout */
.lab {
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: 30px 30px 34px;
  position: relative;
  overflow: hidden;
}
.lab .kicker {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.lab p { color: var(--on-dark-soft); font-size: .98rem; }
.lab .rule { margin-top: 20px; width: 74px; height: 3px; }

/* --------------------------------------------------------------------------
   10. Two-column split blocks
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
}
.split--art-first .split-art { order: -1; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--art-first .split-art { order: 0; }
}

.split-art img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  background: #fff;
}
.section--dark .split-art img { border-color: rgba(255, 255, 255, .16); }

/* --------------------------------------------------------------------------
   11. Workbook page gallery
   -------------------------------------------------------------------------- */
.pages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
@media (max-width: 900px) { .pages { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .pages { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; } }

.pages figure { margin: 0; }
.pages img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 4px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .38);
  transition: transform .22s ease, box-shadow .22s ease;
  background: #fff;
}
.pages figure:hover img { transform: translateY(-5px); box-shadow: 0 24px 52px rgba(0, 0, 0, .5); }
.pages figcaption {
  margin-top: 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.pages figcaption b { color: var(--cyan); font-weight: 800; }

/* --------------------------------------------------------------------------
   12. Before / after
   -------------------------------------------------------------------------- */
.ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 800px) { .ba { grid-template-columns: 1fr; } }

.ba-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ba-card .tag {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
  display: block;
}
.ba-card q {
  font-size: clamp(1.22rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.015em;
  quotes: "“" "”";
}
.ba-card--after {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-dark);
}
.ba-card--after .tag { color: var(--cyan); }

.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--purple);
  font-weight: 800;
}
@media (max-width: 800px) { .ba-arrow { transform: rotate(90deg); padding: 4px 0; } }

/* --------------------------------------------------------------------------
   13. Steps / numbered timeline
   -------------------------------------------------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; }
.steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 22px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.steps li:first-child { border-top: 1px solid var(--line); }
.section--dark .steps li,
.hero .steps li { border-color: rgba(255, 255, 255, .13); }
.steps .n {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--pink);
  padding-top: 5px;
  text-transform: uppercase;
}
.steps h3 { margin-bottom: 6px; }
.steps p { font-size: .96rem; color: var(--text-soft); margin: 0; }
.section--dark .steps p,
.hero .steps p { color: var(--on-dark-soft); }

/* --------------------------------------------------------------------------
   14. Priority order blocks (BROKEN / MISSING / IMPROVE / GROW)
   -------------------------------------------------------------------------- */
.order { display: grid; gap: 0; border-top: 1px solid var(--line); }
.order div {
  display: grid;
  grid-template-columns: 54px 150px 1fr;
  gap: 18px;
  padding: 20px 2px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.order .num { font-size: .72rem; font-weight: 800; color: var(--pink); letter-spacing: .12em; }
.order .lbl {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.order p { font-size: .93rem; color: var(--text-soft); margin: 0; }
@media (max-width: 700px) {
  .order div { grid-template-columns: 40px 1fr; gap: 6px 14px; }
  .order p { grid-column: 2; }
}

/* --------------------------------------------------------------------------
   15. FAQ (details/summary — no JS required)
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--purple);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 40px 22px 0; color: var(--text-soft); font-size: .97rem; }

/* --------------------------------------------------------------------------
   16. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background-color: var(--ink);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(58px, 7.5vw, 100px) 0;
}
.cta-band h2 { color: var(--on-dark); }
.cta-band p { color: var(--on-dark-soft); }
.cta-band .price { color: var(--on-dark); }
.price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 6px 0 4px;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.price .cur { font-size: .46em; font-weight: 700; }
.price .note {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--on-dark-soft);
  padding: clamp(48px, 6vw, 74px) 0 28px;
  position: relative;
  overflow: hidden;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-grid--3 { grid-template-columns: 1.7fr 1fr 1.3fr; }
@media (max-width: 900px) { .footer-grid, .footer-grid--3 { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .footer-grid, .footer-grid--3 { grid-template-columns: 1fr; } }

.footer-grid img.footer-logo { height: 40px; width: auto; margin-bottom: 18px; }
.footer-grid h2 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--on-dark);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 11px; }
.footer-grid a { color: var(--on-dark-soft); text-decoration: none; transition: color .16s ease; }
.footer-grid a:hover { color: #fff; }

.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .745rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #7E7F8B;
}

/* --------------------------------------------------------------------------
   18. 404
   -------------------------------------------------------------------------- */
.err {
  min-height: 62vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.err .code {
  font-size: clamp(4.5rem, 16vw, 9rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.045em;
  margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   19. Reveal-on-scroll (progressive enhancement)
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   20. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .btn, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .section--dark, .hero, .cta-band { background: #fff !important; color: #000 !important; }
}
