:root {
  --bg-primary: #060708;
  --bg-secondary: #0d1213;
  --bg-pane: rgba(13, 20, 21, 0.72);
  --glow-gold: rgba(255, 215, 92, 0.45);
  --glow-green: rgba(45, 216, 152, 0.35);
  --text-primary: #f8fff7;
  --text-secondary: rgba(210, 230, 223, 0.7);
  --accent-gold: #ffd75c;
  --accent-green: #2dd898;
  --border-soft: rgba(255, 255, 255, 0.14);
  --card-shadow: rgba(0, 0, 0, 0.55);
  --card-shadow-strong: rgba(0, 0, 0, 0.7);
  --font-heading: 'Google Sans Display', sans-serif;
  --font-body: 'Space Mono', 'Google Sans Display', sans-serif;
}

.idle-toolbar {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin: 0.8rem 0 0.4rem;
}

.idle-toolbar button {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 18, 19, 0.78);
  color: var(--text-primary);
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.idle-toolbar button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px var(--glow-green);
}

.idle-toolbar button.is-active {
  background: linear-gradient(90deg, rgba(89, 255, 224, 0.85), rgba(45, 216, 152, 0.85));
  color: #041112;
  border-color: transparent;
  box-shadow: 0 16px 38px rgba(45, 216, 152, 0.3);
}

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

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% -20%, rgba(45, 216, 152, 0.18), transparent 55%),
              radial-gradient(circle at 80% 0%, rgba(255, 215, 92, 0.16), transparent 60%),
              linear-gradient(180deg, #030405 0%, #060708 55%, #0d1213 100%);
  color: var(--text-primary);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(45, 216, 152, 0.22), transparent 52%),
    radial-gradient(circle at bottom right, rgba(255, 215, 92, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(3, 5, 7, 0.95), rgba(8, 12, 13, 0.9));
  z-index: -2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.5rem, 6vw, 4rem);
  background: linear-gradient(180deg, rgba(7, 11, 12, 0.92) 0%, rgba(7, 11, 12, 0) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 30;
}

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

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--glow-gold);
}

.brand-copy h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.site-header nav {
  display: flex;
  gap: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 245, 230, 0.7);
}

