/* Neural Data Drive — premium dark theme */
:root {
  --bg: #07080c;
  --bg-elevated: #0e1118;
  --bg-panel: #131722;
  --bg-soft: #1a2030;
  --line: rgba(212, 168, 75, 0.18);
  --line-strong: rgba(212, 168, 75, 0.42);
  --text: #f3efe6;
  --text-muted: #a8b0c0;
  --gold: #d4a84b;
  --gold-soft: #e8c878;
  --teal: #5eead4;
  --teal-dim: rgba(94, 234, 212, 0.14);
  --danger: #f07178;
  --ok: #7dcea0;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 4px;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
  --header-h: 4.25rem;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(212, 168, 75, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 8%, rgba(94, 234, 212, 0.08), transparent 50%),
    linear-gradient(180deg, #090b10 0%, var(--bg) 40%, #05060a 100%);
  background-attachment: fixed;
}

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

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--teal);
}

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

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

ul, ol {
  color: var(--text-muted);
}

.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: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--gold);
  color: #111;
  padding: 0.6rem 1rem;
  font-weight: 700;
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 12, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 8, 12, 0.92);
}

.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  min-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.7rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid var(--gold);
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--teal);
  border-radius: 1px;
  transform: scale(0.55);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

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

.nav-cta {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line-strong);
  color: var(--gold-soft) !important;
  background: rgba(212, 168, 75, 0.08);
}

.nav-cta:hover {
  background: rgba(212, 168, 75, 0.18);
  color: var(--text) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0.55rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  background: var(--text);
  width: 100%;
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(10, 12, 18, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 0.35rem;
  }

  .site-nav[data-open="true"] {
    display: flex;
    animation: navIn 0.35s var(--ease);
  }

  .site-nav a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

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

@keyframes navIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8892f 100%);
  color: #120e06;
}

.btn-primary:hover {
  color: #120e06;
  filter: brightness(1.06);
}

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

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

.btn-teal {
  background: var(--teal-dim);
  border-color: rgba(94, 234, 212, 0.35);
  color: var(--teal);
}

/* Hero variants */
.hero-cinema {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-cinema__media {
  position: absolute;
  inset: 0;
}

.hero-cinema__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.85);
  animation: slowZoom 18s var(--ease) infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-cinema__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 12, 0.35) 0%, rgba(7, 8, 12, 0.55) 45%, rgba(7, 8, 12, 0.96) 100%),
    linear-gradient(90deg, rgba(7, 8, 12, 0.75) 0%, transparent 55%);
}

.hero-cinema__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0 4rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 1.25rem;
  max-width: 12ch;
  animation: rise 0.9s var(--ease) both;
}

.hero-line {
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin-bottom: 1.5rem;
  animation: rise 0.9s 0.1s var(--ease) both;
}

.hero-lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 36rem;
  color: #d5d9e4;
  margin-bottom: 2rem;
  animation: rise 0.9s 0.18s var(--ease) both;
}

.hero-actions {
  animation: rise 0.9s 0.28s var(--ease) both;
}

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

.page-hero {
  padding: 4.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 16ch;
}

.page-hero p {
  max-width: 40rem;
  font-size: 1.1rem;
}

.page-hero--media {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 0;
  padding: 0;
}

.page-hero--media .page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero--media .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38);
}

.page-hero--media .page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 6rem 0 3rem;
  background: linear-gradient(transparent, rgba(7, 8, 12, 0.85));
}

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

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

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

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

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

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

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(19, 23, 34, 0.65);
}

.proof-rail article {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-rail article:last-child {
  border-right: 0;
}

.proof-rail strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

.proof-rail span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .proof-rail {
    grid-template-columns: 1fr;
  }
  .proof-rail article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .proof-rail article:last-child {
    border-bottom: 0;
  }
}

/* Feature list (not cards for display) */
.benefit-list {
  display: grid;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-list .num {
  font-family: var(--font-display);
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 700;
  width: 2rem;
}

.benefit-list h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.feature-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--text);
  font-size: 0.9rem;
}

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

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

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

.item-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  height: 100%;
}

.item-link:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  color: inherit;
}

.item-link img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.item-link .body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item-link h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.item-link p {
  font-size: 0.95rem;
  flex: 1;
}

