:root {
  --bg-1: #fff7f3;
  --bg-2: #fff0ec;
  --bg-3: #fde7e1;
  --pink: #f45f8f;
  --pink-dark: #df4b7c;
  --orange: #ffad32;
  --yellow: #ffe7a3;
  --text: #5a3327;
  --text-soft: #88675d;
  --card: rgba(255, 255, 255, 0.72);
  --line-pink: rgba(244, 95, 143, 0.16);
  --line-orange: rgba(255, 173, 50, 0.22);
  --shadow-soft: 0 20px 45px rgba(244, 123, 146, 0.12);
  --shadow-hover: 0 22px 40px rgba(245, 118, 131, 0.18);
  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: min(1440px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Baloo 2", "Noto Sans SC", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 173, 50, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(244, 95, 143, 0.14), transparent 28%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.orb,
.spark {
  position: absolute;
  border-radius: 999px;
}

.orb-a {
  width: 240px;
  height: 240px;
  top: 80px;
  left: -60px;
  background: rgba(255, 173, 50, 0.13);
  filter: blur(10px);
}

.orb-b {
  width: 320px;
  height: 320px;
  top: 240px;
  right: -80px;
  background: rgba(244, 95, 143, 0.12);
  filter: blur(12px);
}

.orb-c {
  width: 180px;
  height: 180px;
  bottom: 160px;
  left: 18%;
  background: rgba(255, 231, 163, 0.2);
  filter: blur(8px);
}

.spark {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.spark-a {
  width: 12px;
  height: 12px;
  top: 150px;
  right: 18%;
}

.spark-b {
  width: 18px;
  height: 18px;
  top: 420px;
  left: 12%;
}

.spark-c {
  width: 10px;
  height: 10px;
  bottom: 180px;
  right: 10%;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  min-height: 68px;
  background: rgba(255, 248, 245, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 24px rgba(163, 113, 93, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 0 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.main-nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(90, 51, 39, 0.84);
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), #ff86ad);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--pink);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ffbf52);
  box-shadow: 0 14px 28px rgba(255, 173, 50, 0.26);
}

.btn-secondary {
  color: var(--pink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(244, 95, 143, 0.18);
  box-shadow: 0 14px 28px rgba(255, 196, 206, 0.22);
}

.btn-launch {
  min-height: 38px;
  padding: 0 16px;
  font-weight: 600;
}

.btn-icon-image {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 20px rgba(211, 153, 122, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 0 0 40px;
  overflow: visible;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 247, 243, 0) 68%, rgba(255, 244, 239, 0.55) 84%, rgba(255, 241, 236, 0.92) 100%),
    linear-gradient(90deg, rgba(255, 250, 246, 0.97) 0%, rgba(255, 246, 240, 0.92) 34%, rgba(255, 243, 237, 0.7) 50%, rgba(255, 241, 236, 0.18) 70%, rgba(255, 241, 236, 0.08) 100%),
    radial-gradient(circle at 20% 10%, rgba(255, 231, 163, 0.42), transparent 25%),
    radial-gradient(circle at 86% 22%, rgba(255, 173, 50, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 241, 236, 0.92));
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -140px;
  height: 180px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 241, 236, 0.92) 0%, rgba(255, 241, 236, 0.72) 42%, rgba(255, 241, 236, 0.24) 78%, rgba(255, 241, 236, 0) 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 32px);
  padding: 136px 42px 120px;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(244, 95, 143, 0.14);
  color: var(--pink);
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-badge {
  position: relative;
  z-index: 4;
  margin-top: 0;
  transform: translateY(92px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(42%, 620px);
  max-width: 620px;
  padding-bottom: 0;
  transform: translateY(-70px);
}

.hero-title-image {
  display: block;
  width: min(120%, 672px);
  max-width: none;
  margin: 46px 0 14px;
  transform: translate(-30px, 10px);
}

.hero-subtitle {
  margin: 0 0 16px 36px;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 700;
}

.hero-desc {
  max-width: 640px;
  margin: 0 0 0 36px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  margin-left: 48px;
}

.hero-actions .btn {
  min-width: 142px;
  min-height: 46px;
  padding: 0 18px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-stage {
  position: absolute;
  inset: 0;
}

.hero-frame {
  position: absolute;
  top: -30px;
  right: 0;
  width: 100%;
  height: calc(100% + 20px);
  object-fit: contain;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.28s ease;
  filter: drop-shadow(0 22px 44px rgba(255, 168, 120, 0.16));
}

.hero-stage.is-loaded .hero-frame {
  opacity: 1;
}

.hero-stats-wrap {
  position: relative;
  z-index: 3;
  margin-top: -52px;
  transform: translateY(-80px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 30px rgba(205, 160, 145, 0.12);
}

.stat-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 249, 247, 0.8);
  border: 1px solid rgba(244, 95, 143, 0.08);
}

.stat-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.stat-icon img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.stat-card strong {
  font-size: 1.38rem;
  font-weight: 800;
}

.stat-card span:last-child {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.section,
.section-card {
  transform: translateY(-100px);
}

.section {
  padding: 96px 0 0;
}

.section-card {
  padding: 72px 0 0;
}

.section-card .container {
  padding: 38px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  margin: 16px 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.box-card,
.flywheel-step {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 173, 50, 0.18);
  box-shadow: 0 12px 24px rgba(232, 182, 164, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.box-card:hover,
.flywheel-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.feature-card h3,
.box-card h3,
.flywheel-step h3 {
  margin: 16px 0 8px;
  font-size: 1.18rem;
}

.feature-card p,
.box-card p,
.flywheel-step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.96rem;
}

.box-card p {
  font-size: 1.08rem;
  font-weight: 600;
}

.boxes-section .section-heading .eyebrow {
  padding: 14px 28px;
  font-size: 1.9rem;
}

.boxes-section .section-heading h2 {
  font-weight: 400;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.box-card {
  text-align: center;
  padding: 22px;
  border: 1px solid rgba(244, 95, 143, 0.42);
}

.box-card h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  margin: 14px 0 10px;
  padding: 10px 20px;
  border-radius: 999px;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(90, 51, 39, 0.12);
}

.box-icon {
  display: block;
  width: min(100%, 185px);
  height: 185px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.box-card:nth-child(1),
.box-card:nth-child(2),
.box-card:nth-child(3) {
  grid-column: span 2;
}

.box-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.box-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.box-card strong {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 1.06rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.box-green {
  background: linear-gradient(180deg, rgba(233, 255, 236, 0.9), rgba(255, 255, 255, 0.9));
}

.box-green h3 {
  background: linear-gradient(135deg, #9ccf48, #7cbf2d);
}

.box-blue {
  background: linear-gradient(180deg, rgba(233, 246, 255, 0.95), rgba(255, 255, 255, 0.92));
}

.box-blue h3 {
  background: linear-gradient(135deg, #3ea1ff, #1d79e6);
}

.box-purple {
  background: linear-gradient(180deg, rgba(244, 236, 255, 0.95), rgba(255, 255, 255, 0.92));
}

.box-purple h3 {
  background: linear-gradient(135deg, #b46dff, #8d4fe7);
}

.box-gold {
  background: linear-gradient(180deg, rgba(255, 243, 207, 0.95), rgba(255, 255, 255, 0.92));
}

.box-gold h3 {
  background: linear-gradient(135deg, #ffbe2f, #f39a07);
}

.box-rainbow {
  background:
    linear-gradient(180deg, rgba(255, 234, 240, 0.9), rgba(255, 255, 255, 0.92)),
    linear-gradient(90deg, rgba(255, 173, 50, 0.16), rgba(244, 95, 143, 0.14));
}

.box-rainbow h3 {
  background: linear-gradient(135deg, #ff8fb3, #c56cff 55%, #ffb64d);
}

.flywheel-section .section-heading .eyebrow {
  padding: 14px 28px;
  font-size: 1.9rem;
}

.flywheel-section .section-heading h2 {
  font-weight: 400;
}

.flywheel-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.flywheel-step {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.flywheel-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.flow-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  color: var(--pink);
  font-size: 1.3rem;
  font-weight: 800;
}

.owner-section {
  padding-bottom: 96px;
}

.owner-banner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  padding: 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(255, 231, 163, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 230, 235, 0.92), rgba(255, 242, 228, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.owner-media {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.owner-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.8) 12%, #000 24%, #000 72%, rgba(0, 0, 0, 0.82) 86%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 12%, #000 24%, #000 76%, rgba(0, 0, 0, 0.82) 88%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.8) 12%, #000 24%, #000 72%, rgba(0, 0, 0, 0.82) 86%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 12%, #000 24%, #000 76%, rgba(0, 0, 0, 0.82) 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.owner-copy h2 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.owner-copy p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 1.06rem;
}

.owner-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.owner-benefit-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 18px 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(244, 95, 143, 0.1);
  text-align: center;
}

.owner-benefit-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.owner-benefit-card span {
  font-weight: 700;
  line-height: 1.45;
}

.site-footer {
  margin-top: -100px;
  padding: 44px 0;
  color: #fff5fe;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 25%),
    linear-gradient(135deg, #f48bb2, #d07cff 70%, #ffb86c);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 245, 254, 0.9);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.asset-slot {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 36%),
    linear-gradient(135deg, rgba(255, 219, 226, 0.8), rgba(255, 243, 219, 0.86));
  border: 1px solid rgba(244, 95, 143, 0.12);
}

.asset-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.asset-slot.is-loaded img {
  opacity: 1;
}

.asset-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  color: rgba(90, 51, 39, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.asset-slot.is-loaded .asset-fallback {
  display: none;
}

.asset-slot--logo {
  width: 220px;
  height: 68px;
  padding: 0 6px;
  border-radius: 18px;
  background: transparent;
  border: 0;
  flex-shrink: 0;
}

.asset-slot--icon {
  width: 100%;
  aspect-ratio: 1 / 0.98;
  padding: 4px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.asset-slot--icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.asset-slot--box {
  width: 100%;
  aspect-ratio: 1 / 0.94;
}

.asset-slot--mini {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 20px;
}

.asset-slot--owner {
  min-height: 360px;
}

@media (max-width: 1260px) {
  .main-nav {
    gap: 18px;
  }

  .mechanism-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .flywheel-track {
    flex-wrap: wrap;
  }

  .flow-arrow {
    display: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --container: min(100% - 40px, 1440px);
  }

  .nav-shell {
    border-radius: 28px;
  }

  .hero-shell,
  .owner-banner {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: 780px;
    padding: 132px 32px 108px;
  }

  .hero-copy {
    width: min(56%, 620px);
    max-width: none;
    transform: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mechanism-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --container: calc(100% - 32px);
  }

  .site-header {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 12px 0;
  }

  .nav-shell {
    align-items: center;
    padding: 10px 12px;
    border-radius: 24px;
  }

  .brand-copy small {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 248, 245, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 28px rgba(167, 120, 97, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .btn-launch {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-section {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-shell {
    min-height: auto;
    padding: 28px 20px;
    gap: 24px;
  }

  .hero-title-image {
    width: min(100%, 672px);
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.06rem;
  }

  .hero-desc {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .hero-visual {
    display: none;
  }

  .hero-section::before {
    background:
      radial-gradient(circle at 20% 10%, rgba(255, 231, 163, 0.32), transparent 25%),
      radial-gradient(circle at 86% 22%, rgba(255, 173, 50, 0.14), transparent 28%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 241, 236, 0.94));
  }

  .hero-stats-wrap {
    margin-top: 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section,
  .section-card {
    padding-top: 64px;
  }

  .section-card .container {
    padding: 22px 18px;
    border-radius: 28px;
  }

  .mechanism-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .box-grid {
    grid-template-columns: 1fr;
  }

  .box-card,
  .box-card:nth-child(1),
  .box-card:nth-child(2),
  .box-card:nth-child(3),
  .box-card:nth-child(4),
  .box-card:nth-child(5) {
    grid-column: auto;
  }

  .flywheel-track {
    flex-direction: column;
  }

  .flow-arrow {
    display: inline-flex;
    width: 100%;
    height: 20px;
    transform: rotate(90deg);
  }

  .owner-benefits {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-bottom div {
    gap: 14px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .mechanism-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-bottom div {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand-copy strong {
    font-size: 1.18rem;
  }
}