*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:           #5856D6;
  --accent-soft:      rgba(88, 86, 214, 0.12);
  --accent-mid:       rgba(88, 86, 214, 0.25);
  --bg:               #FFFFFF;
  --bg-secondary:     #F2F2F7;
  --bg-tertiary:      #E5E5EA;
  --separator:        #C6C6C8;
  --label:            #000000;
  --label-secondary:  rgba(60, 60, 67, 0.60);
  --label-tertiary:   rgba(60, 60, 67, 0.30);
  --success:          #34C759;
  --warning:          #FF9F0A;
  --danger:           #FF3B30;
  --radius-sm:        8px;
  --radius-md:        12px;
  --radius-lg:        16px;
  --radius-xl:        20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--label);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ──────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid var(--separator);
  padding: 0 48px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--label);
  flex-shrink: 0;
}

.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--label-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--label); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.btn-ghost {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-ghost:hover { background: var(--accent-soft); }

.btn-ghost .chevron {
  font-size: 10px;
  transition: transform 0.2s;
  display: inline-block;
}

.btn-ghost.open .chevron { transform: rotate(180deg); }

.btn-primary {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: opacity 0.15s, transform 0.1s;
  white-space: nowrap;
}

.btn-primary:hover { opacity: 0.88; transform: scale(0.985); }

/* ─── Sign-in dropdown ──────────────────────────────────────── */
.signin-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  background: var(--bg);
  border: 1px solid var(--separator);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 24px;
  z-index: 300;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.signin-dropdown.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.signin-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  color: var(--label);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--label-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.1px;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--separator);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--label);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-input::placeholder { color: var(--label-tertiary); }

.forgot-link {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  margin-top: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

.forgot-link:hover { text-decoration: underline; }

.signin-btn {
  width: 100%;
  padding: 11px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 18px;
  letter-spacing: -0.2px;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
}

.signin-btn:hover { opacity: 0.88; }
.signin-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.google-btn {
  width: 100%;
  padding: 11px;
  background: #FFFFFF;
  color: #1F1F1F;
  border: 1px solid var(--separator);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: -0.1px;
  transition: background 0.15s, box-shadow 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  margin-bottom: 14px;
}
.google-btn:hover { background: #F8F9FA; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.google-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.google-btn svg { flex-shrink: 0; }

.signin-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--label-tertiary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.signin-divider::before,
.signin-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--separator);
}

.signin-error {
  background: rgba(255,59,48,0.08);
  border: 1px solid rgba(255,59,48,0.2);
  color: var(--danger);
  font-size: 13px;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-top: 14px;
  display: none;
}

.signin-error.visible { display: block; }

.signin-success {
  background: rgba(52,199,89,0.08);
  border: 1px solid rgba(52,199,89,0.2);
  color: #1a7a34;
  font-size: 13px;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-top: 14px;
  display: none;
}

.signin-success.visible { display: block; }

/* spinner */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 96px 48px 80px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.1px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--label);
  margin-bottom: 24px;
}

h1 span { color: var(--accent); }

.hero-sub {
  font-size: 20px;
  color: var(--label-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.btn-primary-lg {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: opacity 0.15s, transform 0.1s;
}

.btn-primary-lg:hover { opacity: 0.88; transform: scale(0.985); }

.btn-secondary-lg {
  font-size: 17px;
  font-weight: 500;
  color: var(--label);
  background: var(--bg-secondary);
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: background 0.15s;
}

.btn-secondary-lg:hover { background: var(--bg-tertiary); }

.hero-social-proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--label-tertiary);
}

.avatars { display: flex; }

.avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--bg-secondary);
  margin-left: -8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
}

.avatars .avatar-sm:first-child { margin-left: 0; }

/* ─── App Preview ──────────────────────────────────────────── */
.preview-wrap {
  padding: 0 48px 96px;
  max-width: 1320px;
  margin: 0 auto;
}

.preview-device {
  background: var(--bg-secondary);
  border-radius: 24px;
  border: 2px solid var(--separator);
  overflow: hidden;
  position: relative;
}

.preview-device-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--separator);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-red   { width: 12px; height: 12px; border-radius: 50%; background: #FF5F57; }
.dot-yellow{ width: 12px; height: 12px; border-radius: 50%; background: #FFBD2E; }
.dot-green { width: 12px; height: 12px; border-radius: 50%; background: #28C840; }

.preview-url {
  flex: 1;
  background: var(--bg-secondary);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--label-tertiary);
  text-align: center;
  margin: 0 12px;
}

/* ─── App Shell (real screenshot) ──────────────────────────── */
.app-shell-img {
  display: block;
  line-height: 0;
  background: var(--bg);
}
.app-shell-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.2s ease;
}
.preview-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
}
.preview-row .preview-device { flex: 1 1 auto; min-width: 0; max-width: 1080px; }
.phone-frame {
  flex: 0 0 auto;
  width: 280px;
  border-radius: 24px;
  border: 2px solid var(--separator);
  background: var(--bg-secondary);
  overflow: hidden;
}
.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.2s ease;
}
@media (max-width: 900px) {
  .preview-row { flex-direction: column; align-items: center; gap: 24px; }
  .phone-frame { width: 240px; }
}
@media (max-width: 768px) {
  .phone-frame { display: none; }
  /* Mobile hero uses the tall 1179x2160 portrait screenshot. The <picture>
     source swap picks the portrait image, but the fallback <img>'s
     width/height (1001x561 landscape) controls initial container sizing.
     Reserve the correct aspect on the CONTAINER so the swap doesn't
     re-flow the hero downward when the real image arrives. CLS fix. */
  .preview-device,
  .app-shell-img { aspect-ratio: 1179 / 2160; }
  .app-shell-img img { aspect-ratio: 1179 / 2160; width: 100%; height: 100%; object-fit: cover; }
}

