/* ─── Shared ─── */
#app {
  padding-top: var(--nav-h);
  min-height: 100vh;
  min-height: 100dvh;
}

.section {
  padding: var(--space-section) 0;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-title { margin-bottom: 48px; }
}

/* ─── HOME: Hero ─── */
.hero {
  min-height: calc(80dvh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 0 32px;
}

@media (min-width: 768px) {
  .hero {
    min-height: calc(90vh - var(--nav-h));
    padding: 0;
  }
}

.hero-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
  min-height: auto;
}

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

.hero h1 {
  font-size: clamp(48px, 12vw, 88px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .tagline {
  font-size: clamp(15px, 3.5vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero .tagline span { color: var(--accent); font-weight: 700; }

/* ─── ABOUT: Cards grid ─── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 480px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}

.card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}

@media (min-width: 768px) {
  .card { padding: 28px; }
}

.card:active { border-color: rgba(192, 132, 252, 0.3); }

@media (min-width: 768px) {
  .card:hover {
    border-color: rgba(192, 132, 252, 0.3);
    transform: translateY(-2px);
  }
}

.card .number {
  font-size: 36px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  min-height: auto;
}

@media (min-width: 768px) {
  .card .number { font-size: 44px; margin-bottom: 16px; }
}

.card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── TOOLS: List ─── */
.tools-list {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.tool-item {
  background: var(--surface);
  padding: 20px 16px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  transition: background 0.2s;
}

@media (min-width: 768px) {
  .tool-item {
    padding: 28px 32px;
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }
}

.tool-item:active { background: var(--surface-2); }

@media (min-width: 768px) {
  .tool-item:hover { background: var(--surface-2); }
}

.tool-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--accent-dim);
  border-radius: 10px;
  flex-shrink: 0;
  min-height: auto;
}

.tool-item h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.tool-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── DEMO: Terminal ─── */
.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 700px;
}

.terminal-bar {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: auto;
}

.terminal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  min-height: auto;
}
.terminal-dot.r { background: #ef4444; }
.terminal-dot.y { background: #eab308; }
.terminal-dot.g { background: #22c55e; }

.terminal-body {
  padding: 16px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.9;
  min-height: 180px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .terminal-body {
    padding: 24px;
    font-size: 14px;
    line-height: 2;
    min-height: 220px;
  }
}

.terminal-line {
  opacity: 0;
  animation: lineIn 0.3s ease forwards;
  white-space: nowrap;
}

.terminal-line .prompt { color: var(--accent); }
.terminal-line .out    { color: var(--text-muted); }

@keyframes lineIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--accent);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 3px;
  min-height: auto;
}

@keyframes blink { 50% { opacity: 0; } }

/* ─── GBETA: Mobile-first feed layout ─── */
.gbeta-page {
  padding: 24px 0 60px;
  padding-top: calc(var(--nav-h) + 24px);
}

/* Hero */
.gbeta-hero {
  margin-bottom: 32px;
}

.gbeta-hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  min-height: auto;
}

.gbeta-hero-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.gbeta-hero-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Sections */
.gbeta-section {
  margin-bottom: 36px;
}

.gbeta-h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  position: sticky;
  top: var(--nav-h);
  background: var(--bg);
  padding: 8px 0;
  z-index: 10;
}

.gbeta-empty {
  font-size: 13px;
  color: var(--text-muted);
  padding: 16px 0;
}

/* ─── Task list (vertical scroll-friendly) ─── */
.gbeta-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.gbeta-item {
  background: var(--surface);
  padding: 14px 16px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s;
}

.gbeta-item:active { background: var(--surface-2); }

.gbeta-item-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.gbeta-icon {
  font-size: 16px;
  flex-shrink: 0;
  min-height: auto;
  margin-top: 1px;
}

.gbeta-item-info {
  flex: 1;
  min-width: 0;
}

.gbeta-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.gbeta-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
  flex-wrap: wrap;
}

.gbeta-item-date {
  font-size: 12px;
  color: var(--text-muted);
  min-height: auto;
}

.gbeta-time {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  min-height: auto;
}

.gbeta-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  min-height: auto;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Expandable details */
.gbeta-item-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.gbeta-item.expanded .gbeta-item-expand {
  max-height: 500px;
  opacity: 1;
}

.gbeta-item-details {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
}

.gbeta-location {
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 8px;
  margin-top: 8px;
}

/* ─── Feed items (pitches, notes, research) ─── */
.gbeta-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gbeta-feed-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.gbeta-feed-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.gbeta-feed-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.gbeta-feed-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.gbeta-feed-date {
  font-size: 12px;
  color: var(--text-muted);
  min-height: auto;
}

.gbeta-feed-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.gbeta-feed-content {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}

.gbeta-feed-content h3,
.gbeta-feed-content strong {
  color: var(--accent);
}

.gbeta-feed-content ul {
  padding-left: 1.2em;
  margin: 8px 0;
}

.gbeta-feed-content li {
  margin-bottom: 4px;
}

/* Tags */
.gbeta-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.gbeta-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--accent-dim);
  color: var(--accent);
  min-height: auto;
}

/* Link */
.gbeta-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
  min-height: auto;
  padding: 4px 0;
}

