:root {
  color-scheme: light;
  --navy: #07111f;
  --navy-2: #0c1b2e;
  --ink: #0d1726;
  --text: #f8fbff;
  --body: #233044;
  --muted: #64748b;
  --line: #dbe5f1;
  --soft: #f5f8fc;
  --card: #ffffff;
  --cyan: #24b9ff;
  --indigo: #7c5cff;
  --emerald: #21c992;
  --gold: #f7bd4b;
  --danger: #ff6b6b;
  --radius: 8px;
  --shadow-sm: 0 10px 30px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 30px 90px rgba(5, 14, 29, 0.22);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: #ffffff;
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.75;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(36, 185, 255, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--cyan);
  color: var(--navy);
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-dark {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(36, 185, 255, 0.14), transparent 35%),
    linear-gradient(225deg, rgba(33, 201, 146, 0.12), transparent 32%),
    linear-gradient(180deg, var(--navy), var(--navy-2));
}

.light {
  background: var(--soft);
}

.main-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 14px 0;
  color: #e8f3ff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.main-header.is-scrolled,
.main-header:focus-within {
  padding: 8px 0;
  background: rgba(7, 17, 31, 0.86);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.nav-actions,
.desktop-nav,
.hero-actions,
.card-actions,
.role-list,
.version-tabs {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--emerald));
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(36, 185, 255, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  color: rgba(232, 243, 255, 0.72);
  font-size: 0.75rem;
}

.desktop-nav {
  gap: 4px;
}

.desktop-nav a,
.text-link {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: rgba(232, 243, 255, 0.78);
  font-size: 0.92rem;
  transition: background 160ms ease, color 160ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav-actions {
  gap: 10px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--emerald));
  color: var(--navy);
  box-shadow: 0 16px 38px rgba(36, 185, 255, 0.22);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn-card {
  width: 100%;
  border-color: color-mix(in srgb, var(--accent), white 55%);
  background: color-mix(in srgb, var(--accent), white 88%);
  color: color-mix(in srgb, var(--accent), #07111f 50%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 84px;
}

.hero::after {
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 280px;
  background: radial-gradient(ellipse, rgba(36, 185, 255, 0.22), transparent 62%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 58px;
  min-height: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-weight: 900;
}

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

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.18;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.42rem;
}

.hero-lead,
.section-copy {
  color: #d5e3f4;
  font-size: 1.08rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 14px;
}

.hero-demo-link {
  color: var(--cyan);
  font-weight: 900;
}

.trust-line {
  color: rgba(232, 243, 255, 0.76);
  font-weight: 700;
}

.product-stage {
  position: relative;
  min-height: 600px;
}

.stage-glow {
  position: absolute;
  inset: 8% 4% auto auto;
  z-index: -1;
  width: 78%;
  opacity: 0.28;
  filter: blur(2px) saturate(1.08);
  transform: rotate(-4deg);
}

.browser-frame,
.mobile-frame,
.floating-feature {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.main-frame {
  position: absolute;
  top: 52px;
  right: 0;
  width: 82%;
  min-height: 390px;
  overflow: hidden;
  animation: floatA 7s ease-in-out infinite;
}

.admin-frame {
  position: absolute;
  left: 0;
  bottom: 92px;
  width: 44%;
  min-height: 205px;
  overflow: hidden;
  animation: floatB 8s ease-in-out infinite;
}

.frame-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.78);
}

.frame-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.frame-top strong {
  margin-inline-start: auto;
  font-size: 0.85rem;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 18px;
}

.preview-sidebar,
.preview-main,
.preview-bars,
.preview-grid,
.mini-chart,
.mobile-frame {
  display: grid;
  gap: 10px;
}

.preview-sidebar span {
  min-height: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
}

.preview-hero {
  height: 92px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(36, 185, 255, 0.32), rgba(33, 201, 146, 0.2));
}

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

.preview-grid span,
.preview-bars span,
.mobile-card,
.mobile-frame > span {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
}

.preview-grid span {
  height: 78px;
}

.preview-bars span {
  height: 18px;
}

.mini-chart {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  height: 150px;
  padding: 18px;
}

.mini-chart span {
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--cyan), rgba(36, 185, 255, 0.18));
}

