

.ft-h1, .ft-h2 { margin: 0; }

.ft-h1 + .ft-lede,
.ft-h2 + .ft-sub { margin-top: var(--ft-tight); }

.ft-h2 + .ft-quad,  .ft-sub + .ft-quad,
.ft-h2 + .ft-duo,   .ft-sub + .ft-duo,
.ft-h2 + .ft-trio,  .ft-sub + .ft-trio,
.ft-h2 + .ft-faq,   .ft-sub + .ft-faq,
.ft-h2 + .ft-calc,  .ft-sub + .ft-calc,
.ft-h2 + .ft-wall-grid, .ft-sub + .ft-wall-grid,
.ft-prices-head + .ft-calc { margin-top: var(--ft-loose); }

:root { --ft-tight: 9px; --ft-loose: clamp(24px, 2.8vw, 38px); }

.ft-h2 + .ft-duo, .ft-sub + .ft-duo { margin-top: clamp(40px, 4.6vw, 64px); }

.ft-eyebrow {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--sl-cyan-700);
}
.ft-h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 6.4vw, 5.1rem); line-height: 0.94;
  letter-spacing: var(--track-display); color: var(--colors-text-default); margin-top: 14px;
}
.ft-h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.02;
  letter-spacing: var(--track-display); color: var(--colors-text-default);
}
.ft-lede { max-width: 46ch; font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; color: var(--colors-text-subtle);
}
.ft-sub { max-width: 58ch; font-family: var(--font-body);
  font-size: clamp(15px, 1.25vw, 17.5px); line-height: 1.55; color: var(--colors-text-subtle);
}

.ft-sub--center { margin-inline: auto; text-align: center; }

