/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #007AFF;
  --blue-dark:  #005ecb;
  --teal:       #3db8b8;
  --dark:       #1a1a2e;
  --text:       #1a1a2e;
  --muted:      #6b7280;
  --faint:      #9ca3af;
  --bg:         #ffffff;
  --bg-alt:     #f7f8fa;
  --bg-ios:     #f2f2f7;
  --border:     #e5e7eb;
  --radius:     16px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark { flex-shrink: 0; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-parkinsons {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.logo-lifekit {
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.3px;
}

.nav-cta {
  background: var(--dark);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #2d2d45; transform: translateY(-1px); }

/* ── EYEBROW ── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.6); }

/* ── HERO ── */
.hero {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 32px 120px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero-hl {
  color: var(--teal);
}

.hero-body {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26,26,46,0.2);
}
.btn-primary:hover { background: #2d2d45; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,46,0.25); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--dark); background: var(--bg-alt); transform: translateY(-2px); }

.btn-inline { margin-top: 12px; }

.btn-xl { padding: 18px 36px; font-size: 1.05rem; }

.hero-sub-note {
  font-size: 0.8rem;
  color: var(--faint);
}

/* ── HERO PHONE ── */
.hero-phone-wrap {
  flex-shrink: 0;
  position: relative;
}

/* ── SCREENSHOT IMAGES ── */
.screenshot {
  display: block;
  width: 320px;
  max-width: 100%;
  height: auto;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  z-index: 1;
}

.screenshot-hero {
  width: 360px;
}

/* ── PHONE COMPONENTS ── */
.phone {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0,0,0,0.08);
}

.phone-lg { width: 300px; }
.phone-md { width: 270px; }

.phone-bar {
  height: 28px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-bar::after {
  content: '';
  width: 72px;
  height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.phone-screen {
  padding: 16px 12px 12px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bg-ios { background: var(--bg-ios); }

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px 6px;
}

.screen-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.screen-date {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── DASHBOARD SCREEN ── */
.health-score-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.score-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.score-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-num {
  position: absolute;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}
.score-num small { font-size: 0.7rem; font-weight: 600; color: var(--muted); }

.score-sub {
  font-size: 0.68rem;
  color: var(--muted);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
}

.dash-tile {
  background: var(--tile-bg, #f9fafb);
  border-radius: 11px;
  padding: 9px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tile-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tile-dot, #9ca3af);
}

.tile-name {
  font-size: 0.6rem;
  color: var(--muted);
  font-weight: 500;
}

.tile-val {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--dark);
}

/* ── PHONE TAB BAR ── */
.phone-tabbar {
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,0.9);
  border-top: 1px solid var(--border);
  padding: 8px 0 10px;
  margin: auto -12px -12px;
  border-radius: 0 0 28px 28px;
  backdrop-filter: blur(10px);
  margin-top: auto;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--faint);
  font-size: 0.6rem;
  font-weight: 600;
}
.tab.active { color: var(--blue); }

/* ── ACTIVITY GRID ── */
.activity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.act-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.act-icon {
  width: 32px;
  height: 32px;
  background: color-mix(in srgb, var(--act-color) 12%, white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--act-color);
}
.act-icon svg { width: 16px; height: 16px; }

.act-name {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--dark);
}

.medication-banner {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #eff6ff;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.65rem;
  color: #2563eb;
  font-weight: 500;
}

/* ── CHART CARDS ── */
.chart-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px 12px 10px;
  box-shadow: var(--shadow-sm);
}

.chart-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.chart-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2px;
}

.chart-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
}
.chart-val span { font-size: 0.65rem; font-weight: 500; color: var(--muted); }

.chart-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 50px;
}
.chart-badge.up { background: #f0fdf4; color: #16a34a; }
.chart-badge.down { background: #f9fafb; color: var(--muted); }

/* ── REPORT SCREEN ── */
.report-header {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
}
.report-patient { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.report-period { font-size: 0.65rem; color: var(--muted); margin-top: 2px; }
.report-dr { font-size: 0.65rem; color: var(--blue); font-weight: 600; margin-top: 2px; }

.report-section-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--faint);
  padding: 0 2px;
}

.report-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 9px;
  padding: 8px 10px;
  box-shadow: var(--shadow-sm);
}

.report-item { font-size: 0.68rem; font-weight: 500; color: var(--dark); }

.report-trend { font-size: 0.65rem; font-weight: 700; }
.trend-up { color: #16a34a; }
.trend-neutral { color: var(--muted); }
.trend-down { color: #dc2626; }

.report-note {
  background: #fffbeb;
  border-radius: 9px;
  padding: 8px 10px;
  font-size: 0.63rem;
  color: #92400e;
  line-height: 1.5;
}

.report-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--dark);
  color: #fff;
  border-radius: 9px;
  padding: 9px;
  font-size: 0.65rem;
  font-weight: 700;
}

