:root {
  --primary: #0f3d33;
  --primary-soft: #1f5a4c;
  --accent: #d7a84b;
  --accent-soft: #f0e5cf;
  --bg: #f6f8f6;
  --bg-glow: #f8f1e4;
  --card: rgba(255, 255, 255, 0.9);
  --card-strong: #fffdf9;
  --text: #18221d;
  --muted: #5f6d67;
  --border: rgba(15, 61, 51, 0.12);
  --shadow: 0 24px 80px rgba(15, 61, 51, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Kufi Arabic", "Noto Naskh Arabic", "Segoe UI",
    Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(215, 168, 75, 0.24), transparent 32%),
    radial-gradient(circle at bottom left, rgba(15, 61, 51, 0.18), transparent 28%),
    linear-gradient(180deg, #fbfcfb 0%, var(--bg) 100%);
  padding: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%),
    radial-gradient(circle at 15% 20%, rgba(248, 241, 228, 0.7), transparent 16%);
}

a {
  color: inherit;
}

.page {
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88)),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow);
  overflow: visible;
  backdrop-filter: blur(12px);
  min-height: 100vh;
}

.site-header,
.hero,
.features,
.content-sections,
.footer {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 34px;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(15, 61, 51, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 24px rgba(15, 61, 51, 0.06);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.site-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(154, 106, 58, 0.2);
  background: linear-gradient(180deg, #ffffff, #f6efe4);
  box-shadow: 0 12px 26px rgba(15, 61, 51, 0.1);
}

.site-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  text-align: right;
}

.site-brand-copy > strong,
.site-brand-copy > span {
  display: block;
}

.app-name-inline,
.app-name-display {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
}

.site-brand-copy > strong {
  color: var(--primary);
  font-size: 16px;
}

.site-brand-copy > span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.site-brand-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  flex-direction: row-reverse;
  line-height: 1;
}

.site-brand-latin {
  direction: ltr;
  unicode-bidi: isolate;
}

.site-brand-arabic {
  direction: rtl;
  unicode-bidi: isolate;
}

.mobile-nav-toggle,
.mobile-nav-close,
.mobile-nav-backdrop,
.site-nav-header {
  display: none;
}

.mobile-nav-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15, 61, 51, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 241, 228, 0.9)),
    rgba(15, 61, 51, 0.04);
  color: var(--primary);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(15, 61, 51, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    background 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
}

.mobile-nav-toggle:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 241, 228, 0.96)),
    rgba(15, 61, 51, 0.08);
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(15, 61, 51, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mobile-nav-toggle:active {
  transform: translateY(0);
}

.mobile-nav-toggle-icon {
  width: 22px;
  height: 22px;
}

.mobile-nav-toggle-icon path {
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 61, 51, 0.07);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 140ms ease,
    background 140ms ease;
}

.site-nav a:hover {
  background: rgba(15, 61, 51, 0.12);
  transform: translateY(-1px);
}

.site-nav-header {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.site-nav-header strong {
  color: var(--primary);
  font-size: 18px;
}

.mobile-nav-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(15, 61, 51, 0.07);
  color: var(--primary);
  font-size: 28px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(10, 31, 26, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 60;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.85fr);
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.62);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.topline {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 61, 51, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.topline::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(215, 168, 75, 0.18);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.logo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f6efe4);
  border: 1px solid rgba(154, 106, 58, 0.2);
  box-shadow:
    0 16px 38px rgba(15, 61, 51, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.tagline {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.16rem);
  color: var(--muted);
  line-height: 1.9;
  max-width: 680px;
}

.app-subtitle {
  margin: 0;
  color: #7b5431;
  font-size: 15px;
  font-weight: 700;
}

.shared {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    rgba(215, 168, 75, 0.18),
    rgba(240, 229, 207, 0.66)
  );
  border: 1px solid rgba(154, 106, 58, 0.18);
  color: #5d431f;
  font-weight: 700;
  line-height: 1.8;
}