.ft-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 15.5px; font-weight: 700;
  padding: 13px 24px; border-radius: var(--radius-pill); transition: transform 0.12s, filter 0.2s;
}
.ft-btn:hover { transform: translateY(-1px); }
.ft-btn--primary { color: #fff; background: var(--sl-violet-600); }
.ft-btn--primary:hover { filter: brightness(1.12); }
.ft-btn--ghost { color: var(--colors-text-default); border: 1px solid var(--colors-border-default); }
.ft-btn--ghost:hover { background: var(--colors-bg-container); }
.ft-btn--onink { color: var(--sl-ink); background: #fff; }
.ft-btn--onink:hover { background: var(--sl-butter-50, #FDF8EA); }

.ft-link {
  display: inline-block; margin-top: 14px; font-family: var(--font-body);
  font-size: 15px; font-weight: 700; color: var(--sl-violet-600);
}
.ft-link::after { content: ' \2192'; }
.ft-link:hover { text-decoration: underline; }
.ft-link--light { color: var(--sl-cyan-300); }

.ft-hero { padding: clamp(96px, 11vw, 150px) 0 clamp(48px, 6vw, 84px); }
.ft-hero-in {
  max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 76px); align-items: center;
}
.ft-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.ft-hero-media img {
  width: 100%; height: 80vh; object-fit: cover; object-position: center 62%;
  border-radius: var(--radius-panel); display: block;
}

.ft-quad-sec { padding-block: clamp(40px, 5vw, 68px); }
.ft-quad {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.4vw, 20px);
}

.ft-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  
  min-height: clamp(380px, 30vw, 470px);
  border-radius: 20px; border: 0;
  background: var(--ft-card-bg);
  color: var(--ft-card-fg);
}

.ft-card[data-tone="1"] { --ft-card-bg: var(--sl-violet-100); --ft-card-fg: var(--sl-ink);   --ft-card-art: var(--sl-violet-300); --ft-card-num: var(--sl-violet-50); --ft-card-body: 0.78; }
.ft-card[data-tone="2"] { --ft-card-bg: var(--sl-violet-300); --ft-card-fg: var(--sl-ink);   --ft-card-art: var(--sl-violet-100); --ft-card-num: var(--sl-violet-200); --ft-card-body: 0.78; }
.ft-card[data-tone="3"] { --ft-card-bg: var(--sl-violet-600); --ft-card-fg: var(--sl-paper); --ft-card-art: var(--sl-violet-300); --ft-card-num: var(--sl-violet-500); --ft-card-body: 1; }
.ft-card[data-tone="4"] { --ft-card-bg: var(--sl-violet-950); --ft-card-fg: var(--sl-paper); --ft-card-art: var(--sl-violet-600); --ft-card-num: var(--sl-violet-900); --ft-card-body: 1; }

.ft-card-art {
  position: relative; overflow: hidden; flex: 1 1 auto; min-height: 120px;
}

.ft-card-num {
  position: absolute; z-index: 3; left: 20px;
  
  top: calc(20px - 0.155em);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(83px, 16vw, 192px); line-height: 1;
  letter-spacing: -0.045em; color: var(--ft-card-num);
  font-variant-numeric: tabular-nums; user-select: none;
}

.ft-shape {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; display: block; color: var(--ft-card-art);
}

.ft-card[data-tone="1"] .ft-shape { transform: scale(1.34) translate(0, -14%); }
.ft-card[data-tone="2"] .ft-shape { transform: scale(1.55) translate(2%, -10%); }
.ft-card[data-tone="3"] .ft-shape { transform: scale(1.34) translate(0, -14%); }
.ft-card[data-tone="4"] .ft-shape { transform: scale(1.45) translate(13%, -12%) scaleX(-1); }

.ft-quad-sec .ft-quad .ft-card {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ft-quad-sec .ft-quad .ft-card:hover,
.ft-quad-sec .ft-quad .ft-card:focus-within {
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -20px rgba(11, 10, 16, 0.42);
}

.ft-card .ft-link { transition: gap 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s var(--ease-out); }
.ft-card:hover .ft-link, .ft-card:focus-within .ft-link { transition: gap 0.4s var(--ease-out), opacity 0.18s var(--ease-out); gap: 12px; }

@media (prefers-reduced-motion: no-preference) {
  .ft-shape {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .ft-card:hover .ft-shape, .ft-card:focus-within .ft-shape { transition: transform 0.6s var(--ease-out); }
  .ft-card[data-tone="1"]:hover .ft-shape, .ft-card[data-tone="1"]:focus-within .ft-shape { transform: scale(1.42) translate(0, -18%); }
  .ft-card[data-tone="2"]:hover .ft-shape, .ft-card[data-tone="2"]:focus-within .ft-shape { transform: scale(1.64) translate(5%, -14%); }
  .ft-card[data-tone="3"]:hover .ft-shape, .ft-card[data-tone="3"]:focus-within .ft-shape { transform: scale(1.42) translate(0, -18%); }
  .ft-card[data-tone="4"]:hover .ft-shape, .ft-card[data-tone="4"]:focus-within .ft-shape { transform: scale(1.54) translate(16%, -16%) scaleX(-1); }
}

@media (prefers-reduced-motion: reduce) {
  .ft-quad-sec .ft-quad .ft-card, .ft-card .ft-link { transition: none; }
  .ft-quad-sec .ft-quad .ft-card:hover,
  .ft-quad-sec .ft-quad .ft-card:focus-within { transform: none; }
}

.ft-card-body { position: relative; z-index: 2; padding: 0 24px 24px; }
.ft-card h3 {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.14;
  letter-spacing: var(--track-display); color: var(--ft-card-fg);
  text-wrap: balance;
}
.ft-card p {
  margin: 9px 0 0; font-family: var(--font-body); font-size: 14.5px;
  line-height: 1.5; color: var(--ft-card-fg); opacity: var(--ft-card-body, 0.78);
}
.ft-card em { font-style: normal; font-weight: 700; opacity: 1; }

.ft-card .ft-link {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 700;
  color: var(--ft-card-fg); text-decoration: none;
  border-bottom: 2px solid currentColor; padding-bottom: 2px;
  transition: gap 0.18s var(--ease-out), opacity 0.18s var(--ease-out);
}
.ft-card .ft-link:hover { gap: 11px; opacity: 0.72; }

.ft-prices { background: var(--sl-violet-50); padding-block: clamp(44px, 5.5vw, 74px); }
.ft-prices-in { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter); }
.ft-prices .ft-h2 { color: var(--colors-text-default); }
.ft-prices .ft-sub { color: var(--colors-text-subtle); }

.ft-calc {
  border-radius: 22px; overflow: hidden;
  background: #fff; border: 1px solid rgba(11, 10, 16, 0.10);
}
.ft-calc-top {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
  padding: clamp(20px, 2.4vw, 30px);
}
.ft-calc-card { display: flex; flex-direction: column; gap: 3px; }
.ft-calc-set { font-family: var(--font-body); font-size: 12.5px; color: var(--sl-violet-600); font-weight: 600; }
.ft-calc-name { font-family: var(--font-body); font-size: 19px; font-weight: 700; color: var(--colors-text-default); }

.ft-seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: var(--radius-pill); background: rgba(11, 10, 16, 0.06); }
.ft-seg-btn {
  border: 0; cursor: pointer; font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  padding: 9px 16px; border-radius: var(--radius-pill); color: var(--colors-text-subtle);
  background: none; transition: background 0.18s, color 0.18s;
}
.ft-seg-btn.on { color: var(--sl-ink); background: var(--sl-cyan-400); }

.ft-calc-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.ft-stat { display: flex; flex-direction: column; gap: 7px; padding: clamp(22px, 2.6vw, 32px); }
.ft-stat:nth-child(1) { background: var(--sl-cyan-100); }
.ft-stat:nth-child(2) { background: var(--sl-violet-100); }
.ft-stat:nth-child(3) { background: var(--sl-sand, #F8DDBD); }
.ft-stat-k { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--sl-ink); opacity: 0.66; }
.ft-stat-v {
  font-family: var(--font-body); font-size: clamp(24px, 2.5vw, 33px); font-weight: 700;
  color: var(--sl-ink); font-variant-numeric: tabular-nums; line-height: 1;
}
.ft-stat-n { font-family: var(--font-body); font-size: 12.5px; color: var(--sl-ink); opacity: 0.62; }

.ft-calc-note {
  margin-top: 16px; font-family: var(--font-body); font-size: 12.5px;
  line-height: 1.5; color: var(--colors-text-muted);
}

.ft-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px);
}