.meta {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Featured course band */
.featured-band {
  background:
    linear-gradient(120deg, rgba(212, 168, 75, 0.08), transparent 40%),
    var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.featured-band .split {
  gap: 2.5rem;
}

.featured-band img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
}

.module-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.module-list li {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.module-list strong {
  color: var(--text);
  min-width: 5.5rem;
  font-family: var(--font-display);
}

/* 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-panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-tier.is-featured {
  border-color: var(--line-strong);
  background:
    linear-gradient(165deg, rgba(212, 168, 75, 0.12), transparent 45%),
    var(--bg-soft);
  transform: translateY(-6px);
}

@media (max-width: 900px) {
  .price-tier.is-featured {
    transform: none;
  }
}

.price-tier h3 {
  font-size: 1.4rem;
}

.price-tier .amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-soft);
  margin: 0.75rem 0;
}

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

.price-tier ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  flex: 1;
}

.price-tier li {
  margin-bottom: 0.55rem;
}

.price-note {
  font-size: 0.9rem;
  margin-top: 2rem;
  max-width: 40rem;
}

/* Testimonials */
.quote-stack {
  display: grid;
  gap: 1.5rem;
}

.quote {
  border-left: 2px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.35rem;
}

.quote p {
  color: #d7dbe6;
  font-size: 1.05rem;
}

.quote footer {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.quote .stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.case-study {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.case-study h3 {
  font-size: 1.5rem;
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
}

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

.contact-panel {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.75rem;
}

.contact-panel h2 {
  font-size: 1.25rem;
}

.contact-panel dl {
  margin: 1.25rem 0 0;
}

.contact-panel dt {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  font-weight: 700;
}

.contact-panel dd {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.form-group .req {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font: inherit;
  border-radius: var(--radius);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.15);
}

.form-group textarea {
  min-height: 9rem;
  resize: vertical;
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.85rem;
  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 {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: none;
}

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

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

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 46rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--bg-panel);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-family: var(--font-display);
  list-style: none;
}

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

.faq-item[open] summary {
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item .answer {
  padding: 1rem 1.15rem 1.25rem;
}

/* Legal / prose */
.prose {
  max-width: 46rem;
}

.prose h2 {
  font-size: 1.45rem;
  margin-top: 2.5rem;
}

.prose h3 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 2rem;
  font-size: 0.92rem;
}

.prose th,
.prose td {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--bg-panel);
  color: var(--gold-soft);
  font-weight: 700;
}

.instructor {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.25rem;
  align-items: center;
  margin: 2rem 0;
  padding: 1.25rem;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.instructor img {
  width: 7rem;
  height: 7rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4.5rem 1.25rem;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(212, 168, 75, 0.16), transparent 70%),
    var(--bg-elevated);
  border-block: 1px solid var(--line);
}

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

.cta-band p {
  max-width: 32rem;
  margin: 0.75rem auto 1.75rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 36rem;
  margin-inline: auto;
  background: #121722;
  border: 1px solid var(--line-strong);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  animation: rise 0.45s var(--ease);
}

.cookie-banner p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

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

.cookie-actions .btn {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

/* 404 */
.error-page {
  min-height: calc(100vh - var(--header-h) - 12rem);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 9rem);
  line-height: 0.9;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #05060a;
  padding: 3.5rem 0 0;
}

.footer-grid {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.8fr) 1.1fr;
  gap: 2rem;
}

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

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-tag {
  font-size: 0.92rem;
}

.footer-col h2,
.footer-contact h2 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

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

.footer-col a,
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-col a:hover,
.footer-contact a:hover {
  color: var(--teal);
}

.footer-contact p {
  font-size: 0.92rem;
}

.footer-base {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
}

.footer-base p {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  font-size: 0.85rem;
}

.inline-error {
  margin: 1rem auto;
  width: min(100% - 2.5rem, var(--max));
  padding: 0.85rem 1rem;
  background: rgba(240, 113, 120, 0.12);
  border: 1px solid rgba(240, 113, 120, 0.35);
  color: var(--danger);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.article-body {
  max-width: 42rem;
}

.article-body h2 {
  margin-top: 2.25rem;
}

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

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

.outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

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

.outcomes li {
  padding: 1rem;
  background: var(--bg-panel);
  border-left: 2px solid var(--teal);
  color: var(--text-muted);
}

.timeline {
  display: grid;
  gap: 0;
  margin: 2rem 0;
}

.timeline article {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline .when {
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 700;
}