.mini-chart span:nth-child(1) {
  height: 52%;
}

.mini-chart span:nth-child(2) {
  height: 82%;
  background: linear-gradient(180deg, var(--indigo), rgba(124, 92, 255, 0.18));
}

.mini-chart span:nth-child(3) {
  height: 66%;
  background: linear-gradient(180deg, var(--emerald), rgba(33, 201, 146, 0.18));
}

.mini-chart span:nth-child(4) {
  height: 92%;
  background: linear-gradient(180deg, var(--gold), rgba(247, 189, 75, 0.18));
}

.mobile-frame {
  position: absolute;
  right: 58%;
  top: 114px;
  width: 142px;
  min-height: 286px;
  padding: 16px 12px;
  background: rgba(8, 19, 34, 0.86);
  animation: floatC 7.5s ease-in-out infinite;
}

.mobile-notch {
  width: 52px;
  height: 8px;
  margin: 0 auto 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.mobile-card {
  height: 92px;
  background: linear-gradient(135deg, rgba(36, 185, 255, 0.32), rgba(124, 92, 255, 0.24));
}

.mobile-frame > span {
  height: 28px;
}

.floating-feature {
  position: absolute;
  padding: 10px 12px;
  color: #ffffff;
  font-weight: 900;
}

.f1 {
  top: 92px;
  left: 5%;
}

.f2 {
  right: 8%;
  bottom: 50px;
}

.f3 {
  left: 18%;
  bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.light h2,
.section h2,
.section h3 {
  color: var(--ink);
}

.problem-grid {
  display: grid;
  gap: 16px;
}

.problem-grid article,
.journey-step,
.version-card,
.version-detail,
.video-card,
.demo-card,
.faq-list details,
.branding-showcase {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.problem-grid article {
  padding: 24px;
}

.problem-grid strong,
.problem-grid span {
  display: block;
}

.problem-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.2rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.journey-step {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.journey-step::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--emerald));
  content: "";
}

.journey-step span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--cyan);
  font-weight: 900;
}

.version-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.version-card {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 24px;
}

.version-card::before {
  display: block;
  width: 54px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 99px;
  background: var(--accent);
  content: "";
}

.card-top {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.edition-pill {
  width: fit-content;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent), white 86%);
  color: color-mix(in srgb, var(--accent), black 28%);
  font-weight: 900;
}

.audience,
.version-card p,
.journey-step p,
.video-card p,
.demo-card p,
.branding-showcase p,
.faq-list p {
  color: var(--muted);
}

.version-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 24px;
  padding: 0;
  list-style: none;
}

.version-card li {
  position: relative;
  padding-inline-start: 22px;
}

.version-card li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.card-actions {
  gap: 12px;
  margin-top: auto;
}

.watch-link {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: color-mix(in srgb, var(--accent), var(--ink) 25%);
  cursor: pointer;
  font-weight: 900;
}

.version-tabs {
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.version-tab {
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.version-tab.is-active {
  border-color: transparent;
  background: var(--accent);
  color: #ffffff;
}

.version-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 28px;
  border-top: 5px solid var(--accent);
}

.role-list {
  gap: 8px;
  flex-wrap: wrap;
}

.role-list span,
.screen-placeholders span {
  padding: 7px 10px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent), white 88%);
  color: color-mix(in srgb, var(--accent), var(--ink) 38%);
  font-weight: 800;
}

.feature-panel {
  display: grid;
  gap: 10px;
}

.feature-panel div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--soft);
}