.ft-duo-item h3 {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 1.7vw, 22px); line-height: 1.2;
  letter-spacing: var(--track-display); color: var(--colors-text-default);
}
.ft-duo-item p {
  margin-top: 10px; font-family: var(--font-body); font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6; color: var(--colors-text-subtle);
}

.ft-wall { background: var(--colors-bg-container); padding-block: clamp(56px, 7vw, 92px); }
.ft-wall-in { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter); text-align: center; }
.ft-wall .ft-sub { margin-inline: auto; }
.ft-wall-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(6, 1fr); list-style: none;
}
.ft-wall-grid a {
  display: grid; place-items: center; padding: 26px 16px; min-height: 104px;
  border-radius: 16px; background: var(--colors-bg-page); border: 1px solid var(--colors-border-default);
  transition: transform 0.16s var(--ease-out), border-color 0.16s;
}
.ft-wall-grid a:hover { transform: translateY(-3px); border-color: var(--sl-cyan-400); }
.ft-wall-grid img { max-width: 100%; height: auto; max-height: 46px; object-fit: contain; }

.ft-trio {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ft-tri { padding: 26px 24px; border-radius: 20px; background: var(--colors-bg-container); border: 1px solid var(--colors-border-default); }
.ft-tri h3 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: var(--track-display); color: var(--colors-text-default);
}
.ft-tri p { margin-top: 9px; font-family: var(--font-body); font-size: 14.5px; line-height: 1.55; color: var(--colors-text-subtle); }
.ft-tri--dark { background: rgba(245, 243, 247, 0.05); border-color: rgba(245, 243, 247, 0.12); }
.ft-tri--dark h3 { color: var(--colors-loud-text); }
.ft-tri--dark p { color: var(--colors-loud-text-subtle); }

.ft-gap { background: var(--sl-ink); padding-block: clamp(56px, 7vw, 96px); }
.ft-gap-in { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter); }
.ft-gap .ft-h2 { color: var(--colors-loud-text); }
.ft-gap .ft-sub { color: var(--colors-loud-text-subtle); }

