:root {
  color-scheme: dark;
  --bg: #07090f;
  --bg-2: #10131c;
  --ink: #f7f9ff;
  --soft: #dce4f4;
  --muted: #a3adbf;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --surface: rgba(255, 255, 255, 0.12);
  --surface-solid: rgba(255, 255, 255, 0.2);
  --blue: #007aff;
  --blue-soft: rgba(0, 122, 255, 0.16);
  --blue-mist: rgba(80, 176, 255, 0.14);
  --blue-deep: rgba(0, 84, 180, 0.2);
  --green: #39d9a3;
  --green-soft: rgba(57, 217, 163, 0.14);
  --green-glass: rgba(225, 255, 244, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 122, 255, 0.3), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(91, 179, 255, 0.18), transparent 30%),
    radial-gradient(circle at 34% 47%, rgba(64, 185, 255, 0.14), transparent 30%),
    radial-gradient(circle at 68% 56%, rgba(57, 217, 163, 0.12), transparent 32%),
    radial-gradient(circle at 22% 82%, rgba(57, 217, 163, 0.16), transparent 34%),
    radial-gradient(circle at 86% 88%, rgba(124, 255, 211, 0.12), transparent 30%),
    linear-gradient(180deg, #0b1422 0, #07101b 36%, #06120f 70%, #081710 100%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

h1,
h2,
p {
  margin: 0;
}

.nav,
.section,
footer {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.nav {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px) saturate(1.35);
  pointer-events: auto;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 13px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-links a:hover,
.nav-links .active {
  background: rgba(255, 255, 255, 0.16);
  color: var(--ink);
}

.nav-cta {
  border: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(220, 230, 255, 0.72));
  color: #0a0d15;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.nav-cta:hover {
  background:
    linear-gradient(135deg, #ffffff, #dce8ff);
  color: #0a0d15;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 62px 24px 58px;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(0, 122, 255, 0.16), transparent 34%, rgba(72, 170, 255, 0.14));
}

.hero-inner {
  width: min(100%, 780px);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, #64b5ff, #007aff 56%, #8cc8ff);
  background-clip: text;
  padding: 0;
  color: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: none;
  -webkit-background-clip: text;
}

h1 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 940px;
  margin: 16px auto 0;
}

h2 {
  margin-top: 15px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--soft);
  font-size: 21px;
  line-height: 1.55;
}

.section-copy {
  max-width: 600px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.download-note {
  margin-top: 12px;
  color: rgba(220, 232, 248, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 18px;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(1.25);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #ffffff, #dce8ff);
  color: #0a0d15;
}

.button.primary:hover {
  background: linear-gradient(135deg, #ffffff, #b9d5ff);
}

.hero-status,
.page-preview {
  display: grid;
  width: min(100%, 720px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px auto 0;
}

.hero-status span,
.page-preview span {
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(245, 250, 255, 0.16);
  padding: 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(1.3);
}

.hero-status b,
.page-preview b {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
}

.product-mockup {
  position: relative;
  width: min(100%, 1120px);
  margin: 56px auto 0;
  padding: 0 24px;
}

.mockup-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(17, 18, 22, 0.94), rgba(32, 36, 48, 0.96));
  box-shadow: 0 32px 90px rgba(19, 28, 45, 0.2);
}

.hero-image-frame {
  position: relative;
  isolation: isolate;
  border: 0;
  background: transparent;
  box-shadow: 0 36px 90px rgba(0, 48, 104, 0.26);
}

.hero-image-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 24px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(0, 122, 255, 0.3), rgba(96, 190, 255, 0.12)),
    linear-gradient(180deg, rgba(3, 18, 42, 0.05), rgba(3, 20, 44, 0.2));
  mix-blend-mode: color;
  opacity: 0.88;
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 24px;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 0, rgba(95, 183, 255, 0.2), transparent 42%),
    linear-gradient(180deg, transparent 60%, rgba(0, 33, 72, 0.16));
}

.mockup-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-image-frame img {
  position: relative;
  z-index: 0;
  border-radius: 24px;
  filter: saturate(0.72) contrast(1.05) brightness(0.94);
}

.floating-panel {
  position: relative;
  display: grid;
  gap: 4px;
  width: 236px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(232, 243, 255, 0.24), rgba(232, 243, 255, 0.1));
  padding: 14px;
  text-align: left;
  box-shadow: 0 22px 55px rgba(0, 20, 50, 0.34);
  backdrop-filter: blur(22px) saturate(1.35);
}

.floating-panel span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.floating-panel b {
  color: var(--ink);
  font-size: 15px;
}