/* ── MEDICATION SCREEN ── */
.med-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.med-icon {
  width: 34px;
  height: 34px;
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.med-info { flex: 1; }
.med-name { font-size: 0.68rem; font-weight: 600; color: var(--dark); }
.med-dose { font-size: 0.6rem; color: var(--muted); margin-top: 1px; }

.med-status {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 50px;
}
.med-status.taken { background: #f0fdf4; color: #16a34a; }
.med-status.pending { background: #fff7ed; color: #ea580c; }

.on-off-chart {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
}

.oo-label { font-size: 0.62rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; }

.oo-bar {
  position: relative;
  height: 10px;
  background: #f3f4f6;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 4px;
}

.oo-on, .oo-off {
  position: absolute;
  top: 0;
  height: 100%;
}
.oo-on { background: #22c55e; }
.oo-off { background: #ef4444; }

.oo-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.56rem;
  color: var(--faint);
}

.oo-legend {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.leg-on, .leg-off {
  font-size: 0.58rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.leg-on::before { content:''; width:8px; height:8px; border-radius:2px; background:#22c55e; }
.leg-off::before { content:''; width:8px; height:8px; border-radius:2px; background:#ef4444; }

/* ── FLOATING CARDS ── */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  z-index: 2;
  min-width: 170px;
  border: 1px solid rgba(0,0,0,0.05);
}

.float-card-right { right: -36px; top: 60px; }
.float-card-left  { left: -40px;  bottom: 80px; }

.fc-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-title { font-size: 0.72rem; font-weight: 700; color: var(--dark); }
.fc-sub   { font-size: 0.64rem; color: var(--muted); margin-top: 1px; }

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--dark);
  padding: 72px 32px;
  text-align: center;
}

.quote-text {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.75;
  font-family: Georgia, 'Times New Roman', serif;
}

/* ── FEATURE SPLIT SECTIONS ── */
.feature-split {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 32px;
}

.feature-split.alt-bg {
  background: var(--bg-alt);
}

.split-text { flex: 1; min-width: 0; }
.split-visual { flex-shrink: 0; position: relative; }

.split-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 16px;
}

.split-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 440px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
}

.check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 1px;
}

.split-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 4px;
}

/* ── fix alt-bg layout ── */
.feature-split.alt-bg {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  background: var(--bg-alt);
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: max(32px, calc((100vw - 1120px) / 2 + 32px));
  padding-right: max(32px, calc((100vw - 1120px) / 2 + 32px));
}

.feature-split.flip { flex-direction: row-reverse; }

/* ── GALLERY SECTION ── */
.gallery-section {
  padding: 100px 32px;
  background: var(--bg);
}

.gallery-section .container { max-width: 1120px; }

.gallery-section .eyebrow.centered { margin-bottom: 14px; }
.gallery-section .section-sub.centered { margin-bottom: 56px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px 24px;
  align-items: start;
  justify-items: center;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  margin: 0;
  max-width: 260px;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.gallery-item:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item figcaption {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
  font-weight: 500;
  padding: 0 4px;
}

.gallery-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--teal);
  margin-bottom: 6px;
}

/* ── COMPASSION BAND ── */
.compassion-band {
  background: var(--dark);
  padding: 100px 32px;
}

.compassion-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.compassion-text { flex: 1; }

.compassion-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.compassion-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 12px;
}

.compassion-belief {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 28px;
  line-height: 1.5;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
}

.compassion-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  flex-shrink: 0;
}

.stat-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px 20px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ── MORE SECTION ── */
.more-section {
  padding: 100px 32px;
  background: var(--bg);
}

.section-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-headline.centered,
.section-sub.centered,
.eyebrow.centered { text-align: center; }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 56px;
}
.section-sub.centered { margin-left: auto; margin-right: auto; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.support-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.support-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.support-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.support-icon svg { width: 22px; height: 22px; }

.support-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.support-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA ── */
.cta-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 120px 32px;
  text-align: center;
}

.cta-logo { margin-bottom: 24px; }

.cta-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.cta-fine {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--faint);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 48px 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}
.footer-logo strong { color: var(--teal); }

.footer-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  max-width: 560px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 60px 24px 80px;
    text-align: center;
    gap: 60px;
  }

  .hero-body { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-sub-note { text-align: center; }
  .hero-phone-wrap { align-self: center; }

  .float-card-left,
  .float-card-right { display: none; }

  .feature-split,
  .feature-split.flip,
  .feature-split.alt-bg {
    flex-direction: column;
    padding: 72px 24px;
    gap: 48px;
  }

  .split-visual { align-self: center; }
  .split-body { max-width: 100%; }

  .compassion-inner {
    flex-direction: column;
    gap: 48px;
  }

  .compassion-stats {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .more-section { padding: 72px 24px; }
  .cta-section { padding: 80px 24px; }
}

@media (max-width: 900px) {
  .gallery-section { padding: 72px 24px; }
}

@media (max-width: 600px) {
  .phone-lg, .phone-md { width: 260px; }
  .screenshot { width: 280px; }
  .screenshot-hero { width: 300px; }
  .compassion-stats { grid-template-columns: 1fr 1fr; }
  .feature-split.alt-bg { padding-left: 24px; padding-right: 24px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-item { max-width: 280px; }
}
