:root {
  --dark: #0f172a;
  --ink: #172033;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;
  --magenta: #ec0f8c;
  --cyan: #00aeef;
  --lime: #d6df21;
}

.site-footer {
  padding: 58px max(20px, calc((100vw - 1180px) / 2)) 28px;
  color: rgba(255, 255, 255, 0.74);
  background: #090f1f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

.footer-brand img {
  width: 168px;
  max-width: 100%;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.site-footer a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--magenta);
}

.site-footer p {
  max-width: 340px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}

.site-footer .footer-cta {
  display: inline-flex;
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-cta:hover,
.site-footer .footer-cta:focus-visible {
  color: var(--white);
  filter: brightness(0.94);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}

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

  .footer-bottom {
    flex-direction: column;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 158px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.35vw, 22px);
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  position: relative;
}

.nav-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
}

.nav-menu-trigger {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 4px;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown,
.nav-menu.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  color: #334155;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--soft);
  color: var(--magenta);
}

nav > a,
.nav-menu-trigger,
.header-cta,
.button.primary {
  transition: color 0.18s ease, background-color 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}

nav > a:hover,
nav > a:focus-visible,
.nav-menu-trigger:hover,
.nav-menu-trigger:focus-visible {
  color: var(--magenta);
}

.header-cta:hover,
.header-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  filter: brightness(0.94);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 17px 24px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.header-cta {
  min-height: auto;
  padding: 13px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 18px 50px rgba(236, 15, 140, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.eyebrow,
.card-kicker {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark,
.card-kicker {
  color: var(--magenta);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  color: var(--dark);
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
  min-height: auto;
  padding: 176px max(20px, calc((100vw - 1180px) / 2)) 106px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.20), transparent 34%),
    linear-gradient(35deg, rgba(0, 174, 239, 0.18), transparent 46%),
    var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.12) 44.2% 44.8%, transparent 45% 100%),
    radial-gradient(circle at 77% 42%, rgba(214, 223, 33, 0.22), transparent 9%),
    radial-gradient(circle at 88% 54%, rgba(236, 15, 140, 0.18), transparent 10%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, auto, 46px 46px, 46px 46px;
  pointer-events: none;
}

.hero-content,
.asset-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.55vw, 22px);
  font-weight: 650;
  line-height: 1.48;
}

.hero-subcopy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.asset-panel {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.asset-panel h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}

.asset-flow {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.asset-flow span,
.asset-card,
.mini-stats div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.asset-flow span {
  position: relative;
  padding: 14px 16px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asset-flow span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--lime);
}

.asset-card {
  padding: 22px;
  margin-bottom: 16px;
}

.asset-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.asset-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.asset-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-stats div {
  padding: 16px;
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: var(--white);
  font-size: 32px;
  line-height: 1;
}

.mini-stats span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fit-grid ul,
.pricing-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-grid li,
.pricing-grid li {
  position: relative;
  padding-left: 26px;
  font-weight: 760;
  line-height: 1.45;
}

.fit-grid li::before,
.pricing-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
}

.section {
  padding: clamp(70px, 9vw, 118px) max(20px, calc((100vw - 1180px) / 2));
}

.section-heading {
  display: grid;
  justify-items: start;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading.centered {
  justify-items: center;
  text-align: center;
}

.section-heading h2 {
  max-width: 980px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
  font-size: 18px;
  font-weight: 680;
}

.section-heading.centered p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.domino-section,
.leave-section,
.levels-section,
.start-section,
.request-section {
  background: var(--white);
}

.tracks-section,
.timeline-section,
.fit-section,
.compare-section,
.faq-section {
  background: var(--soft);
}

.roadmap-section {
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.075), transparent 34%),
    linear-gradient(35deg, rgba(0, 174, 239, 0.09), transparent 48%),
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    var(--soft);
  background-size: auto, auto, 34px 34px, 34px 34px;
}

.split-grid,
.domino-grid,
.request-grid,
.card-grid,
.track-grid,
.asset-grid,
.fit-grid,
.timeline,
.pricing-grid,
.start-grid,
.compare-grid,
.faq-grid,
 .investment-panel {
  max-width: 1180px;
  margin-inline: auto;
}

.split-grid,
.domino-grid,
.request-grid,
.investment-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.stack-copy {
  display: grid;
  gap: 18px;
}

.stack-copy p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
}