.floating-panel small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.hero-float-stack {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: -88px;
  display: grid;
  gap: 14px;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-float-stack .floating-panel {
  min-height: 82px;
}

.mockup-showcase {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.mockup-slot {
  isolation: isolate;
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(0, 122, 255, 0.24), transparent 44%),
    linear-gradient(225deg, rgba(91, 179, 255, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(1.25);
}

.mockup-slot:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(0, 122, 255, 0.22), transparent 44%),
    linear-gradient(225deg, rgba(110, 197, 255, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.mockup-slot:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(0, 122, 255, 0.2), transparent 44%),
    linear-gradient(225deg, rgba(118, 205, 255, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.mockup-slot-wide {
  grid-column: span 2;
  min-height: 340px;
}

.mockup-slot img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
  filter: saturate(0.66) contrast(1.06) brightness(0.86);
  transform: scale(1.01);
}

.mockup-slot::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(0, 122, 255, 0.28), rgba(90, 190, 255, 0.08)),
    linear-gradient(180deg, rgba(3, 14, 32, 0.08), rgba(3, 7, 14, 0.22));
  mix-blend-mode: color;
  opacity: 0.86;
}

.mockup-slot::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 38%, rgba(3, 7, 14, 0.5)),
    radial-gradient(circle at 18% 10%, rgba(0, 122, 255, 0.18), transparent 36%);
}

.slot-glass {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(232, 243, 255, 0.14);
  padding: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(1.35);
}

[data-mockup-slot="scrimparse"] img {
  object-position: center;
}

[data-mockup-slot="assistant-coach"] img {
  object-position: 56% center;
}

[data-mockup-slot="strategy-board"] img {
  object-position: center;
}

.slot-glass span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.slot-glass b {
  color: var(--ink);
  font-size: 19px;
}

.slot-glass small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: 74px 0;
}

.intro-grid,
.loop-strip,
.split-band,
.security-strip,
.mockup-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(520px, 1.14fr);
  gap: 56px;
  align-items: start;
}

.section-title {
  position: sticky;
  top: 26px;
}

.workflow-grid,
.loop-steps,
.feature-matrix,
.system-grid,
.role-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.workflow-grid article,
.loop-steps article,
.feature-matrix article,
.system-grid article,
.role-grid article {
  min-height: 150px;
  border: 1px solid rgba(245, 250, 255, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(232, 243, 255, 0.2), rgba(232, 243, 255, 0.075));
  padding: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 48px rgba(0, 20, 50, 0.2);
  backdrop-filter: blur(28px) saturate(1.38);
}

.workflow-grid article:nth-child(4n + 1),
.loop-steps article:nth-child(4n + 1),
.feature-matrix article:nth-child(4n + 1),
.system-grid article:nth-child(4n + 1) {
  background:
    linear-gradient(180deg, rgba(232, 243, 255, 0.22), rgba(232, 243, 255, 0.075)),
    linear-gradient(320deg, rgba(0, 122, 255, 0.07), transparent 72%);
}

.workflow-grid article:nth-child(4n + 2),
.loop-steps article:nth-child(4n + 2),
.feature-matrix article:nth-child(4n + 2),
.system-grid article:nth-child(4n + 2) {
  background:
    linear-gradient(180deg, rgba(232, 243, 255, 0.21), rgba(232, 243, 255, 0.07)),
    linear-gradient(320deg, rgba(0, 122, 255, 0.08), transparent 72%);
}

.workflow-grid article:nth-child(4n + 3),
.loop-steps article:nth-child(4n + 3),
.feature-matrix article:nth-child(4n + 3),
.system-grid article:nth-child(4n + 3) {
  background:
    linear-gradient(180deg, rgba(232, 243, 255, 0.2), rgba(232, 243, 255, 0.07)),
    linear-gradient(320deg, rgba(80, 176, 255, 0.07), transparent 72%);
}

.workflow-grid article:nth-child(4n + 4),
.loop-steps article:nth-child(4n + 4),
.feature-matrix article:nth-child(4n + 4),
.system-grid article:nth-child(4n + 4) {
  background:
    linear-gradient(180deg, rgba(232, 243, 255, 0.2), rgba(232, 243, 255, 0.065)),
    linear-gradient(320deg, rgba(0, 122, 255, 0.065), transparent 72%);
}

.workflow-grid span,
.loop-steps span,
.feature-matrix span,
.system-grid span,
.role-grid span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.workflow-grid b,
.loop-steps b,
.feature-matrix b,
.system-grid b,
.role-grid b {
  display: block;
  margin-top: 11px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.38;
}