.site-header nav a:hover {
  color: var(--accent);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.cta-button[data-primary] {
  background: linear-gradient(90deg, #ffd75c, #2dd898 60%, #59ffe0);
  color: #041112;
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(45, 216, 152, 0.35);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(240, 141, 42, 0.4);
}

.cta-button .icon {
  font-family: 'Material Symbols Outlined';
  font-size: 1.2rem;
}

main {
  padding-top: 96px;
  margin: 0 auto;
  max-width: min(1700px, 100vw);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 3rem);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.hero {
  min-height: calc(100vh - 148px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2.3rem, 5.5vw, 5.4rem);
  padding: clamp(1.4rem, 4.5vh, 3.4rem) clamp(1.5rem, 7vw, 4.8rem) clamp(2.4rem, 6.5vh, 4.2rem);
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  line-height: 1.1;
}

.hero-left .lead {
  font-size: 1.05rem;
  color: rgba(223, 244, 239, 0.78);
  max-width: 540px;
  line-height: 1.8;
}

.hero-highlights {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.3rem);
  flex-wrap: wrap;
}

.highlight-chip {
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: rgba(7, 14, 14, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

.chip-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.chip-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
}

.hero-feature-ribbon {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ribbon-card {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: rgba(10, 16, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.ribbon-card .icon {
  font-family: 'Material Symbols Outlined';
  font-size: 1.2rem;
  color: var(--accent-green);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.hero-stage {
  position: relative;
  width: min(500px, 80vw);
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(13, 21, 24, 0.85), rgba(8, 12, 13, 0.9));
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 215, 92, 0.18), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(45, 216, 152, 0.14), transparent 55%);
}

.hero-stage--fallback {
  background: linear-gradient(160deg, rgba(13, 21, 24, 0.85), rgba(8, 12, 13, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
}

#heroCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.gesture-toolbar {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.gesture-toolbar button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 18, 19, 0.86);
  color: var(--text-primary);
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gesture-toolbar button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px var(--glow-green);
}

.gesture-toolbar button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.hero-caption {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 0.08em;
}

.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px var(--card-shadow-strong);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 2, 1, 0), rgba(5, 2, 1, 0.78)),
    radial-gradient(circle at top right, rgba(240, 141, 42, 0.35), transparent 55%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.hero-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.15;
}

.hero-copy .lead {
  font-size: 1.05rem;
  color: rgba(255, 245, 230, 0.75);
  max-width: 520px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex-wrap: wrap;
}

.hero-stats li {
  min-width: 140px;
}

.hero-stats strong {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 700;
}

.hero-stats span {
  display: block;
  margin-top: 0.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--text-secondary);
}

.features {
  padding: clamp(5rem, 12vh, 7rem) clamp(1.5rem, 8vw, 5rem);
  background: linear-gradient(180deg, rgba(45, 216, 152, 0.12), rgba(6, 7, 8, 0));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-card {
  padding: 2.2rem;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(160deg, rgba(8, 14, 15, 0.88), rgba(12, 18, 19, 0.74));
  box-shadow: 0 24px 50px var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(45, 216, 152, 0.28);
}

.feature-card .icon {
  font-family: 'Material Symbols Outlined';
  font-size: 1.8rem;
  color: var(--accent-green);
}

.environments {
  padding: clamp(5.5rem, 12vh, 7.5rem) clamp(1.5rem, 8vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.environment-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.environment-gallery figure {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(11, 16, 17, 0.82);
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 55px var(--card-shadow);
  transition: transform 0.25s ease;
}

.environment-gallery figure:hover {
  transform: translateY(-10px);
}

.environment-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.environment-gallery figcaption {
  padding: 1rem 1.4rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.timeline {
  padding: clamp(5rem, 12vh, 7rem) clamp(1.5rem, 8vw, 4.5rem);
  background: linear-gradient(180deg, rgba(255, 215, 92, 0.08), rgba(6, 7, 8, 0));
}

.timeline-steps {
  display: grid;
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.timeline-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: linear-gradient(160deg, rgba(9, 14, 15, 0.88), rgba(12, 18, 19, 0.74));
  box-shadow: 0 25px 55px var(--card-shadow);
}

.timeline .step-index {
  font-size: 2.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
}

.timeline h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}


.models {
  padding: clamp(5.5rem, 12vh, 7.5rem) clamp(1.5rem, 8vw, 5rem);
}

.models-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(540px, 1.2fr);
  gap: clamp(2.8rem, 6vw, 5.6rem);
  align-items: center;
  position: relative;
}

.models-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(10, 18, 19, 0.86), rgba(12, 18, 19, 0.72));
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 55px var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(45, 216, 152, 0.28);
}

.download-card .icon {
  font-family: 'Material Symbols Outlined';
  font-size: 1.4rem;
  color: var(--accent-green);
}

.download-card span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.models-mock {
  position: relative;
  display: grid;
  gap: 1.8rem;
  justify-items: end;
  padding-right: clamp(0rem, 3vw, 1.5rem);
}

.models-mock::before {
  content: '';
  position: absolute;
  inset: -16% -22% 8% 10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(45, 216, 152, 0.28), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(255, 215, 92, 0.22), transparent 70%);
  opacity: 0.58;
  pointer-events: none;
  z-index: 0;
}

.mock-card {
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: linear-gradient(160deg, rgba(9, 15, 16, 0.94), rgba(4, 7, 8, 0.88));
  z-index: 1;
}

@media (min-width: 768px) {
  .mock-primary {
    width: min(720px, 94vw);
  }
}

.mock-primary img {
  width: 100%;
  display: block;
}

.mock-primary::after {
  content: '';
  position: absolute;
  inset: 18% -12% -22% -26%;
  background: linear-gradient(140deg, rgba(45, 216, 152, 0.24), transparent 65%),
              radial-gradient(circle at 65% 20%, rgba(255, 215, 92, 0.28), transparent 70%);
  filter: blur(42px);
  z-index: -1;
}
.mock-preview {
  border: none;
}
.mock-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(45, 216, 152, 0.22);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mock-preview:focus-visible,
.mock-preview:hover {
  transform: translateY(-6px);
}

.mock-preview:focus-visible::after,
.mock-preview:hover::after {
  opacity: 1;
}

