/* App Platform Nest — premium dark theme */
:root {
  --bg-deep: #07080b;
  --bg: #0c0e12;
  --bg-elevated: #14171f;
  --bg-soft: #1a1e28;
  --line: rgba(201, 169, 98, 0.18);
  --line-strong: rgba(201, 169, 98, 0.35);
  --text: #f3efe6;
  --text-muted: #a39e93;
  --text-dim: #6f6a61;
  --gold: #c9a962;
  --gold-bright: #e0c57a;
  --gold-deep: #8a7140;
  --accent: #5b8f8a;
  --danger: #c97a6a;
  --success: #6aad7d;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-display: "Syne", sans-serif;
  --font-body: "Sora", sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201, 169, 98, 0.08), transparent 55%),
    radial-gradient(900px 500px at -10% 30%, rgba(91, 143, 138, 0.07), transparent 50%),
    var(--bg-deep);
  min-height: 100vh;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--gold-bright);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.wide {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 11, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand:hover {
  color: var(--gold-bright);
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--gold);
  opacity: 0.85;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.25rem;
}

.nav-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  color: var(--gold) !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold-bright) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .nav-cta {
    margin-top: 0.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--bg-deep);
}

.btn-primary:hover {
  color: var(--bg-deep);
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero variants */
.hero-editorial {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
}

.hero-editorial .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 0 4.5rem clamp(1.25rem, 5vw, 4rem);
  width: min(100%, 620px);
  margin-left: auto;
  margin-right: 2rem;
}

.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.hero-lead {
  font-size: 1.08rem;
  max-width: 34ch;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-deep) 0%, transparent 35%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.35), transparent 40%);
  pointer-events: none;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--text);
}

.hero-meta span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .hero-editorial {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-editorial .hero-copy {
    margin: 0;
    width: min(100% - 2.5rem, var(--max));
    margin-inline: auto;
    padding: 3rem 0 2rem;
  }

  .hero-visual {
    min-height: 320px;
    order: -1;
  }

  .hero-visual::after {
    background: linear-gradient(0deg, var(--bg-deep), transparent 45%);
  }
}

/* Page heroes (inner) */
.page-hero {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.page-hero.with-media {
  padding: 0;
  border: 0;
}

.page-hero.with-media .page-hero-media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.page-hero.with-media .page-hero-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.8);
}

.page-hero.with-media .page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 18ch;
}

.page-hero .lede {
  max-width: 48ch;
  font-size: 1.05rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-label {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  max-width: 18ch;
}

.section-intro {
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Trust strip */
.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(20, 23, 31, 0.65);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.trust-grid span {
  color: var(--text-dim);
  font-size: 0.88rem;
}

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

/* Feature / benefit list — not cards by default */
.benefit-rail {
  display: grid;
  gap: 0;
}

.benefit-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s var(--ease) forwards;
}

.benefit-item:nth-child(2) { animation-delay: 0.1s; }
.benefit-item:nth-child(3) { animation-delay: 0.2s; }
.benefit-item:nth-child(4) { animation-delay: 0.3s; }

.benefit-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-deep);
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Course / content tiles — interaction containers */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.tile {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.tile:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.tile-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.tile:hover .tile-media img {
  transform: scale(1.04);
}

.tile-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.tile-body h3 {
  font-size: 1.15rem;
  margin: 0;
}

.tile-body h3 a {
  color: var(--text);
}

.tile-meta {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.tile-body p {
  font-size: 0.92rem;
  flex: 1;
}

.tile-link {
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Featured deep dive */
.featured-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
}

.featured-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.featured-copy {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 850px) {
  .featured-panel {
    grid-template-columns: 1fr;
  }

  .featured-panel img {
    min-height: 240px;
  }
}

/* Quote / testimonials */
.quote-stack {
  display: grid;
  gap: 1.75rem;
}

.quote {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.quote:last-child {
  border-bottom: 1px solid var(--line);
}

.quote blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.7;
}

.quote cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.quote-rating {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

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

.price-tier {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.price-tier.is-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201, 169, 98, 0.08), var(--bg-elevated) 40%);
}

.price-tier h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--text);
  margin: 1rem 0 0.35rem;
}

.price-amount span {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-family: var(--font-body);
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.price-tier ul {
  margin: 0 0 2rem;
  flex: 1;
}

.price-tier li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.price-tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
}

.price-disclaimer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Forms */
.form-shell {
  max-width: 560px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.82rem;
  margin-top: 0.35rem;
}

.form-group.has-error .field-error {
  display: block;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--danger);
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.form-status.is-success {
  display: block;
  background: rgba(106, 173, 125, 0.12);
  border: 1px solid rgba(106, 173, 125, 0.35);
  color: var(--success);
}

.form-status.is-error {
  display: block;
  background: rgba(201, 122, 106, 0.12);
  border: 1px solid rgba(201, 122, 106, 0.35);
  color: var(--danger);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-details {
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  height: fit-content;
}

.contact-details h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-details address {
  font-style: normal;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.contact-details p {
  margin-bottom: 0.65rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding-bottom: 1.15rem;
  margin: 0;
}

/* Legal */
.legal-content {
  max-width: 720px;
  padding: 3rem 0 5rem;
}

.legal-content h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.legal-content .updated {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 2rem;
  font-size: 0.88rem;
}

.legal-content th,
.legal-content td {
  border: 1px solid var(--line);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: var(--bg-elevated);
  color: var(--text);
  font-weight: 600;
}

/* Modules list */
.module-list {
  counter-reset: mod;
}

.module-list li {
  counter-increment: mod;
  padding: 1.25rem 0 1.25rem 3.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.module-list li::before {
  content: counter(mod, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.25rem;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
}

.module-list h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

/* Instructor */
.instructor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}

.instructor img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
}

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

/* Blog article */
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.article-body .article-meta {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.article-cover {
  margin: 0 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.article-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.article-body h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
}

/* 404 */
.error-page {
  min-height: calc(100vh - var(--header-h) - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-page h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--gold);
  margin-bottom: 0.25rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(12, 14, 18, 0.96);
  border-top: 1px solid var(--line-strong);
  padding: 1.25rem 1.5rem;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.inline-error {
  background: rgba(201, 122, 106, 0.12);
  border: 1px solid rgba(201, 122, 106, 0.35);
  color: var(--danger);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin: 1rem 0;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

.footer-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.footer-brand {
  margin-bottom: 2.5rem;
  max-width: 42ch;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-heading {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col li + li {
  margin-top: 0.45rem;
}

.footer-address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.footer-base p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-dim);
}

@media (max-width: 800px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Case study blocks */
.case-block {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.case-block h3 {
  font-size: 1.4rem;
}

.outcome-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

.outcome-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.outcome-row span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  text-align: center;
  background:
    linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.05)),
    var(--bg);
  border-block: 1px solid var(--line);
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 16ch;
  margin-inline: auto;
}

.cta-band p {
  max-width: 42ch;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

/* Checklist */
.check-list li {
  padding: 0.5rem 0 0.5rem 1.4rem;
  position: relative;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 8px;
  height: 2px;
  background: var(--gold);
}
