/* ==========================================================================
   Per-section styles
   ========================================================================== */

/* ---- HERO --------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--sp-9) var(--sp-5);
  background: var(--bg-dark);
  color: var(--fg-on-dark-1);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.hero::before {
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(closest-side, rgba(0, 117, 238, .28), transparent 70%);
  filter: blur(20px);
}

.hero::after {
  bottom: -30%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(closest-side, rgba(0, 176, 149, .22), transparent 70%);
  filter: blur(30px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--sp-7);
  align-items: center;
}

.hero-h1 {
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(28px, 3.55vw, 50px);
  line-height: var(--lh-tight);
  letter-spacing: -0.025em;
  color: var(--fg-on-dark-1);
  margin: 0 0 var(--sp-5);
}

.hero-h1-line {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 340px) {
  .hero-h1-line { white-space: normal; }
}

#typewriter {
  display: inline-block;
  background: var(--aiu-gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

#typewriter::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: var(--aiu-cyan);
  -webkit-text-fill-color: var(--aiu-cyan);
  animation: tw-blink 1s steps(1) infinite;
}

@keyframes tw-blink {
  50% { opacity: 0; }
}

.hero-subline {
  max-width: 560px;
  margin: 0 0 var(--sp-5);
  font-family: var(--ff-body);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--fg-on-dark-2);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin: 0 0 var(--sp-6);
  padding: 0;
  list-style: none;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: flex-start;
}

.hero-cta .btn-meta {
  color: var(--fg-on-dark-2);
}

/* ---- HERO video --------------------------------------------------- */
.hero-video {
  position: relative;
}

.hero-video-placeholder {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .55);
  aspect-ratio: 600 / 380;
  background: var(--bg-card-dark);
}

.hero-video-placeholder svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- HERO responsive ----------------------------------------------- */
@media (max-width: 920px) {
  .hero {
    padding: var(--sp-8) var(--sp-5);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .hero-content {
    order: 1;
    text-align: center;
  }

  .hero-subline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-cta {
    align-items: center;
  }

  .hero-video {
    order: 2;
  }
}

@media (max-width: 600px) {
  .hero-h1 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .hero-subline {
    font-size: var(--fs-body);
  }
}

/* ==========================================================================
   Shared section heading helpers
   ========================================================================== */

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-7);
}

.section-head .section-lead {
  margin-top: var(--sp-4);
  color: var(--fg-on-light-2);
}

/* ==========================================================================
   CO DOSTANEŠ — 3 pilíře
   ========================================================================== */

.pillars {
  background: var(--bg-canvas);
  padding: var(--sp-9) var(--sp-5);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  padding: 0;
  list-style: none;
  counter-reset: pillar;
}

.pillar-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: var(--sh-xs);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}

.pillar-step {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pillar-step-1 { background: rgba(0, 117, 238, .10); color: var(--aiu-blue); }
.pillar-step-2 { background: rgba(0, 148, 191, .10); color: var(--aiu-cyan); }
.pillar-step-3 { background: rgba(0, 176, 149, .10); color: var(--aiu-teal); }

.pillar-card::before {
  counter-increment: pillar;
  content: counter(pillar, decimal-leading-zero);
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-extrabold);
  background: var(--aiu-gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.18;
  line-height: 1;
}

.pillar-title {
  margin-top: var(--sp-2);
}

.pillar-body {
  margin: 0;
  color: var(--fg-on-light-2);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.pillar-body strong {
  color: var(--fg-on-light-1);
  font-weight: var(--fw-semibold);
}

@media (max-width: 920px) {
  .pillars-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}

/* ==========================================================================
   JAK VYTĚŽÍŠ TRIAL — timeline
   ========================================================================== */

.section-inner-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg,
    var(--aiu-blue) 0%,
    var(--aiu-cyan) 50%,
    var(--aiu-teal) 100%);
  opacity: 0.32;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-7);
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--aiu-gradient);
  color: var(--aiu-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h4);
  box-shadow: var(--sh-glow);
}

.timeline-content {
  padding-top: 6px;
}

.timeline-when {
  margin: 0 0 var(--sp-2);
  font-family: var(--ff-display);
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aiu-blue);
}

.timeline-title {
  margin: 0 0 var(--sp-3);
}

.timeline-body {
  margin: 0;
  color: var(--fg-on-light-2);
  line-height: var(--lh-body);
}

.timeline-aha {
  margin: var(--sp-3) 0 0;
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  color: var(--aiu-teal);
  font-size: var(--fs-body);
}

@media (max-width: 600px) {
  .timeline-step {
    grid-template-columns: 40px 1fr;
    gap: var(--sp-4);
  }
  .timeline::before { left: 19px; }
  .timeline-marker { width: 40px; height: 40px; font-size: var(--fs-body); }
}