/* ─── Legacy Fake App Shell (unused, retained for any stale refs) */
.app-shell {
  display: flex;
  height: 580px;
}

.app-sidebar {
  width: 220px;
  background: var(--bg);
  border-right: 1px solid var(--separator);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.sidebar-section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--label-tertiary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-top: 12px;
  margin-bottom: 2px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  cursor: default;
  font-size: 14px;
  font-weight: 500;
  color: var(--label-secondary);
}

.sidebar-item.active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.sidebar-item svg { width: 16px; height: 16px; opacity: 0.7; }
.sidebar-item.active svg { opacity: 1; }

.sidebar-badge {
  margin-left: auto;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  padding: 1px 7px;
}

.sidebar-badge-muted {
  margin-left: auto;
  background: var(--bg-tertiary);
  color: var(--label-tertiary);
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  padding: 1px 7px;
}

.app-content {
  flex: 1;
  background: var(--bg-secondary);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--separator);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  color: var(--label-secondary);
  font-size: 13px;
}

.app-body {
  flex: 1;
  overflow: hidden;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--separator);
  padding: 16px;
}

.stat-label {
  font-size: 12px;
  color: var(--label-secondary);
  font-weight: 500;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stat-label-dot { width: 7px; height: 7px; border-radius: 50%; }

.stat-value {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--label);
}

.stat-delta { font-size: 11px; color: var(--label-tertiary); margin-top: 2px; }
.stat-delta.up { color: var(--success); }
.stat-delta.warn { color: var(--warning); }

.content-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
  min-height: 0;
}

.panel {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--separator);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--separator);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-title { font-size: 13px; font-weight: 600; letter-spacing: -0.2px; }
.panel-action { font-size: 12px; color: var(--accent); cursor: default; font-weight: 500; }
.panel-body { flex: 1; overflow: hidden; }

.member-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--separator);
}

.member-row:last-child { border-bottom: none; }

.member-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.member-name { font-size: 13px; font-weight: 500; color: var(--label); flex: 1; }

.pill {
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  padding: 2px 8px;
}

.pill-warning { background: rgba(255, 159, 10, 0.12); color: #b36b00; }
.pill-danger  { background: rgba(255, 59, 48, 0.12);  color: #c0392b; }
.pill-accent  { background: var(--accent-soft); color: var(--accent); }

.event-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--separator);
}

.event-row:last-child { border-bottom: none; }

.event-date-block { width: 36px; text-align: center; flex-shrink: 0; }

.event-month {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--danger);
}

.event-day {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--label);
  line-height: 1;
}

.event-info { flex: 1; }

.event-title { font-size: 13px; font-weight: 500; color: var(--label); }
.event-sub { font-size: 11px; color: var(--label-tertiary); margin-top: 1px; }

/* ─── Features section ──────────────────────────────────────── */
.section { padding: 96px 48px; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-headline {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 520px;
}

.section-sub {
  font-size: 18px;
  color: var(--label-secondary);
  max-width: 480px;
  line-height: 1.5;
  margin-bottom: 56px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--separator);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.feature-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.feature-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--label-secondary);
  line-height: 1.5;
}

.feature-learn-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}
.feature-learn-more:hover { text-decoration: underline; }

.feature-shot {
  display: block;
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--separator);
  background: var(--bg-secondary);
  aspect-ratio: 16 / 10;
}
.feature-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ─── Stats ribbon ──────────────────────────────────────────── */
.stats-ribbon {
  background: var(--bg-secondary);
  border-top: 1px solid var(--separator);
  border-bottom: 1px solid var(--separator);
  padding: 48px;
}

.stats-ribbon-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ribbon-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--separator);
}

.ribbon-stat:last-child { border-right: none; }

.ribbon-number {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--label);
}

.ribbon-label { font-size: 14px; color: var(--label-secondary); margin-top: 4px; }

/* ─── CTA Banner ────────────────────────────────────────────── */
.cta-section {
  padding: 96px 48px;
  background: var(--accent);
  text-align: center;
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

.btn-white {
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  background: white;
  border: none;
  cursor: pointer;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: -0.3px;
  display: inline-block;
  transition: opacity 0.15s, transform 0.1s;
}

.btn-white:hover { opacity: 0.92; transform: scale(0.985); }

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--separator);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--label);
}

.footer-logo img { height: 22px; width: auto; }

.footer-links { display: flex; gap: 28px; list-style: none; }

.footer-links a {
  font-size: 13px;
  color: var(--label-tertiary);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--label-secondary); }

.footer-copy { font-size: 13px; color: var(--label-tertiary); }

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--separator); border-radius: 3px; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 64px 24px 48px; }
  h1 { font-size: 40px; }
  .hero-sub { font-size: 17px; }
  .preview-wrap { padding: 0 20px 64px; }
  .app-sidebar { display: none; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .content-cols { grid-template-columns: 1fr; }
  .section { padding: 64px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-ribbon { padding: 32px 24px; }
  .stats-ribbon-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .ribbon-stat:nth-child(2) { border-right: none; }
  .ribbon-stat:nth-child(3) { border-right: 1px solid var(--separator); }
  .cta-section { padding: 64px 24px; }
  footer { padding: 32px 24px; flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px 24px; }
  .signin-dropdown { width: 290px; }
}
  
.footer-brand-text { font-size: 14px; font-weight: 600; }
.section--alt { background: var(--bg-secondary); }