.noscript-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(15, 61, 51, 0.08);
  color: var(--primary);
  line-height: 1.8;
  font-weight: 700;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 61, 51, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

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

.btn {
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    opacity 140ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 61, 51, 0.12);
}

.btn:active {
  transform: translateY(0);
  opacity: 0.92;
}

.btn-store {
  background: var(--primary);
  color: #fff;
}

.btn-store.secondary {
  background: #fff;
  color: var(--text);
  border-color: rgba(15, 61, 51, 0.12);
}

.btn-open {
  background: linear-gradient(135deg, var(--accent), #e5be6c);
  color: #2f2412;
  border-color: rgba(154, 106, 58, 0.18);
}

#openAppBtn {
  grid-column: 1 / -1;
}

.btn-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.3;
}

.btn-sub {
  font-size: 12px;
  opacity: 0.82;
}

.btn-main {
  font-size: 15px;
}

.store-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  flex: 0 0 24px;
}

.helper {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.spotlight {
  background:
    linear-gradient(180deg, rgba(15, 61, 51, 0.98), rgba(18, 54, 46, 0.94)),
    var(--primary);
  color: #f5f3eb;
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(15, 61, 51, 0.18);
}

.spotlight::before,
.spotlight::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(215, 168, 75, 0.14);
}

.spotlight::before {
  width: 240px;
  height: 240px;
  top: -130px;
  left: -60px;
}

.spotlight::after {
  width: 180px;
  height: 180px;
  bottom: -90px;
  right: -40px;
}

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

.panel-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f9e5b4;
  font-size: 13px;
  font-weight: 700;
}

.spotlight h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.55;
}

.spotlight p {
  margin: 0;
  color: rgba(245, 243, 235, 0.78);
  line-height: 1.95;
}

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

.mini-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
}

.mini-item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
}

.mini-item span {
  color: rgba(245, 243, 235, 0.74);
  line-height: 1.75;
  font-size: 14px;
}

.preview-card {
  display: none;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(31, 89, 74, 0.92), rgba(18, 67, 56, 0.9)),
    rgba(15, 61, 51, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(4, 18, 15, 0.22);
}