.feature-panel span {
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.screen-placeholders {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.screen-placeholders span {
  display: grid;
  min-height: 96px;
  place-items: center;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.video-card {
  overflow: hidden;
}

.video-card h3,
.video-card p,
.video-card .eyebrow {
  padding-inline: 18px;
}

.video-card .eyebrow {
  margin-top: 18px;
}

.video-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 0;
  background: var(--navy);
  cursor: pointer;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  min-width: 78px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line);
}

.comparison-row span {
  min-height: 72px;
  padding: 18px;
  border-inline-start: 1px solid var(--line);
  color: var(--body);
}

.comparison-row span:first-child {
  border-inline-start: 0;
  background: #f8fbff;
  color: var(--ink);
  font-weight: 900;
}

.comparison-row.header span {
  background: linear-gradient(135deg, #07111f, #0c1b2e);
  color: #ffffff;
  font-weight: 900;
}

.comparison-row.header span:nth-child(2) {
  color: #7dd8ff;
}

.comparison-row.header span:nth-child(3) {
  color: #b8a9ff;
}

.comparison-row.header span:nth-child(4) {
  color: #8df0cc;
}

.demo-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
  align-items: start;
}

.demo-layout .section-copy {
  color: var(--muted);
}

.demo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.demo-card {
  padding: 20px;
  border-top: 5px solid var(--accent);
}

.credentials {
  display: grid;
  gap: 8px;
  min-height: 72px;
  margin: 16px 0;
}

.credentials button,
.empty-credentials {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px dashed color-mix(in srgb, var(--accent), white 40%);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent), white 93%);
  text-align: right;
}

.credentials button {
  cursor: copy;
}

.credentials button.copied::after {
  content: "تم النسخ";
  display: block;
  color: var(--emerald);
  font-weight: 900;
}

.credentials span,
.credentials strong,
.credentials small,
.credentials em {
  display: block;
}

.credentials small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 800;
}

.credentials em {
  margin-top: 5px;
  color: color-mix(in srgb, var(--accent), var(--ink) 30%);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.branding-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(36, 185, 255, 0.08), transparent),
    #ffffff;
}

.brand-system {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.swatch {
  min-height: 86px;
  border-radius: var(--radius);
}

.swatch.cyan {
  background: var(--cyan);
}

.swatch.indigo {
  background: var(--indigo);
}

.swatch.emerald {
  background: var(--emerald);
}

.brand-card {
  grid-column: span 2;
  min-height: 92px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
}

.muted-card {
  grid-column: span 1;
  background: var(--soft);
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  padding: 92px 0;
}

.final-cta-inner {
  max-width: 850px;
  text-align: center;
}

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

.main-footer {
  padding: 42px 0;
  background: #050c16;
  color: rgba(248, 251, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 24px;
}

.footer-grid a,
.footer-grid strong {
  display: block;
}

.footer-grid strong {
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-grid a {
  margin-bottom: 8px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 20px;
}

.video-modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 15, 0.78);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: -46px;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.8rem;
}

.video-host {
  aspect-ratio: 16 / 9;
}

.video-host iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
}

.video-fallback {
  display: grid;
  height: 100%;
  min-height: 320px;
  place-items: center;
  padding: 32px;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms ease, transform 640ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-0.5deg); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@keyframes floatC {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(7, 17, 31, 0.96);
    box-shadow: var(--shadow-lg);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 12px;
    border-radius: var(--radius);
    color: #ffffff;
  }

  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-grid,
  .split,
  .demo-layout,
  .branding-showcase {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .product-stage {
    min-height: 560px;
  }

  .journey-track,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .version-grid,
  .demo-cards {
    grid-template-columns: 1fr;
  }

  .version-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 118px;
  }

  .nav-actions .text-link,
  .nav-actions > .btn {
    display: none;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions .btn,
  .hero-demo-link,
  .demo-card .btn {
    width: 100%;
  }

  .product-stage {
    min-height: 480px;
  }

  .main-frame {
    top: 30px;
    width: 100%;
  }

  .admin-frame {
    bottom: 64px;
    width: 58%;
  }

  .mobile-frame {
    right: auto;
    left: 10px;
    top: 118px;
  }

  .floating-feature {
    display: none;
  }

  .dashboard-preview {
    grid-template-columns: 62px 1fr;
    gap: 10px;
    padding: 12px;
  }

  .journey-track,
  .video-grid,
  .screen-placeholders,
  .footer-grid,
  .version-detail {
    grid-template-columns: 1fr;
  }

  .comparison {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-row {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
  }

  .comparison-row.header {
    display: none;
  }

  .comparison-row span {
    min-height: auto;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .comparison-row span:first-child {
    border-top: 0;
    background: #f8fbff;
  }

  .brand-system {
    grid-template-columns: 1fr;
  }

  .brand-card,
  .muted-card {
    grid-column: auto;
  }
}