.mock-overlay {
  position: absolute;
  bottom: -4.4rem;
  right: clamp(-2.2rem, -3.6vw, -3.4rem);
  width: min(400px, 72vw);
  padding: 2.2rem;
  background:
    linear-gradient(160deg, rgba(255, 215, 92, 0.24), rgba(45, 216, 152, 0.28)),
    linear-gradient(25deg, rgba(3, 17, 16, 0.85), rgba(4, 9, 10, 0.65));
  box-shadow: 0 54px 120px rgba(45, 216, 152, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mock-overlay-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #cdfbf6;
  font-size: 0.95rem;
  line-height: 1.5;
}

.mock-overlay .icon {
  font-family: 'Material Symbols Outlined';
  font-size: 1.6rem;
  color: #02543d;
}

.mock-overlay::before {
  content: '';
  position: absolute;
  inset: -34% 42% 58% -20%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.32), transparent 65%);
  opacity: 0.5;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .mock-primary {
    width: min(880px, 96vw);
  }
  .models-inner {
    gap: clamp(3.2rem, 6vw, 6.2rem);
  }
  .mock-overlay {
    right: clamp(-1.6rem, -2.8vw, -3rem);
    width: min(420px, 68vw);
  }
}

.mock-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(5, 8, 9, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 120;
}

.mock-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.mock-modal-backdrop {
  position: absolute;
  inset: 0;
}

.mock-modal-content {
  position: relative;
  max-width: min(980px, 92vw);
  max-height: 85vh;
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(9, 15, 16, 0.95), rgba(4, 7, 8, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 1.5rem;
}

.mock-modal-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 18px;
}

.mock-modal-close {
  position: absolute;
  top: clamp(0.6rem, 1.5vw, 1rem);
  right: clamp(0.6rem, 1.5vw, 1rem);
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mock-modal-close:hover,
.mock-modal-close:focus-visible {
  background: rgba(255, 215, 92, 0.32);
}

.cta-final {
  padding: clamp(5rem, 12vh, 7rem) clamp(1.5rem, 8vw, 5rem) clamp(6rem, 14vh, 8rem);
}

.cta-card {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 215, 92, 0.22), rgba(45, 216, 152, 0.18));
  color: #cafaf7;
  text-align: center;
  box-shadow: 0 38px 70px var(--card-shadow-strong);
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  margin-bottom: 1.4rem;
}

.cta-card p {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(213, 249, 244, 0.78);
}

.cta-card .cta-button {
  margin-top: 2.4rem;
}

.site-footer {
  padding: clamp(2.5rem, 6vh, 4rem) clamp(1.5rem, 6vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-soft);
  background: rgba(3, 6, 7, 0.9);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.site-footer nav {
  display: flex;
  gap: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-footer nav a:hover {
  color: var(--accent-green);
}

.site-footer p {
  flex-basis: 100%;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

@media (max-width: 1080px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-media {
    max-width: 560px;
    justify-self: center;
  }
  .environments,
  .models {
    grid-template-columns: 1fr;
  }
  .models-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem;
  }
  .models-mock {
    justify-items: center;
    padding-right: 0;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .hero-left {
    align-items: center;
  }
  .hero-left .lead {
    max-width: 640px;
  }
  .hero-feature-ribbon {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 1rem 1.5rem;
  }
  .hero {
    min-height: auto;
    padding: clamp(3.2rem, 9vh, 4.6rem) clamp(1.5rem, 6vw, 3rem);
  }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-left {
    align-items: flex-start;
    text-align: left;
  }
  .hero-feature-ribbon {
    justify-content: flex-start;
  }
  .environment-gallery,
  .download-grid {
    grid-template-columns: 1fr;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer nav {
    flex-direction: column;
    gap: 0.8rem;
  }
  .models-inner {
    gap: 2.2rem;
  }
  .mock-primary {
    width: 100%;
  }
  .models-mock::before {
    display: none;
  }
  .mock-overlay {
    position: static;
    width: 100%;
    padding: 1.6rem;
    margin-top: 0.2rem;
    box-shadow: 0 24px 50px rgba(45, 216, 152, 0.24);
  }
  .mock-overlay::before {
    inset: -60% 20% 30% -20%;
  }
}