.preview-card.active {
  display: grid;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.preview-kind,
.preview-style {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.preview-kind {
  background: rgba(249, 229, 180, 0.16);
  color: #f9e5b4;
}

.preview-style {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(245, 243, 235, 0.82);
}

.preview-style[hidden],
.preview-media[hidden],
.preview-reference[hidden] {
  display: none;
}

.preview-meta {
  color: rgba(245, 243, 235, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.preview-title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.8;
  color: #fff;
}

.preview-body {
  margin: 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(7, 24, 20, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 252, 244, 0.95);
  line-height: 2.1;
  font-size: 1rem;
  white-space: pre-line;
}

.preview-reference {
  margin: 0;
  color: rgba(249, 229, 180, 0.88);
  font-size: 13px;
  line-height: 1.9;
}

.preview-media {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.preview-media img {
  display: block;
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}

.features {
  padding: 0 34px 34px;
}

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

.feature-card {
  background: var(--card-strong);
  border: 1px solid rgba(15, 61, 51, 0.09);
  border-radius: 22px;
  padding: 20px 18px;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 42px rgba(15, 61, 51, 0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: rgba(15, 61, 51, 0.08);
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--primary);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 14px;
}

.feature-card.feature-highlight {
  background:
    linear-gradient(180deg, rgba(215, 168, 75, 0.14), rgba(255, 253, 249, 0.96)),
    var(--card-strong);
}

.feature-list {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.feature-list span {
  display: block;
  color: #456258;
  font-size: 13px;
  line-height: 1.7;
}

.feature-list strong {
  color: var(--primary);
}

.content-sections {
  padding: 0 34px 34px;
  display: grid;
  gap: 18px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 20px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 241, 228, 0.72));
  border: 1px solid rgba(15, 61, 51, 0.08);
  box-shadow: 0 16px 34px rgba(15, 61, 51, 0.06);
}

.metric-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}

.metric-label {
  display: block;
  font-size: 0.96rem;
  font-weight: 800;
  color: #3f564d;
  margin-bottom: 6px;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.section-block {
  border: 1px solid rgba(15, 61, 51, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 246, 237, 0.76)),
    #fff;
  box-shadow: 0 22px 50px rgba(15, 61, 51, 0.06);
  overflow: hidden;
}

.section-block.dark {
  background:
    radial-gradient(circle at top left, rgba(215, 168, 75, 0.14), transparent 28%),
    linear-gradient(180deg, #0c4136, #123b32);
  color: #f5f3eb;
}

.section-inner {
  padding: 28px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-copy {
  max-width: 720px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(15, 61, 51, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-block.dark .section-eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #f9e5b4;
}

.section-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.45;
  color: var(--primary);
}

.section-block.dark .section-title {
  color: #fff;
}

.section-description {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.95;
  font-size: 15px;
}

.section-block.dark .section-description {
  color: rgba(245, 243, 235, 0.78);
}

.section-badge {
  flex: 0 0 auto;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(15, 61, 51, 0.08);
  color: var(--primary);
  font-weight: 800;
  line-height: 1.7;
  min-width: 170px;
}

.section-block.dark .section-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #f8f1dc;
}

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

.detail-card {
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 61, 51, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.section-block.dark .detail-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.detail-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1rem;
}

.section-block.dark .detail-card h3 {
  color: #fff;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 14px;
}

.section-block.dark .detail-card p {
  color: rgba(245, 243, 235, 0.76);
}

.name-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.name-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 61, 51, 0.08);
  border: 1px solid rgba(15, 61, 51, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.section-block.dark .name-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f9f7ef;
}

.section-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 14px;
}

.section-block.dark .section-note {
  color: rgba(245, 243, 235, 0.72);
}

.full-width-card {
  grid-column: 1 / -1;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(15, 61, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 241, 228, 0.4));
}

.full-width-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
}

.full-width-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 34px 30px;
  border-top: 1px solid rgba(15, 61, 51, 0.08);
  background: rgba(248, 241, 228, 0.42);
}

.footer-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-link {
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 61, 51, 0.08);
}

.footer-link:hover {
  background: rgba(15, 61, 51, 0.12);
}

@media (max-width: 980px) {
  .site-header {
    gap: 14px;
    padding: 16px 20px;
  }

  .site-brand {
    flex: 1 1 auto;
  }

  .site-brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .site-brand-copy {
    gap: 2px;
  }

  .site-brand-copy > strong {
    font-size: 15px;
  }

  .site-brand-copy > span {
    display: none;
  }

  .mobile-nav-toggle,
  .site-nav-header,
  .mobile-nav-close {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    width: min(320px, 86vw);
    height: 100dvh;
    padding: 24px 18px 28px;
    border-left: 1px solid rgba(15, 61, 51, 0.08);
    border-radius: 28px 0 0 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 228, 0.9)),
      #fff;
    box-shadow: -20px 0 54px rgba(15, 61, 51, 0.16);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    transform: translateX(100%);
    transition: transform 180ms ease;
  }

  .site-nav a {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 15px;
    text-align: right;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open .site-nav {
    transform: translateX(0);
  }

  body.mobile-nav-open .mobile-nav-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    grid-template-columns: 1fr;
  }

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

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

  .spotlight {
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .features,
  .content-sections,
  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .site-header {
    align-items: center;
  }

  .actions,
  .feature-grid,
  .metric-strip,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .brand-row {
    align-items: flex-start;
  }

  .section-header {
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-brand {
    gap: 10px;
  }

  .site-brand-copy {
    max-width: 180px;
  }

  .site-brand-title {
    gap: 4px;
    font-size: 14px;
  }

  .site-nav {
    width: min(300px, 88vw);
  }
}