.ft-faq { max-width: 860px; }
.ft-faq-item { border-bottom: 1px solid var(--colors-border-default); }
.ft-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 2px; border: 0; background: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(16px, 1.4vw, 19px);
  letter-spacing: var(--track-display); color: var(--colors-text-default);
}
.ft-faq-i { position: relative; flex: 0 0 auto; width: 16px; height: 16px; }
.ft-faq-i::before, .ft-faq-i::after {
  content: ''; position: absolute; inset: 0; margin: auto; background: var(--colors-text-default);
}
.ft-faq-i::before { width: 16px; height: 2px; }
.ft-faq-i::after { width: 2px; height: 16px; transition: transform 0.3s var(--ease-out); }
.ft-faq-item.open .ft-faq-i::after { transform: scaleY(0); }
.ft-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.36s var(--ease-out); }
.ft-faq-item.open .ft-faq-a { grid-template-rows: 1fr; }
.ft-faq-a > p {
  overflow: hidden; font-family: var(--font-body); font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6; color: var(--colors-text-subtle);
}
.ft-faq-item.open .ft-faq-a > p { padding-bottom: 22px; }

.ft-end { position: relative; overflow: hidden; background: var(--sl-cyan-400); padding-block: clamp(72px, 9vw, 132px); text-align: center; }
.ft-end-bg {
  
  position: absolute; inset: 0; opacity: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%2296%22%20height=%2248%22%3E%3Cpath%20d=%22M0%2012C12%2012%2012%202%2024%202s12%2010%2024%2010%2012-10%2024-10%2012%2010%2024%2010%22%20fill=%22none%22%20stroke=%22%2300D8F0%22%20stroke-width=%222%22%20stroke-linecap=%22round%22/%3E%3Cpath%20d=%22M0%2036C12%2036%2012%2026%2024%2026s12%2010%2024%2010%2012-10%2024-10%2012%2010%2024%2010%22%20fill=%22none%22%20stroke=%22%2300D8F0%22%20stroke-width=%222%22%20stroke-linecap=%22round%22/%3E%3C/svg%3E");
  background-size: 104px 52px;
}
.ft-end-in { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; padding-inline: var(--gutter); }
.ft-end-eyebrow {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--sl-ink); opacity: 0.75;
}
.ft-end-h {
  margin-top: 12px; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.9rem, 8vw, 5.6rem); line-height: 0.92;
  letter-spacing: var(--track-display); color: var(--sl-ink);
}
.ft-end-sub {
  margin-top: 16px; margin-inline: auto; max-width: 44ch;
  font-family: var(--font-body); font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5; color: var(--sl-ink); opacity: 0.9;
}
.ft-end-search {
  margin-top: 34px; display: flex; align-items: center; gap: 8px;
  padding: 7px 7px 7px 18px; border-radius: var(--radius-pill);
  background: #fff; box-shadow: 0 18px 40px -18px rgba(11, 10, 16, 0.55);
}
.ft-end-icon { flex: 0 0 auto; width: 19px; height: 19px; color: var(--colors-text-muted); }
.ft-end-input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: none;
  font-family: var(--font-body); font-size: clamp(15px, 1.3vw, 17px); color: var(--sl-ink);
  padding-block: 13px;
}
.ft-end-input::placeholder { color: var(--colors-text-muted); }
.ft-end-input::-webkit-search-cancel-button { display: none; }
.ft-end-go {
  flex: 0 0 auto; border: 0; cursor: pointer; font-family: var(--font-body);
  font-size: 15.5px; font-weight: 700; color: #fff; background: var(--sl-violet-600);
  padding: 13px 26px; border-radius: var(--radius-pill); transition: filter 0.18s, transform 0.12s;
}
.ft-end-go:hover { filter: brightness(1.12); transform: translateY(-1px); }
.ft-end-foot {
  margin-top: 16px; font-family: var(--font-body); font-size: 13px;
  color: var(--sl-ink); opacity: 0.72;
}