/* ==========================================================================
   KAŽDÝ TÝDEN TĚ POSUNEME
   ========================================================================== */

.weekly {
  background: var(--bg-canvas);
  padding: var(--sp-9) var(--sp-5);
}

.weekly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  align-items: stretch;
  padding: 0;
  list-style: none;
}

.weekly-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.weekly-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.weekly-card-feature {
  background: var(--bg-dark);
  color: var(--fg-on-dark-1);
  border-color: transparent;
  box-shadow: var(--sh-lg);
  transform: translateY(-12px);
}

.weekly-card-feature::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-md);
  padding: 1px;
  background: var(--aiu-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.weekly-card-feature:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 56px rgba(0, 117, 238, .28);
}

.weekly-badge {
  position: absolute;
  top: calc(var(--sp-5) * -1);
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: var(--aiu-gradient-h);
  color: var(--aiu-white);
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--sh-glow);
  white-space: nowrap;
}

.weekly-frequency {
  margin: 0;
  font-family: var(--ff-display);
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aiu-blue);
}

.weekly-card-feature .weekly-frequency {
  color: var(--aiu-cyan);
}

.weekly-title {
  margin: 0;
}

.weekly-card-feature .weekly-title {
  color: var(--fg-on-dark-1);
}

.weekly-body {
  margin: 0;
  color: var(--fg-on-light-2);
  line-height: var(--lh-body);
}

.weekly-card-feature .weekly-body {
  color: var(--fg-on-dark-2);
}

.weekly-body strong {
  color: var(--fg-on-light-1);
  font-weight: var(--fw-semibold);
}

.weekly-card-feature .weekly-body strong {
  color: var(--fg-on-dark-1);
}

@media (max-width: 920px) {
  .weekly-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  .weekly-card-feature {
    transform: none;
  }
  .weekly-card-feature:hover {
    transform: translateY(-3px);
  }
  .weekly-badge {
    top: calc(var(--sp-4) * -1);
  }
}

/* ==========================================================================
   TVÍ UČITELÉ — Albert + 5 ambasadorů
   ========================================================================== */

.teachers {
  background: var(--bg-dark);
  color: var(--fg-on-dark-1);
  padding: var(--sp-9) var(--sp-5);
  position: relative;
  overflow: hidden;
}

.teachers::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(closest-side, rgba(0, 117, 238, .18), transparent 70%);
  pointer-events: none;
}

.teachers .section-inner { position: relative; }

/* ---- Albert hero card ---------------------------------------------- */
.albert-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-7);
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  margin-bottom: var(--sp-8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.albert-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,117,238,.5), rgba(0,176,149,.4), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.albert-avatar {
  width: 200px;
  height: 200px;
  justify-self: center;
}

.albert-avatar svg { width: 100%; height: 100%; display: block; }

.albert-tag {
  margin: 0 0 var(--sp-2);
  font-family: var(--ff-display);
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aiu-cyan);
}

.albert-name {
  margin: 0 0 var(--sp-3);
  background: var(--aiu-gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.albert-intro {
  margin: 0 0 var(--sp-4);
  color: var(--fg-on-dark-1);
  font-size: var(--fs-lead);
  font-weight: var(--fw-medium);
}

.albert-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

.albert-features li {
  display: flex;
  gap: var(--sp-2);
  color: var(--fg-on-dark-2);
  line-height: var(--lh-snug);
}

.albert-check {
  flex-shrink: 0;
  color: var(--aiu-teal);
  font-weight: var(--fw-bold);
}

/* ---- Ambasadoři grid ----------------------------------------------- */
.ambassadors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
  padding: 0;
  list-style: none;
}

.ambassador-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  text-align: center;
  transition: transform var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.ambassador-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(0, 148, 191, .4);
}

.ambassador-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--sp-3);
  filter: grayscale(100%);
  transition: filter var(--dur-slow) var(--ease-out);
}

.ambassador-card:hover .ambassador-photo {
  filter: grayscale(0%);
}

.ambassador-placeholder { width: 100%; height: 100%; display: block; }

.ambassador-name {
  margin: 0 0 4px;
  font-family: var(--ff-display);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--fg-on-dark-1);
}

.ambassador-role {
  margin: 0 0 var(--sp-2);
  font-size: var(--fs-small);
  color: var(--aiu-cyan);
  font-weight: var(--fw-medium);
}

.ambassador-quote {
  margin: 0;
  font-size: 13px;
  color: var(--fg-on-dark-2);
  font-style: italic;
  line-height: var(--lh-snug);
}

.ambassadors-note {
  text-align: center;
  margin-top: var(--sp-6);
  font-size: var(--fs-small);
  color: var(--fg-on-dark-3);
  font-style: italic;
}

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 920px) {
  .albert-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--sp-5);
  }
  .albert-features { grid-template-columns: 1fr; text-align: left; }
  .ambassadors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ambassadors-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   POZNÁŠ SE? — archetypy
   ========================================================================== */