.workflow-grid p,
.loop-steps p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.split-band,
.security-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.loop-strip {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.loop-strip .section-title {
  position: static;
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.loop-strip .section-copy {
  margin-right: auto;
  margin-left: auto;
}

.ops-list,
.timeline {
  display: grid;
  gap: 12px;
}

.ops-row,
.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 70px;
  border: 1px solid rgba(245, 250, 255, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(232, 243, 255, 0.2), rgba(232, 243, 255, 0.075));
  padding: 16px 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(28px) saturate(1.35);
}

.ops-row span,
.timeline-item span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.ops-row b,
.timeline-item b {
  color: var(--soft);
  font-size: 15px;
  line-height: 1.5;
}

.security-strip .ops-row,
.split-band .ops-row {
  border-color: rgba(210, 255, 243, 0.28);
  background:
    linear-gradient(180deg, rgba(232, 255, 248, 0.18), rgba(232, 243, 255, 0.07)),
    linear-gradient(135deg, rgba(0, 122, 255, 0.06), rgba(57, 217, 163, 0.06));
}

.security-strip .ops-row span,
.split-band .ops-row span {
  color: #28d5b2;
}

.page {
  padding-top: 64px;
}

.page-head {
  max-width: 880px;
}

.page h1 {
  font-size: 64px;
  line-height: 1;
}

.page .actions {
  justify-content: flex-start;
}

.page .page-preview {
  margin-left: 0;
}

.page .feature-matrix,
.page .timeline {
  margin-top: 44px;
}

.module-head {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.module-head .section-copy {
  margin-right: auto;
  margin-left: auto;
}

.module-section .system-grid {
  margin-top: 34px;
}

.module-section {
  position: relative;
}

.module-section .eyebrow,
.download-card .eyebrow {
  background: linear-gradient(90deg, #7df4cd, var(--green) 56%, #c4fff0);
  background-clip: text;
  -webkit-background-clip: text;
}

.module-section .system-grid article {
  border-color: rgba(225, 255, 244, 0.3);
  background:
    linear-gradient(180deg, rgba(225, 255, 244, 0.2), rgba(225, 255, 244, 0.07)),
    linear-gradient(320deg, rgba(57, 217, 163, 0.075), transparent 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 48px rgba(0, 42, 31, 0.22);
}

.module-section .system-grid article:nth-child(4n + 1),
.module-section .system-grid article:nth-child(4n + 2),
.module-section .system-grid article:nth-child(4n + 3),
.module-section .system-grid article:nth-child(4n + 4) {
  background:
    linear-gradient(180deg, rgba(225, 255, 244, 0.21), rgba(225, 255, 244, 0.07)),
    linear-gradient(320deg, rgba(57, 217, 163, 0.08), transparent 72%);
}

.module-section .system-grid span {
  color: var(--green);
}

.cta-band {
  text-align: center;
}

.cta-band h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.download-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 250, 255, 0.3);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(225, 255, 244, 0.22), rgba(225, 255, 244, 0.075)),
    linear-gradient(135deg, rgba(57, 217, 163, 0.11), rgba(0, 122, 255, 0.035));
  padding-right: 28px;
  padding-left: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 28px 86px rgba(0, 42, 31, 0.28);
  backdrop-filter: blur(32px) saturate(1.38);
}

.download-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 0, rgba(145, 255, 219, 0.2), transparent 42%),
    linear-gradient(90deg, rgba(57, 217, 163, 0.12), transparent 42%, rgba(0, 122, 255, 0.08));
}

.download-card > * {
  position: relative;
  z-index: 1;
}

.download-card .section-copy {
  margin-right: auto;
  margin-left: auto;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.download-meta span {
  border: 1px solid rgba(225, 255, 244, 0.22);
  border-radius: 999px;
  background: rgba(225, 255, 244, 0.12);
  padding: 9px 12px;
  color: rgba(241, 247, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(14px) saturate(1.2);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 26px 0 36px;
  color: var(--muted);
  font-size: 13px;
}

footer a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 980px) {
  h1 {
    font-size: 62px;
  }

  h2,
  .page h1 {
    font-size: 42px;
  }

  .hero {
    padding-top: 38px;
  }

  .floating-panel {
    position: static;
    width: auto;
  }

  .product-mockup {
    padding: 0;
  }

  .hero-float-stack {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
    transform: none;
  }

  .hero-float-stack .floating-panel,
  .hero-float-stack .floating-panel:nth-child(n) {
    min-height: 92px;
    transform: none;
  }

  .intro-grid,
  .loop-strip,
  .split-band,
  .security-strip,
  .mockup-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title {
    position: static;
  }

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

@media (max-width: 680px) {
  .nav,
  .section,
  footer {
    width: min(100% - 30px, 1180px);
  }

  .nav {
    min-height: auto;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    padding: 34px 15px 42px;
  }

  h1 {
    font-size: 46px;
  }

  h2,
  .page h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 17px;
  }

  .actions {
    display: grid;
  }

  .actions .button {
    width: 100%;
  }

  .hero-status,
  .page-preview,
  .hero-float-stack,
  .mockup-slots,
  .loop-steps,
  .workflow-grid,
  .feature-matrix,
  .system-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .mockup-slot-wide {
    grid-column: span 1;
  }

  .mockup-frame {
    border-radius: 12px;
  }

  .ops-row,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  footer {
    display: grid;
  }
}