@media (max-width: 1080px) {
  .ft-quad { grid-template-columns: repeat(2, 1fr); }
  .ft-wall-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
  .ft-hero-in { grid-template-columns: 1fr; }
  .ft-hero-media { order: -1; }
  .ft-hero-media img { height: 52vh; object-position: center 58%; }
  .ft-duo, .ft-trio { grid-template-columns: 1fr; }
  .ft-calc-grid { grid-template-columns: 1fr; }
  .ft-calc-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .ft-end-search { flex-wrap: wrap; padding: 10px; }
  .ft-end-input { padding-inline: 8px; }
  .ft-end-go { width: 100%; }
  .ft-quad { grid-template-columns: 1fr; }
  .ft-wall-grid { grid-template-columns: repeat(2, 1fr); }
}

.ft-steps-sec { background: var(--colors-bg-page); padding-block: clamp(44px, 5.5vw, 74px); }
.ft-steps-in  { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter); }

.ft-steps-slab {
  background: var(--sl-violet-800);
  color: var(--sl-paper);
  border-radius: clamp(20px, 2.2vw, 32px);
  padding: clamp(28px, 4vw, 64px);
  overflow: hidden;
}

.ft-steps-chip {
  display: inline-block; margin: 0 0 clamp(20px, 2.4vw, 30px);
  padding: 8px 16px; border-radius: 999px;
  background: var(--sl-ink); color: var(--sl-butter-100);
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.01em;
}
.ft-steps-h2 {
  margin: 0; max-width: 20ch;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.5rem); line-height: 1.02;
  letter-spacing: var(--track-display); color: var(--sl-paper);
}
.ft-steps-sub {
  margin: clamp(14px, 1.6vw, 20px) 0 0; max-width: 62ch;
  font-family: var(--font-body); font-size: var(--text-lead);
  line-height: var(--lh-body); color: rgba(245, 243, 247, 0.76);
}

.ft-steps {
  position: relative;
  margin-top: clamp(34px, 4.5vw, 60px);
}

.ft-steps-track {
  position: absolute; left: 0; right: 0; top: 17px; height: 2px;
  background: rgba(245, 243, 247, 0.2);
  border-radius: 2px; overflow: hidden;
}

.ft-steps-fill {
  display: block; height: 100%; width: 17px;
  background: var(--sl-butter-100);
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(246, 233, 190, 0.42);
}

.ft-steps-rail {
  position: relative; z-index: 1;
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(var(--ft-step-count, 5), 1fr);
  gap: clamp(16px, 2vw, 32px);
  align-items: stretch;
}

.ft-step { min-width: 0; display: flex; flex-direction: column; }

.ft-step-btn {
  display: block; width: 100%; padding: 0; border: 0; background: none;
  text-align: left; cursor: pointer; color: inherit; font: inherit;
}
.ft-step-btn:focus-visible { outline: 2px solid var(--sl-butter-100); outline-offset: 6px; border-radius: 8px; }

.ft-step-node {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sl-violet-800);
  border: 2px solid rgba(245, 243, 247, 0.28);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.02em; color: rgba(245, 243, 247, 0.6);
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out),
              color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.ft-step.is-done .ft-step-node {
  border-color: var(--sl-butter-100); background: var(--sl-violet-900); color: var(--sl-paper);
}
.ft-step.is-on .ft-step-node {
  border-color: var(--sl-butter-100); background: var(--sl-butter-100); color: var(--sl-ink);
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(246, 233, 190, 0.22);
}

.ft-step-title {
  display: block; margin-top: 18px;
  font-family: var(--font-body); font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 700; line-height: 1.22; letter-spacing: -0.01em;
  color: rgba(245, 243, 247, 0.5);
  transition: color 0.3s var(--ease-out);
}
.ft-step.is-done .ft-step-title { color: rgba(245, 243, 247, 0.78); }
.ft-step.is-on   .ft-step-title { color: var(--sl-paper); }
.ft-step-btn:hover .ft-step-title { color: var(--sl-paper); }

