:root {
  --bg: #08090b;
  --bg-2: #0d0f12;
  --bg-3: #121419;
  --surface: rgba(255,255,255,.05);
  --surface-2: rgba(255,255,255,.07);
  --surface-solid: #111318;
  --text: #f6efe2;
  --text-soft: rgba(246,239,226,.78);
  --text-muted: rgba(246,239,226,.56);
  --line: rgba(255,255,255,.10);
  --line-soft: rgba(255,255,255,.06);
  --gold: #d8b98a;
  --gold-soft: #f2e2bf;
  --gold-fade: rgba(216,185,138,.24);
  --shadow-xl: 0 30px 100px rgba(0,0,0,.38);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.25);
  --radius: 34px;
  --radius-md: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(242,226,191,.06), transparent 18%),
    radial-gradient(circle at 88% 76%, rgba(216,185,138,.07), transparent 16%),
    linear-gradient(180deg, #08090b 0%, #090b0e 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: radial-gradient(rgba(255,255,255,.42) .6px, transparent .6px);
  background-size: 15px 15px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, ul { margin: 0; }
button, input, textarea, select { font: inherit; }
strong { font-weight: 700; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 920px); margin: 0 auto; }
.section { position: relative; padding: 100px 0; }
.section::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: min(1100px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
.section--dark { background: transparent; color: var(--text); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  padding: 30px 0 78px;
  background:
    linear-gradient(180deg, rgba(8,9,11,.22), rgba(8,9,11,.78)),
    radial-gradient(circle at 0% 0%, rgba(255,244,221,.24), transparent 18%),
    radial-gradient(circle at 100% 100%, rgba(216,185,138,.16), transparent 18%),
    url('../assets/story-bg.png') center bottom / cover no-repeat,
    linear-gradient(180deg, #090a0c, #0a0b0d);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(8,9,11,0), rgba(8,9,11,.88) 42%, #090a0c 100%);
  pointer-events: none;
}
.hero__grain,
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
}
.hero__grain {
  opacity: .16;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 18px 18px;
}
.hero__glow {
  background:
    radial-gradient(circle at 6% 11%, rgba(255,246,228,.52), transparent 10%),
    radial-gradient(circle at 84% 86%, rgba(216,185,138,.26), transparent 15%),
    radial-gradient(circle at 84% 14%, rgba(255,255,255,.06), transparent 16%);
}
.hero__container { position: relative; z-index: 2; }
.hero__brand img {
  width: min(440px, 64vw);
  filter: drop-shadow(0 0 24px rgba(255,240,220,.16));
}
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .85fr);
  gap: 44px;
  align-items: end;
  margin-top: 64px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: .78rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(246,239,226,.62);
}
.eyebrow--dark { color: rgba(246,239,226,.54); }
.hero h1,
.intro h2,
.section-head h2,
.founder__copy h2,
.dalmatia-copy h2,
.form-copy h2,
.thankyou h2 {
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 760;
  text-wrap: balance;
  max-width: 10.5ch;
}
.intro h2,
.section-head h2,
.founder__copy h2,
.dalmatia-copy h2,
.form-copy h2,
.thankyou h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  max-width: 18ch;
}
.hero h1 span {
  color: rgba(246,239,226,.68);
}
.lead,
.intro p,
.section-head p,
.benefit-card p,
.founder__copy p,
.dalmatia-copy p,
.timelineStep p,
.faq p,
.form-copy p,
.thankyou p,
.portrait-panel__info p:last-child {
  margin-top: 22px;
  font-size: clamp(1.04rem, 1.42vw, 1.15rem);
  color: var(--text-soft);
  max-width: 64ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button--light {
  background: linear-gradient(180deg, #fff8ec, #f2dfbb);
  color: #151310;
  box-shadow: 0 16px 38px rgba(216,185,138,.18);
}
.button--ghost {
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}
.button--rec {
  gap: 10px;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 16px 30px rgba(0,0,0,.18);
}
.rec-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: #ff5f57;
  box-shadow: 0 0 0 0 rgba(255,95,87,.42);
  animation: recPulse 1.7s ease-out infinite;
}
.button--submit { width: 100%; margin-top: 8px; }
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 30px;
}
.fact {
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.fact strong { display: block; font-size: 1.2rem; line-height: 1.15; letter-spacing: -.02em; }
.fact span { display: block; margin-top: 7px; color: rgba(246,239,226,.62); font-size: .95rem; }

.hero__media { display: flex; justify-content: flex-end; }
.portrait-panel {
  position: relative;
  width: min(100%, 460px);
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}
.portrait-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,240,215,.04), transparent 34%, transparent 72%, rgba(255,235,206,.04));
  pointer-events: none;
}
.portrait-panel__shine {
  position: absolute;
  inset: -10% auto auto -30%;
  width: 75%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.24), rgba(216,185,138,.08) 48%, transparent 66%);
  filter: blur(18px);
  pointer-events: none;
}
.portrait-panel__photo {
  width: 100%;
  aspect-ratio: 4 / 5.4;
  object-fit: cover;
  object-position: center 32%;
}
.portrait-panel__info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 24px 26px;
  background: linear-gradient(180deg, rgba(8,9,11,0), rgba(8,9,11,.76) 34%, rgba(8,9,11,.96));
}
.portrait-panel__kicker {
  margin: 0;
  font-size: .76rem;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(246,239,226,.58);
  font-weight: 800;
}
.portrait-panel__info h2 {
  margin-top: 8px;
  font-size: 1.54rem;
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 730;
  max-width: none;
}
.portrait-panel__info p:last-child { margin-top: 10px; font-size: .98rem; max-width: none; }

