/* Networkinginnovation — minimalist premium theme */
:root {
  --bg: #f8f7f4;
  --bg-elevated: #ffffff;
  --ink: #1a1f24;
  --ink-soft: #4a5560;
  --line: #e2e0da;
  --accent: #1b3a4b;
  --accent-hover: #152e3c;
  --accent-soft: #e8f0f2;
  --mist: #d4dde2;
  --success: #2d6a4f;
  --error: #9b2c2c;
  --radius: 2px;
  --shadow: 0 12px 40px rgba(26, 31, 36, 0.06);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Figtree", "Helvetica Neue", sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --max: 1120px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(232, 240, 242, 0.9), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(212, 221, 226, 0.35), transparent 50%),
    var(--bg);
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); }

p { margin: 0 0 var(--space-sm); color: var(--ink-soft); }

.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(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: var(--space-sm);
  top: var(--space-sm);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(248, 247, 244, 0.96);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

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

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0.3rem;
  border: 1.5px solid #e8f0f2;
  border-radius: 1px;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg) translate(-1px, -1px);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.site-nav .nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-nav .nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

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

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

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

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    text-align: center;
    margin-top: var(--space-sm);
    border: 0;
  }
}

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

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--mist);
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

/* Hero — asymmetric split, brand-forward */
.hero {
  padding: var(--space-xl) 0 var(--space-lg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg);
  align-items: end;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: rise 0.7s ease 0.1s forwards;
}

.hero h1 {
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: rise 0.7s ease 0.2s forwards;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 34rem;
  opacity: 0;
  animation: rise 0.7s ease 0.35s forwards;
}

.hero-actions {
  opacity: 0;
  animation: rise 0.7s ease 0.5s forwards;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  opacity: 0;
  animation: fade-in 1s ease 0.3s forwards;
}

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

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

  .hero-visual img { min-height: 280px; }
}

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

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
}

.section-tight {
  padding: var(--space-lg) 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: var(--space-lg);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

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

/* Benefit list — not cards */
.benefit-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.benefit-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.benefit-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--mist);
}

.benefit-item h3 { margin-bottom: 0.35rem; }
.benefit-item p { margin: 0; }

/* Course / blog previews — interaction containers */
.item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

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

.item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.item-link:hover {
  border-color: var(--mist);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: inherit;
}

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

.item-body {
  padding: var(--space-md);
}

.item-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.item-body h3 {
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.item-body p {
  margin: 0;
  font-size: 0.95rem;
}

/* Social proof strip */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}

.proof-item span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

@media (max-width: 700px) {
  .proof-strip { grid-template-columns: 1fr; gap: var(--space-md); }
}

/* Quotes */
.quote-block {
  max-width: 40rem;
  padding: var(--space-lg) 0;
}

.quote-block blockquote {
  margin: 0 0 var(--space-md);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.35;
  color: var(--ink);
  font-weight: 500;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

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

.quote-card {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--line);
}

.quote-card p {
  color: var(--ink);
  font-size: 1.05rem;
}

.quote-card .attr {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

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

/* CTA band */
.cta-band {
  background: var(--accent);
  color: #fff;
  padding: var(--space-xl) 0;
  margin-top: var(--space-lg);
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 32rem; }

.cta-band .btn-primary {
  background: #fff;
  color: var(--accent);
}

.cta-band .btn-primary:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.cta-band .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-band .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

/* Page hero (inner) */
.page-hero {
  padding: calc(var(--space-xl) * 0.7) 0 var(--space-lg);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { max-width: 18ch; }
.page-hero .lead { max-width: 38rem; font-size: 1.1rem; }

.page-hero-media {
  margin-top: var(--space-lg);
  max-height: 360px;
  overflow: hidden;
}

.page-hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

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

.price-tier {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.price-tier:hover {
  border-color: var(--mist);
  transform: translateY(-2px);
}

.price-tier.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg-elevated) 40%);
}

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

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--ink);
  margin: var(--space-sm) 0;
}

.price-amount span {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--ink-soft);
}

.price-tier ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  flex: 1;
}

.price-tier li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.price-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: var(--space-md);
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
}

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

.contact-form,
.form {
  display: grid;
  gap: var(--space-sm);
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--ink);
  transition: border-color 0.2s ease;
}

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

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

.form-field .error-msg {
  color: var(--error);
  font-size: 0.85rem;
  display: none;
}

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

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

.form-status {
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  display: none;
}

.form-status.is-success {
  display: block;
  background: #e8f5ef;
  color: var(--success);
  border: 1px solid #b7dfc9;
}

.form-status.is-error {
  display: block;
  background: #fce8e8;
  color: var(--error);
  border: 1px solid #f0b4b4;
}

.contact-aside {
  padding: var(--space-md);
  background: var(--accent-soft);
  border: 1px solid var(--mist);
}

.contact-aside h2 {
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
}

.contact-aside p { font-size: 0.95rem; }

.address-block {
  white-space: pre-wrap;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Legal */
.legal-content {
  max-width: 42rem;
  padding: var(--space-lg) 0 var(--space-xl);
}

.legal-content h2 {
  margin-top: var(--space-lg);
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: var(--space-md);
  font-size: 1.2rem;
}

.legal-content ul,
.legal-content ol {
  color: var(--ink-soft);
  padding-left: 1.25rem;
}

.legal-content li { margin-bottom: 0.4rem; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: var(--space-md) 0;
  overflow-x: auto;
  display: block;
}

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

.cookie-table th {
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 600;
}

/* Modules / FAQ */
.module-list {
  border-top: 1px solid var(--line);
}

.module {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--space-sm);
}

.module-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--mist);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: var(--space-sm) 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  padding: 0.5rem 0;
}

.faq-list details p {
  margin: 0.5rem 0 0.75rem;
}

/* Instructor */
.instructor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-md) 0;
}

.instructor img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}

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

/* Case study */
.case-study {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--line);
}

.case-study h3 { margin-bottom: var(--space-sm); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(26, 31, 36, 0.08);
  padding: var(--space-md);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

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

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

.cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.92rem;
}

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

.cookie-banner .script-error {
  width: 100%;
  color: var(--error);
  font-size: 0.85rem;
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-xl);
}

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

.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-tag {
  max-width: 22rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

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

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

.footer-heading {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.footer-col a:hover { color: #fff; }

.footer-address,
.footer-col p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-md);
  font-size: 0.85rem;
}

.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.4); }

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) 0;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
  color: var(--mist);
  margin-bottom: var(--space-sm);
}

/* Prose article */
.article {
  max-width: 42rem;
  margin: 0 auto;
  padding: var(--space-lg) 0 var(--space-xl);
}

.article-meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
}

.article-cover {
  margin: 0 0 var(--space-lg);
  overflow: hidden;
}

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

.article h2 {
  margin-top: var(--space-lg);
  font-size: 1.65rem;
}

.inline-error {
  padding: 0.75rem 1rem;
  background: #fce8e8;
  color: var(--error);
  border: 1px solid #f0b4b4;
  font-size: 0.9rem;
  margin: var(--space-sm) 0;
}

/* Outcomes list */
.outcomes {
  display: grid;
  gap: 0.75rem;
  margin: var(--space-md) 0;
}

.outcomes li {
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
}

.outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--accent);
  border-radius: 1px;
}

.outcomes {
  list-style: none;
  padding: 0;
}

/* Journey steps */
.journey {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.journey-step {
  display: grid;
  grid-template-columns: 1fr;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.journey-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

/* Reveal on scroll helper */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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