.ft-step-body { overflow: hidden; flex: 1 1 auto; }
.ft-step-bodyin {
  height: 100%; display: flex; flex-direction: column;
  transform: translateY(-104%);
  opacity: 0;
  transition: transform 0.62s var(--ease-out), opacity 0.42s var(--ease-out);
}
.ft-step.is-on .ft-step-bodyin { transform: none; opacity: 1; }

.ft-step-p {
  margin: 14px 0 0;
  font-family: var(--font-body); font-size: var(--text-small);
  line-height: var(--lh-body); color: rgba(245, 243, 247, 0.8);
}

.ft-step-hold {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  margin: 16px 0 0; padding-top: 14px; margin-top: auto;
  min-height: 52px;
  border-top: 1px solid rgba(245, 243, 247, 0.2);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out) 0.34s, transform 0.5s var(--ease-out) 0.34s;
}
.ft-step.is-on .ft-step-hold { opacity: 1; transform: none; }
.ft-step-holdk {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--sl-butter-100);
}
.ft-step-logo { display: block; width: auto; height: 17px; }

.ft-step-holdv {
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--sl-paper);
}

.ft-steps-pole {
  margin-top: clamp(26px, 3vw, 38px);
  display: inline-flex; align-items: center; gap: 11px;
  padding: 6px 15px 6px 6px; border-radius: var(--radius-pill);
  background: rgba(11, 10, 16, 0.28);
  border: 1px solid rgba(245, 243, 247, 0.16);
}
.ft-steps-play {
  flex: 0 0 auto; width: 30px; height: 30px; border: 0; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  color: var(--sl-ink); background: var(--sl-butter-100);
  transition: transform 0.16s var(--ease-out);
}
.ft-steps-play:hover { transform: scale(1.06); }
.ft-steps-play:focus-visible { outline: 2px solid var(--sl-paper); outline-offset: 3px; }
.ft-steps-play svg { width: 13px; height: 13px; }
.ft-steps-ptrack {
  width: 100px; height: 5px; border-radius: var(--radius-pill);
  background: rgba(245, 243, 247, 0.22); overflow: hidden;
}
.ft-steps-ptrack i {
  display: block; height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: var(--sl-butter-100); border-radius: var(--radius-pill);
}

.ft-steps-note {
  margin: clamp(28px, 3vw, 40px) 0 0; padding-top: 18px;
  border-top: 1px solid rgba(245, 243, 247, 0.2);
  font-family: var(--font-body); font-size: var(--text-small);
  color: rgba(245, 243, 247, 0.62);
}

@media (max-width: 1023px) {
  .ft-steps-track { left: 16px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .ft-steps-fill  { width: 100%; height: 17px; }
  .ft-steps-rail { grid-template-columns: 1fr; gap: 26px; }
  .ft-step { padding-left: 52px; position: relative; display: block; }
  .ft-step-node { position: absolute; left: 0; top: 0; }
  .ft-step-title { margin-top: 4px; }
  .ft-step-body  { overflow: visible; }
  .ft-step-bodyin { height: auto; display: block; transform: none; opacity: 0.34; transition: opacity 0.4s var(--ease-out); }
  .ft-step.is-done .ft-step-bodyin { opacity: 0.66; }
  .ft-step.is-on   .ft-step-bodyin { opacity: 1; }
  .ft-step-hold { margin-top: 16px; opacity: 1; transform: none; }
  .ft-steps-pole { margin-left: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .ft-steps-fill { transition: none !important; }
  .ft-step-bodyin { transition: none; }
  .ft-step-hold   { transition: none; }
  .ft-step-node   { transition: none; }
}

@media (prefers-reduced-motion: no-preference) {
  
  [data-reveal].is-in .ft-ui { animation: ft-ui-in .5s var(--ease-out) .12s both; }
}
@keyframes ft-ui-in {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to   { opacity: 1; }
}

@keyframes ft-ui-in-cl {
  from { opacity: 0; transform: translateY(calc(-50% + 10px)) scale(.96); }
  to   { opacity: 1; transform: translateY(-50%); }
}
@media (prefers-reduced-motion: no-preference) {
  [data-reveal].is-in .ft-ui--cl { animation-name: ft-ui-in-cl; }
}