.intro .narrow,
.benefit-card,
.founder__note,
.glow-card,
.timelineStep,
.form,
.thankyou {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}
.intro .narrow {
  padding: clamp(28px, 3.2vw, 42px);
}
.intro h2 span { color: rgba(242,226,191,.9); }

.section-head { margin-bottom: 36px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.benefit-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(216,185,138,.14), transparent 68%);
  pointer-events: none;
}
.benefit-card__num {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--gold-soft);
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.benefit-card h3,
.timelineStep h3,
.faq summary,
.field label {
  font-size: 1.22rem;
  line-height: 1.3;
  letter-spacing: -.02em;
  font-weight: 730;
}

.founder__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .82fr);
  gap: 36px;
  align-items: center;
}
.founder__note {
  margin-top: 28px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(216,185,138,.12), rgba(255,255,255,.04));
}
.founder__note span { display: block; font-size: 1.08rem; line-height: 1.55; color: var(--text); }
.founder__note strong { display: block; margin-top: 12px; color: var(--text-muted); font-size: .95rem; }
.glow-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  place-items: center;
}
.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/story-bg.png') center bottom / cover no-repeat;
  opacity: .22;
}
.glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,10,12,.22), rgba(9,10,12,.8));
}
.glow-card img {
  position: relative; z-index: 1;
  width: min(100%, 360px);
  filter: drop-shadow(0 0 24px rgba(255,239,210,.18));
}

.dalmatia-shell {
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr);
  gap: 26px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
}
.map-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.map-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  color: var(--text-soft);
  font-size: .92rem;
}
.mapwrap {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(255,235,203,.05), transparent 28%),
    radial-gradient(circle at left top, rgba(255,242,220,.16), transparent 20%),
    radial-gradient(circle at 100% 100%, rgba(216,185,138,.14), transparent 16%),
    linear-gradient(180deg, #0d1015 0%, #0a0c10 55%, #07080b 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.mapwrap::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(255,238,212,0), rgba(255,235,203,.04) 18%, rgba(255,235,203,.02) 24%, rgba(6,8,11,.46) 24%),
    url('../assets/story-bg.png') center bottom / cover no-repeat;
  opacity: .52;
  mix-blend-mode: screen;
  pointer-events: none;
}
.mapwrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,9,11,0), rgba(8,9,11,.15) 55%, rgba(8,9,11,.38));
  pointer-events: none;
}
.map__overlay {
  position: absolute;
  z-index: 4;
  left: 28px;
  top: 28px;
  max-width: 240px;
}
.map__overlay h3 {
  font-size: 1.7rem;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-top: 10px;
}
.map__scrawl {
  display: inline-block;
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.18rem;
  color: rgba(242,226,191,.86);
}
.realmap {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.map-sea {
  fill: rgba(0,0,0,0);
}
.map-grid-lines path {
  stroke: rgba(255,255,255,.04);
  stroke-width: 1;
}
.map-land {
  fill: rgba(255,255,255,.045);
}
.map-coast {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#premiumGlow);
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: drawMap 3.2s cubic-bezier(.2,.8,.2,1) forwards .3s;
}
.map-island {
  fill: rgba(255,255,255,.055);
  stroke: rgba(216,185,138,.42);
  stroke-width: 1.4;
}
.map-route {
  fill: none;
  stroke: rgba(255,255,255,.18);
  stroke-width: 1.8;
  stroke-dasharray: 6 8;
}
.map-sea-label {
  fill: rgba(255,255,255,.32);
  font: italic 19px/1 Georgia, "Times New Roman", serif;
}
.city text {
  fill: rgba(246,239,226,.9);
  font: 700 18px/1 Inter, system-ui, sans-serif;
}
.city__halo {
  fill: rgba(216,185,138,.10);
  stroke: rgba(216,185,138,.25);
  stroke-width: 1;
  animation: pinHalo 2.8s ease-in-out infinite;
}
.city__dot {
  fill: #fff7e7;
  stroke: var(--gold);
  stroke-width: 2.5;
  filter: url(#premiumGlow);
}
.city--active .city__dot { stroke-width: 3.5; }
.city--active text { font-size: 21px; fill: #fff7e7; }
.city {
  opacity: 0;
  animation: fadePin .6s ease forwards;
}
.city--zadar { animation-delay: .8s; }
.city--sibenik { animation-delay: 1s; }
.city--trogir { animation-delay: 1.2s; }
.city--split { animation-delay: 1.4s; }
.city--omis { animation-delay: 1.6s; }
.city--makarska { animation-delay: 1.8s; }
.city--hvar { animation-delay: 2s; }
.city--dubrovnik { animation-delay: 2.2s; }

.timelineSteps {
  position: relative;
  padding-top: 24px;
}
.timelineSteps__rail {
  position: absolute;
  left: 48px; right: 48px; top: 40px;
  height: 2px;
  background: rgba(255,255,255,.09);
  border-radius: 999px;
}
.timelineSteps__fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,.26), var(--gold));
  border-radius: inherit;
  animation: fillRail 2.4s ease forwards .35s;
}
.timelineSteps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.timelineStep {
  position: relative;
  padding: 52px 24px 24px;
  min-height: 230px;
}
.timelineStep__dot {
  position: absolute;
  top: 30px; left: 24px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff8ec;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(216,185,138,.12);
}
.timelineStep__phase {
  margin: 0 0 10px;
  font-size: .76rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.timelineStep p:last-child { margin-top: 10px; }
.timelineStep--highlight {
  background: linear-gradient(180deg, rgba(216,185,138,.14), rgba(255,255,255,.04));
}

.faq details {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid rgba(255,255,255,.09); }
.faq summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--text-muted);
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin-top: 12px; }