/* Resources */
.gbeta-resources {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.gbeta-resource {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s;
}

.gbeta-resource:active { background: var(--surface-2); }

.gbeta-arrow {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 14px;
  min-height: auto;
}

/* ─── Weather widget ─── */
.gbeta-weather {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 28px;
}

.weather-loading {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 8px 0;
}

.weather-current {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.weather-icon {
  font-size: 36px;
  min-height: auto;
  flex-shrink: 0;
}

.weather-info { flex: 1; }

.weather-temp {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.weather-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.weather-loc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.weather-forecast {
  display: flex;
  gap: 2px;
}

.weather-day {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  background: var(--bg);
  border-radius: 8px;
}

.weather-day-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.weather-day-icon {
  font-size: 22px;
  margin-bottom: 4px;
  min-height: auto;
}

.weather-day-temp {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.weather-day-rain {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── CHAPCHU: Immersive shorts mode ─── */
.route-chapchu .footer { display: none; }
.route-chapchu .nav { display: none; }

.chapchu-page {
  padding: 4px 0 10px;
  padding-top: 4px;
}

.chapchu-stage {
  width: min(430px, 100vw);
  margin: 0 auto;
  position: relative;
}

.chapchu-exit-btn {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 8;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(0,0,0,0.52);
  color: #f4f4f5;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.chapchu-sound-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 7;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(0,0,0,0.52);
  color: #f4f4f5;
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  min-height: auto;
  backdrop-filter: blur(8px);
}

.chapchu-sound-btn.on {
  color: #22c55e;
  border-color: #22c55e88;
  background: rgba(5, 30, 12, 0.6);
}

.chapchu-feed {
  width: 100%;
  margin: 0 auto;
  height: calc(100dvh - 10px);
  min-height: 520px;
  max-height: 860px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.chapchu-feed::-webkit-scrollbar { display: none; }

.chapchu-loading {
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
  font-size: 14px;
}

.chapchu-short {
  position: relative;
  height: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #000;
}

.chapchu-player-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.chapchu-player,
.chapchu-local-video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.chapchu-local-video {
  object-fit: cover;
  background: #000;
}

.chapchu-social-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  background: radial-gradient(circle at 30% 20%, #1f2937 0%, #0b0b0b 55%);
}

.chapchu-social-icon {
  font-size: 38px;
  line-height: 1;
}

.chapchu-social-title {
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  max-width: 280px;
}

.chapchu-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #7c3aed;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

/* Deep-link friction reduction for TikTok/Reels embeds */

.chapchu-delete-btn {
  position: absolute;
  top: 54px;
  right: 8px;
  z-index: 9;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(0,0,0,0.55);
  color: #f4f4f5;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  min-height: auto;
  backdrop-filter: blur(8px);
}

.chapchu-external {
  position: absolute;
  top: 8px;
  right: 48px;
  z-index: 8;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.52);
  color: #f4f4f5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.chapchu-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0));
  pointer-events: none;
}

.chapchu-platform-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: #f4f4f5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.chapchu-caption {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 767px) {
  .chapchu-page {
    padding-top: 2px;
  }

  .chapchu-stage {
    width: 100vw;
  }

  .chapchu-feed {
    height: calc(100dvh - var(--nav-h) - 4px);
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}

/* ─── gBeta Sub-tabs ─── */
.gbeta-tabs-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  margin: 0 -16px;
  padding: 0 16px;
}

.gbeta-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0;
}
.gbeta-tabs::-webkit-scrollbar { display: none; }

.gbeta-tab {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
  font-family: inherit;
  min-height: auto;
}
.gbeta-tab:active { background: var(--surface-2); }
.gbeta-tab.active {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: var(--accent);
}

.gbeta-tab-content {
  padding-top: 20px;
}

/* Week overview rows */
.gbeta-week-rows { display: flex; flex-direction: column; gap: 10px; }

.gbeta-week-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.gbeta-week-row:active { background: var(--surface-2); }

.gbeta-week-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.gbeta-week-row-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.gbeta-week-row-range {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.gbeta-week-row-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.gbeta-progress-bar-sm-wrap {
  width: 60px;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.gbeta-progress-bar-sm {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.4s ease;
}
.gbeta-progress-label-sm {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Week card (in tab) */
.gbeta-week-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
.gbeta-week-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.gbeta-week-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}
.gbeta-week-range {
  font-size: 12px;
  color: var(--text-muted);
}
.gbeta-progress-bar-wrap {
  height: 6px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}
.gbeta-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f472b6);
  border-radius: 6px;
  transition: width 0.4s ease;
}
.gbeta-progress-label {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
}

/* Sub-headings in week */
.gbeta-sub-h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin: 20px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Todos */
.gbeta-todo-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gbeta-todo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.gbeta-todo.done { opacity: 0.5; }
.gbeta-todo.done .gbeta-todo-text { text-decoration: line-through; }
.gbeta-todo-check { font-size: 16px; flex-shrink: 0; min-height: auto; line-height: 1.3; }
.gbeta-todo-text { font-size: 13px; color: var(--text); line-height: 1.5; }

/* Doc cards */
.gbeta-doc-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gbeta-doc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.gbeta-doc-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.gbeta-doc-emoji {
  font-size: 28px;
  flex-shrink: 0;
  min-height: auto;
  line-height: 1.2;
}
.gbeta-doc-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.gbeta-doc-summary {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.gbeta-doc-body { margin-top: 8px; }
.gbeta-doc-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gbeta-doc-points li {
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.gbeta-doc-points li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}

/* ─── Desktop tweaks ─── */
@media (min-width: 768px) {
  .gbeta-hero-title { font-size: 36px; }
  .gbeta-h2 { font-size: 20px; }
  .gbeta-item { padding: 16px 20px; }
  .gbeta-feed-item { padding: 20px 24px; }
  .gbeta-section { margin-bottom: 48px; }
  .gbeta-doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
}