.archetypes {
  background: var(--bg-canvas);
  padding: var(--sp-9) var(--sp-5);
}

.archetypes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  padding: 0;
  list-style: none;
}

.archetype-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  border-top-width: 4px;
  border-top-style: solid;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.archetype-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.archetype-card-1 { border-top-color: var(--aiu-blue); }
.archetype-card-2 { border-top-color: var(--aiu-cyan); }
.archetype-card-3 { border-top-color: var(--aiu-teal); }

.archetype-head {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.archetype-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-extrabold);
  color: var(--aiu-white);
  flex-shrink: 0;
}

.archetype-card-1 .archetype-avatar { background: linear-gradient(135deg, #0075EE, #0094BF); }
.archetype-card-2 .archetype-avatar { background: linear-gradient(135deg, #0094BF, #00B095); }
.archetype-card-3 .archetype-avatar { background: linear-gradient(135deg, #00B095, #0075EE); }

.archetype-name {
  margin: 0;
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--fg-on-light-1);
  line-height: var(--lh-snug);
}

.archetype-age {
  margin: 2px 0 0;
  font-size: var(--fs-small);
  color: var(--fg-on-light-2);
}

.archetype-hook {
  margin: 0;
  font-family: var(--ff-display);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--fg-on-light-1);
  line-height: var(--lh-snug);
}

.archetype-body {
  margin: 0;
  color: var(--fg-on-light-2);
  line-height: var(--lh-body);
}

.archetypes-cta {
  margin-top: var(--sp-7);
  text-align: center;
  font-family: var(--ff-display);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--fg-on-light-1);
}

@media (max-width: 920px) {
  .archetypes-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}

/* ==========================================================================
   CO AIU NENÍ — antiklaim
   ========================================================================== */

.anticlaims {
  background: var(--bg-light);
  padding: var(--sp-9) var(--sp-5);
}

.anticlaims-table {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.anticlaims-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  background: var(--bg-card);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid var(--border-light);
}

.anticlaims-not, .anticlaims-is {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-family: var(--ff-body);
  line-height: var(--lh-snug);
}

.anticlaims-not {
  color: var(--fg-on-light-2);
  text-decoration: line-through;
  text-decoration-color: rgba(232, 70, 91, .4);
}

.anticlaims-is {
  color: var(--fg-on-light-1);
  font-weight: var(--fw-medium);
}

.anticlaims-x, .anticlaims-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--fw-bold);
}

.anticlaims-x {
  background: rgba(232, 70, 91, .14);
  color: var(--fb-error);
}

.anticlaims-check {
  background: rgba(0, 176, 149, .14);
  color: var(--aiu-teal);
}

@media (max-width: 720px) {
  .anticlaims-row {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
  }
}

/* ==========================================================================
   FAQ — accordion
   ========================================================================== */

.faq {
  background: var(--bg-canvas);
  padding: var(--sp-9) var(--sp-5);
}

/* Accordion item styles jsou v components.css */

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
  background: var(--bg-dark);
  color: var(--fg-on-dark-1);
  padding: var(--sp-9) var(--sp-5);
  position: relative;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.final-cta::before {
  top: -20%;
  left: 20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(closest-side, rgba(0, 117, 238, .22), transparent 70%);
  filter: blur(40px);
}

.final-cta::after {
  bottom: -30%;
  right: 10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(0, 176, 149, .18), transparent 70%);
  filter: blur(50px);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  margin: 0 0 var(--sp-5);
  font-family: var(--ff-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--fg-on-dark-1);
}

.final-cta-lead {
  margin: 0 0 var(--sp-7);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--fg-on-dark-2);
}

.final-cta-lead strong {
  color: var(--fg-on-dark-1);
  font-weight: var(--fw-semibold);
}

.final-cta-action {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.final-cta-action .btn-meta {
  color: var(--fg-on-dark-2);
}

.final-cta-guarantee {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--fg-on-dark-3);
  font-family: var(--ff-body);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--bg-dark);
  color: var(--fg-on-dark-2);
  padding: var(--sp-8) var(--sp-5) var(--sp-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border-dark);
}

.footer-logo { display: block; margin-bottom: var(--sp-3); }

.footer-tagline {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--fg-on-dark-2);
  max-width: 320px;
}

.footer-heading {
  margin: 0 0 var(--sp-3);
  font-family: var(--ff-display);
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-on-dark-1);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-nav a {
  color: var(--fg-on-dark-2);
  font-size: var(--fs-small);
  transition: color var(--dur-base) var(--ease-out);
}

.footer-nav a:hover { color: var(--fg-on-dark-1); }

.footer-bottom {
  padding-top: var(--sp-5);
  text-align: center;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
}
