/* ============================================================
   Compiled from assets/scss/main.scss
   Run: sass assets/scss/main.scss assets/css/main.css --watch
   ============================================================ */

/* ── Font Faces ─────────────────────────────────────────────── */

@font-face {
  font-family: 'BasierSquare';
  src: url('../fonts/BasierSquare-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'BasierSquare';
  src: url('../fonts/BasierSquare-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'BasierSquare';
  src: url('../fonts/BasierSquare-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'BasierSquare';
  src: url('../fonts/BasierSquare-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'BasierSquareMono';
  src: url('../fonts/BasierSquareMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'BasierSquareMono';
  src: url('../fonts/BasierSquareMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

/* ── Base Reset ─────────────────────────────────────────────── */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'BasierSquare', sans-serif;
  background-color: #ffffff;
  color: #0f172a;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input  { font-family: inherit; border: none; outline: none; }

/* ── Scroll Reveal ───────────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

[data-reveal="left"]             { transform: translateX(-32px); }
[data-reveal="left"].is-revealed  { transform: translateX(0); }

[data-reveal="right"]             { transform: translateX(32px); }
[data-reveal="right"].is-revealed  { transform: translateX(0); }

/* ── Animations ─────────────────────────────────────────────── */

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

.animate-fade-in { animation: fade-in 0.3s ease-out forwards; }

/* ── Header ─────────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background-color: #ffffffe3;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s;
}

.header.is-scrolled .header__logo { color: #0f172a; }

.header__btn {
  padding: 0.625rem 1.5rem;
  background-color: #000000;
  color: #ffffff;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background-color 0.2s;
}

.header__btn:hover { background-color: #1e293b; }

/* ── Hero ───────────────────────────────────────────────────── */

.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 5rem;
  background: linear-gradient(to right, #f97316, #c026d3, #1447e6);
  position: relative;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
    rgba(249, 115, 22, 0.4),
    rgba(192, 38, 211, 0.4),
    rgba(20, 71, 230, 0.4));
  pointer-events: none;
}

.hero__inner {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: #ffffff;
  color: #0f172a;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.hero__title {
  font-size: clamp(3rem, 6.5vw, 4.2rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  font-family: 'BasierSquare', sans-serif;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
  font-family: 'BasierSquareMono', monospace;
}

.hero__form { max-width: 36rem; }

.hero__form .form-row {
  display: flex;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero__form .form-row input[type="email"] {
  flex: 1;
  padding: 1rem 1.25rem;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9375rem;
}

.hero__form .form-row input[type="email"]::placeholder { color: #94a3b8; }

.hero__form .form-row button {
  padding: 1rem 1.5rem;
  background-color: #000000;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.hero__form .form-row button:hover { background-color: #1e293b; }

.hero__notes {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-top: 0.5rem;
}

.hero__note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'BasierSquareMono', monospace;
}

.hero__note--strong { color: #ffffff; font-weight: 500; }

.hero__visual {
  display: flex;
  justify-content: center;
}

/* ── Chat Mockup ─────────────────────────────────────────────── */

.chat-mockup {
  width: 100%;
  max-width: 28rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.chat-mockup__header {
  background: linear-gradient(to right, #6366f1, #a855f7);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-mockup__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.chat-mockup__name   { color: #ffffff; font-weight: 500; font-size: 0.9375rem; }
.chat-mockup__status { color: rgba(255, 255, 255, 0.8); font-size: 0.8125rem; }

.chat-mockup__messages {
  padding: 1.25rem;
  min-height: 20rem;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-mockup__msg { display: flex; }
.chat-mockup__msg--user { justify-content: flex-end; }
.chat-mockup__msg--bot  { justify-content: flex-start; }

.chat-mockup__bubble {
  max-width: 80%;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  border-radius: 1rem;
}

.chat-mockup__msg--user .chat-mockup__bubble {
  background-color: #6366f1;
  color: #ffffff;
  border-bottom-right-radius: 0.25rem;
}

.chat-mockup__msg--bot .chat-mockup__bubble {
  background-color: #ffffff;
  color: #1e293b;
  border-bottom-left-radius: 0.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.chat-mockup__input-row {
  padding: 1rem 1.25rem;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.chat-mockup__input-row input {
  flex: 1;
  padding: 0.625rem 1rem;
  background-color: #f1f5f9;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8;
  cursor: not-allowed;
}

.chat-mockup__input-row button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: #6366f1;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Timeline ────────────────────────────────────────────────── */

.timeline {
  padding: 7rem 1.5rem;
  background-color: #ffffff;
}

.timeline__header {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto 5rem;
}

.timeline__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-family: 'BasierSquare', sans-serif;
}

.timeline__subtitle {
  font-size: 0.875rem;
  color: #475569;
  font-family: 'BasierSquareMono', monospace;
}

.timeline__steps {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
}

.timeline__step {
  position: relative;
  margin-bottom: 6rem;
}

.timeline__step:last-child { margin-bottom: 0; }

.timeline__step-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.timeline__step-indicator { display: none; }

/* Steps 1 & 3 — visual left on desktop, text first on mobile */
.timeline__visual--left { order: 2; }
.timeline__text--right  { order: 1; }

/* Step 2 — natural order */
.timeline__text--left   {}
.timeline__visual--right {}

.timeline h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'BasierSquare', sans-serif;
}

.timeline p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-family: 'BasierSquareMono', monospace;
}

.timeline ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timeline ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #64748b;
  font-family: 'BasierSquareMono', monospace;
}

.timeline .dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Step Cards ──────────────────────────────────────────────── */

.step-card {
  width: 100%;
  max-width: 28rem;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid;
}

.step-card--1 { background: linear-gradient(to bottom right, #eef2ff, #faf5ff); border-color: #e0e7ff; }
.step-card--2 { background: linear-gradient(to bottom right, #faf5ff, #fdf2f8); border-color: #f3e8ff; }
.step-card--3 { background: linear-gradient(to bottom right, #fdf2f8, #eff6ff); border-color: #fce7f3; padding: 1.5rem; }

.step-card__inner {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

/* Step 1 card content */
.step-card__icon-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4f46e5;
}

.step-card__lines { flex: 1; }

.step-card__lines .line {
  height: 0.75rem;
  background-color: #e2e8f0;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.step-card__lines .line:first-child { width: 75%; }
.step-card__lines .line:last-child  { width: 50%; background-color: #f1f5f9; }

.step-card__content-lines .line {
  height: 0.5rem;
  background-color: #f1f5f9;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.step-card__content-lines .line:nth-child(2) { width: 83%; }
.step-card__content-lines .line:nth-child(3) { width: 66%; }

/* Step 2 card content */
.step-card__sparkle-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-card__sparkle-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #f3e8ff, #fce7f3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9333ea;
}

.step-card__dot-lines { display: flex; flex-direction: column; gap: 0.75rem; }

.step-card__dot-lines .dot-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-card__dot-lines .dot-line .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #c084fc;
  flex-shrink: 0;
}

.step-card__dot-lines .dot-line .bar {
  height: 0.5rem;
  background-color: #f1f5f9;
  border-radius: 0.25rem;
  flex: 1;
}

/* Step 3 mini-chat */
.step-card__chat-header {
  background: linear-gradient(to right, #6366f1, #a855f7);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-card__chat-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.step-card__chat-name { color: #ffffff; font-size: 0.875rem; font-weight: 500; }

.step-card__chat-body {
  background-color: #f8fafc;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-card__chat-body .bubble {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  max-width: 80%;
  line-height: 1.4;
}

.step-card__chat-body .bubble--user {
  background-color: #6366f1;
  color: #ffffff;
  border-radius: 0.5rem 0.5rem 0.125rem 0.5rem;
  align-self: flex-end;
}

.step-card__chat-body .bubble--bot {
  background-color: #ffffff;
  color: #1e293b;
  border-radius: 0.5rem 0.5rem 0.5rem 0.125rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  align-self: flex-start;
}

/* ── Use Cases ───────────────────────────────────────────────── */

.use-cases {
  padding: 7rem 1.5rem;
  background-color: #f8fafc;
}

.use-cases__header {
  text-align: center;
  margin-bottom: 4rem;
}

.use-cases__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'BasierSquare', sans-serif;
}

.use-cases__grid {
  display: grid;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.use-cases__card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.8rem;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.use-cases__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.use-cases__card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.use-cases__card-icon--indigo { color: #4f46e5; }
.use-cases__card-icon--purple { color: #9333ea; }
.use-cases__card-icon--pink   { color: #db2777; }

.use-cases__card-icon svg { stroke-width: 1; }

.use-cases__card-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.use-cases__card-items p {
  font-size: 0.9rem;
  color: #475569;
  font-family: 'BasierSquareMono', monospace;
}

/* ── CTA ─────────────────────────────────────────────────────── */

.cta {
  position: relative;
  padding: 0 1.5rem 6rem;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 50%,
    #615fff 50%,
    #ad46ff 75%,
    #f6339a 100%
  );
}

.cta__title-area {
  padding-top: 7rem;
  padding-bottom: 3rem;
  text-align: center;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #0f172b;
  font-family: 'BasierSquare', sans-serif;
}

.cta__chat {
  max-width: 80rem;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
}

.cta__form-area {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.cta__form-area form { margin-bottom: 1.5rem; }

.cta__form-area .form-row {
  display: flex;
  border-radius: 0.875rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta__form-area .form-row input[type="email"] {
  flex: 1;
  padding: 1rem 1.25rem;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9375rem;
}

.cta__form-area .form-row input[type="email"]::placeholder { color: #90a1b9; }

.cta__form-area .form-row button {
  padding: 1rem 1.5rem;
  background-color: #0f172b;
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.cta__form-area .form-row button:hover { background-color: #1e293b; }

.cta__note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-family: 'BasierSquareMono', monospace;
}

/* ── Animated Chat Loop ──────────────────────────────────────── */

.animated-chat {
  background-color: #f8fafc;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 56rem;
}

.animated-chat__messages {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 23.75rem;
  overflow: hidden;
}

.animated-chat__msg { display: flex; opacity: 0; }
.animated-chat__msg.is-visible { animation: fade-in 0.3s ease-out forwards; }
.animated-chat__msg--user { justify-content: flex-end; }
.animated-chat__msg--bot  { align-items: flex-start; gap: 0.75rem; }

.animated-chat__bot-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #615fff 0%, #ad46ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.animated-chat__bot-avatar span { color: #ffffff; font-size: 0.875rem; font-weight: 600; }

.animated-chat__bubble { padding: 0.75rem 1.25rem; font-size: 1rem; line-height: 1.5; }

.animated-chat__bubble--user {
  background-color: #615fff;
  color: #ffffff;
  border-radius: 1rem 1rem 0.375rem 1rem;
  max-width: 19.375rem;
}

.animated-chat__bubble--bot {
  background-color: #f1f5f9;
  color: #1d293d;
  border-radius: 1rem 1rem 1rem 0.375rem;
  max-width: 25rem;
}

/* ── CTA contact block ───────────────────────────────────────── */

.cta__contact {
  max-width: 42rem;
  margin: 3rem auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta__contact-email {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  font-family: 'BasierSquareMono', monospace;
}

.cta__contact-email:hover { color: #ffffff; }

.cta__contact-social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cta__contact-social a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.cta__contact-social a:hover { color: #ffffff; }

.cta__contact-copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'BasierSquareMono', monospace;
}

/* ── Footer ──────────────────────────────────────────────────── */

.footer {
  padding: 4rem 1.5rem;
  background-color: #000000;
}

.footer__inner { max-width: 80rem; margin: 0 auto; }

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__brand-name    { font-size: 1.125rem; font-weight: 500; color: #ffffff; margin-bottom: 0.25rem; }
.footer__brand-tagline { font-size: 0.875rem; color: #94a3b8; }
.footer__contact-label { font-size: 0.875rem; color: #94a3b8; margin-bottom: 0.5rem; }

.footer__contact-email {
  font-size: 0.875rem;
  color: #ffffff;
  transition: color 0.2s;
}

.footer__contact-email:hover { color: #cbd5e1; }

.footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__social a {
  color: #ffffff;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer__social a:hover { color: #cbd5e1; }

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
  text-align: center;
}

.footer__copyright { font-size: 0.9rem; color: #64748b; }

/* ── Responsive — mobile only (<768px) ──────────────────────── */

@media (max-width: 767px) {
  /* Header btn — hidden until scrolled */
  .header__btn              { display: none; }
  .header.is-scrolled .header__btn { display: block; }

  /* CTA chat wrapper — no padding on mobile */
  .cta__chat { padding: 0; }

  /* Animated chat — keep card look, just drop the shadow */
  .animated-chat { box-shadow: none; }

  .form-row {
    flex-direction: column;
    border-radius: 0.5rem;
  }

  .form-row input[type="email"],
  .form-row button {
    width: 100%;
    border-radius: 0;
    text-align: center;
  }

  .form-row input[type="email"] {
    border-radius: 0.5rem 0.5rem 0 0;
  }

  .form-row button {
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1rem;
  }
}

/* ── Responsive — md (768px+) ────────────────────────────────── */

@media (min-width: 768px) {
  .use-cases__grid  { grid-template-columns: repeat(3, 1fr); }

  .footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ── Responsive — lg (1024px+) ───────────────────────────────── */

@media (min-width: 1024px) {
  .header__inner {
    padding-left: 0;
    padding-right: 0;
  }

  .hero__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
  }

  .hero__content { padding-right: 2rem; }
  .hero__visual  { justify-content: flex-end; }

  .timeline__steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #c7d2fe, #e9d5ff, #fbcfe8);
    transform: translateX(-50%);
  }

  .timeline__step-grid { grid-template-columns: 1fr 1fr; }

  .timeline__step-indicator {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .timeline__step-indicator--1 { background-color: #4f46e5; }
  .timeline__step-indicator--2 { background-color: #9333ea; }
  .timeline__step-indicator--3 { background-color: #db2777; }

  /* Steps 1 & 3 — visual left, text right */
  .timeline__visual--left {
    order: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 3rem;
  }

  .timeline__text--right {
    order: 2;
    padding-left: 3rem;
  }

  /* Step 2 — text left, visual right */
  .timeline__text--left   { padding-right: 3rem; }
  .timeline__visual--right {
    display: flex;
    justify-content: flex-start;
    padding-left: 3rem;
  }
}