.install-diagram,
.domino-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background:
    radial-gradient(circle at 34% 25%, rgba(236, 15, 140, 0.22), transparent 18%),
    radial-gradient(circle at 78% 64%, rgba(0, 174, 239, 0.22), transparent 18%),
    linear-gradient(135deg, #111827, #1e293b);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}

.install-diagram::before,
.domino-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.install-diagram {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 42px;
}

.diagram-card {
  position: relative;
  z-index: 1;
  width: min(320px, 88%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diagram-card.two,
.diagram-card.four {
  margin-left: auto;
}

.diagram-card.three {
  color: var(--dark);
  background: var(--lime);
}

.domino-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px;
}

.domino {
  position: absolute;
  top: 50%;
  width: 88px;
  height: 170px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%) rotate(-7deg);
  z-index: 2;
}

.domino:nth-child(1) { left: 8%; }
.domino:nth-child(2) { left: 25%; }
.domino:nth-child(3) { left: 42%; }
.domino:nth-child(4) { left: 59%; }
.domino:nth-child(5) { left: 76%; }

.domino.active {
  background: var(--lime);
  transform: translateY(-50%) rotate(0deg);
}

.domino span {
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.domino.active span {
  color: var(--dark);
}

.card-grid,
.track-grid,
.asset-grid,
.timeline,
.pricing-grid,
.start-grid,
.compare-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.five-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.track-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.asset-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline,
.start-grid,
.compare-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.start-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid article,
.track-grid article,
.asset-grid article,
.timeline article,
.pricing-grid article,
.start-grid article,
.compare-grid article,
.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.pricing-grid article,
.compare-grid article.featured {
  position: relative;
}

.pricing-grid article.featured,
.asset-grid article,
.compare-grid article.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(236, 15, 140, 0.13), rgba(0, 174, 239, 0.08)),
    var(--dark);
  border-color: rgba(255, 255, 255, 0.12);
}

.pricing-grid .featured h3,
.pricing-grid .featured p,
.asset-grid h3,
.compare-grid .featured h3,
.compare-grid .featured p {
  color: var(--white);
}

.pricing-grid .featured p,
.asset-grid p,
.compare-grid .featured p {
  color: rgba(255, 255, 255, 0.72);
}

.card-grid span,
.track-grid span,
.asset-grid span,
.timeline span,
.start-grid span,
.compare-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.asset-grid span,
.pricing-grid .featured .card-kicker {
  color: var(--lime);
}

.card-grid p,
.track-grid p,
.asset-grid p,
.timeline p,
.pricing-grid p,
.start-grid p,
.compare-grid p,
.faq-grid p {
  margin-bottom: 0;
  font-weight: 680;
}

.pricing-grid h3 {
  font-size: clamp(42px, 5vw, 62px);
}

.pricing-grid ul {
  margin-top: 22px;
}

.pricing-grid li {
  color: var(--ink);
}

.pricing-grid .featured li {
  color: rgba(255, 255, 255, 0.82);
}

.start-grid ol {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 800;
}

.investment-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.22), rgba(0, 174, 239, 0.12)),
    var(--dark);
}

.investment-panel {
  align-items: start;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.investment-panel h2,
.investment-panel h3,
.investment-panel p {
  color: var(--white);
}

.investment-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 680;
}

.first-90 {
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fit-grid article {
  padding: 28px;
  border-radius: 8px;
  background: var(--dark);
}

.fit-grid article.not-fit {
  background: #1e293b;
}

.fit-grid h2,
.fit-grid p {
  color: var(--white);
}

.fit-grid h2 {
  font-size: clamp(32px, 2.6vw, 40px);
  line-height: 1;
  white-space: nowrap;
}

.fit-grid li {
  color: rgba(255, 255, 255, 0.78);
}

.request-grid {
  align-items: start;
}

.request-grid > div > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 18px;
  font-weight: 680;
}

.request-note {
  margin-top: 28px;
  padding: 22px;
  border-radius: 8px;
  color: var(--dark);
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.08), rgba(0, 174, 239, 0.08)),
    var(--soft);
  border: 1px solid rgba(236, 15, 140, 0.2);
  font-size: 18px;
  font-weight: 900;
}

.sprint-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.sprint-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sprint-form input,
.sprint-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--dark);
  background: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.sprint-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.faq-grid h3 {
  color: var(--magenta);
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(90px, 12vw, 150px) 20px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(236, 15, 140, 0.92), rgba(0, 174, 239, 0.78)),
    var(--dark);
}

.final-cta h2,
.final-cta p {
  max-width: 980px;
  color: var(--white);
}

.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  font-weight: 700;
}

.final-cta .hero-actions {
  justify-content: center;
}

@media (max-width: 1180px) {
  .five-grid,
  .track-grid,
  .asset-grid,
  .timeline,
  .pricing-grid,
  .start-grid,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-grid h2 {
    white-space: normal;
  }
}

@media (max-width: 1080px) {
  .hero,
  .split-grid,
  .domino-grid,
  .request-grid,
  .investment-panel {
    grid-template-columns: 1fr;
  }

  .asset-panel {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
  }

  .nav-menu {
    display: block;
  }

  .nav-menu-trigger {
    display: inline-flex;
  }

  .nav-dropdown {
    top: calc(100% + 10px);
    display: grid;
    min-width: min(300px, calc(100vw - 32px));
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 74px 18px 52px;
  }

  h1,
  h2 {
    overflow-wrap: anywhere;
  }

  .button {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .five-grid,
  .track-grid,
  .asset-grid,
  .timeline,
  .pricing-grid,
  .start-grid,
  .compare-grid,
  .faq-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid h2 {
    white-space: normal;
  }

  .install-diagram,
  .domino-visual {
    min-height: 360px;
  }

  .domino {
    width: 64px;
    height: 132px;
  }

  .domino:nth-child(1) { left: 4%; }
  .domino:nth-child(2) { left: 22%; }
  .domino:nth-child(3) { left: 40%; }
  .domino:nth-child(4) { left: 58%; }
  .domino:nth-child(5) { left: 76%; }

  .domino span {
    font-size: 9px;
  }
}