.form-section {
  background:
    linear-gradient(180deg, rgba(8,9,11,.18), rgba(8,9,11,.62)),
    url('../assets/story-bg.png') center bottom / cover no-repeat,
    linear-gradient(180deg, #090a0c, #08090b);
}
.form-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,9,11,.74), rgba(8,9,11,.88));
  pointer-events: none;
}
.form-shell { position: relative; z-index: 2; }
.form-copy { max-width: 840px; margin-bottom: 30px; }
.form {
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,.05);
}
.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.field, .field--full { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label, .field--full label { color: rgba(246,239,226,.96); }
.field label span, .field--full label span, .consent strong { color: rgba(246,239,226,.62); }
input, textarea, select {
  width: 100%; min-height: 56px;
  padding: 15px 18px;
  border-radius: 18px;
  outline: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
textarea { min-height: 150px; resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(246,239,226,.34); }
select { appearance: none; }
input:focus, textarea:focus, select:focus {
  border-color: rgba(216,185,138,.8);
  box-shadow: 0 0 0 4px rgba(216,185,138,.12);
  background: rgba(255,255,255,.06);
}
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select { border-color: rgba(255,255,255,.68); }
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 6px 0 14px;
  color: rgba(246,239,226,.78);
}
.consent input { width: 18px; height: 18px; min-height: 18px; margin-top: 4px; }
.form__err { min-height: 24px; color: rgba(246,239,226,.78); margin-top: 14px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.thankyou { padding: 36px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes recPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,95,87,.44); }
  70% { box-shadow: 0 0 0 12px rgba(255,95,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,95,87,0); }
}
@keyframes drawMap { to { stroke-dashoffset: 0; } }
@keyframes fadePin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pinHalo {
  0%, 100% { transform: scale(.92); opacity: .48; }
  50% { transform: scale(1.24); opacity: .12; }
}
@keyframes fillRail { to { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, input, textarea, select { transition: none; }
  .rec-dot, .map-coast, .city, .city__halo, .timelineSteps__fill { animation: none; }
  .map-coast { stroke-dashoffset: 0; }
  .city { opacity: 1; }
  .timelineSteps__fill { width: 100%; }
}

@media (max-width: 1080px) {
  .hero__layout,
  .founder__layout,
  .dalmatia-shell { grid-template-columns: 1fr; }
  .hero__media { justify-content: flex-start; }
  .hero__media .portrait-panel { max-width: 560px; }
  .timelineSteps__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 78px 0; }
  .hero { min-height: auto; padding-top: 22px; }
  .hero__brand img { width: min(320px, 72vw); }
  .hero__layout { gap: 28px; margin-top: 38px; }
  .hero h1,
  .intro h2,
  .section-head h2,
  .founder__copy h2,
  .dalmatia-copy h2,
  .form-copy h2,
  .thankyou h2 { max-width: 100%; }
  .hero__facts,
  .benefits-grid,
  .form__grid,
  .timelineSteps__grid { grid-template-columns: 1fr; }
  .mapwrap {
    min-height: auto;
    padding: 18px;
  }
  .map__overlay {
    position: static;
    max-width: none;
    margin-bottom: 18px;
  }
  .map__overlay h3 { font-size: 1.35rem; }
  .city text { font-size: 13px; }
  .city--active text { font-size: 15px; }
  .map-sea-label { font-size: 12px; }
  .timelineSteps {
    padding-top: 0;
    padding-left: 34px;
  }
  .timelineSteps__rail {
    top: 0;
    bottom: 0;
    left: 9px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .timelineSteps__fill {
    width: 100%;
    height: 0;
    animation: fillRailVertical 2.2s ease forwards .35s;
  }
  .timelineSteps__grid { gap: 14px; }
  .timelineStep {
    padding: 24px 20px 20px;
    min-height: auto;
  }
  .timelineStep__dot {
    top: 24px;
    left: -34px;
  }
}

@keyframes fillRailVertical { to { height: 100%; } }
