:root {
  --teal-dark: #0e4a49;
  --teal: #16645f;
  --gold: #d9a441;
  --gold-dark: #b98428;
  --gray: #8a8f98;
  --gray-light: #f4f6f5;
  --ink: #182420;
  --ink-soft: #4b5652;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 20px 40px -20px rgba(14, 74, 73, 0.35);
  --max-width: 1120px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

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

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); text-align: center; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

p { color: var(--ink-soft); margin: 0 0 16px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(14, 74, 73, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 36px; height: 36px; border-radius: 50%; }
.brand-name { font-weight: 700; font-size: 1.15rem; color: var(--teal-dark); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 500; color: var(--ink-soft); font-size: 0.95rem; }
.nav a:hover { color: var(--teal-dark); }
.nav-cta {
  background: var(--teal-dark);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--teal); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  background: var(--white);
  border-bottom: 1px solid rgba(14, 74, 73, 0.08);
}
.nav-mobile a { padding: 10px 4px; font-weight: 500; color: var(--ink-soft); }
.nav-mobile .nav-cta {
  display: inline-block;
  width: fit-content;
  margin-top: 6px;
  background: var(--teal-dark);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 999px;
}

.site-header.is-open .nav-mobile { display: flex; }

/* Hero */
.hero { padding: 64px 0 40px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(217, 164, 65, 0.14);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lede { font-size: 1.08rem; max-width: 46ch; }

.hero-note { font-size: 0.85rem; color: var(--gray); margin-top: 10px; }

/* Store buttons */
.store-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

.store-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 12px;
  opacity: 0.92;
  cursor: default;
  user-select: none;
}

/* Overrides the "pretend button, not actually clickable" styling above for a store link that's
   actually live - a real anchor instead of a span, so it needs cursor/opacity/underline reset
   back to looking (and behaving) like a real link. */
.store-button.is-live {
  cursor: pointer;
  opacity: 1;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.store-button.is-live:hover,
.store-button.is-live:focus-visible {
  opacity: 0.85;
}

.store-icon { width: 22px; height: 22px; flex-shrink: 0; }

.store-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-text em { font-style: normal; font-size: 0.68rem; opacity: 0.85; }
.store-text strong { font-size: 1rem; font-weight: 600; }

.soon-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gold);
  color: var(--teal-dark);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hero phone mockups */
.hero-art { position: relative; height: 460px; }

.phone {
  position: absolute;
  width: 230px;
  height: 460px;
  background: var(--ink);
  border-radius: 34px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-back {
  right: 0;
  top: 30px;
  transform: rotate(9deg) scale(0.92);
  opacity: 0.85;
}

.phone-front {
  left: 20px;
  top: 0;
  transform: rotate(-6deg);
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
  display: block;
  background: var(--gray-light);
}

figure.phone {
  margin: 0;
}

figure.phone figcaption {
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
}

/* Features */
.features { padding: 76px 0; background: var(--gray-light); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: 0 10px 30px -20px rgba(14, 74, 73, 0.3);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--icon-color) 14%, white);
  color: var(--icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-card p { margin: 0; font-size: 0.95rem; }

/* Screens */
.screens { padding: 76px 0; }
.section-lede { text-align: center; max-width: 50ch; margin: 0 auto 40px; }

.screen-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.phone-static { position: static; transform: none; }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-mark { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 18px; }
.cta h2 { color: var(--white); }
.cta p { color: rgba(255, 255, 255, 0.82); max-width: 42ch; }
.cta .store-buttons { justify-content: center; }
.cta .store-button { background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.3); }

/* Footer */
.site-footer { padding: 32px 0; border-top: 1px solid rgba(14, 74, 73, 0.08); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand--footer .brand-mark { width: 28px; height: 28px; }
.brand--footer .brand-name { font-size: 1rem; }
.site-footer p { margin: 0; font-size: 0.85rem; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 0.85rem; color: var(--ink-soft); }
.footer-links a:hover { color: var(--teal-dark); }

/* Legal pages (Privacy Policy, Terms of Use) */
.legal { padding: 56px 0 96px; }
.legal .wrap { max-width: 780px; }
.legal .effective-date { color: var(--gray); font-size: 0.9rem; margin-bottom: 32px; }
.legal .intro { color: var(--ink-soft); }
.legal h1 { text-align: left; margin-bottom: 4px; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.legal h2 {
  text-align: left;
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(14, 74, 73, 0.12);
}
.legal h3 { margin-top: 24px; }
.legal ul, .legal ol { padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 6px; color: var(--ink-soft); }
.legal a { color: var(--teal); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal .toc {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin: 24px 0 8px;
}
.legal .toc a { display: block; padding: 3px 0; font-size: 0.95rem; text-decoration: none; color: var(--teal-dark); font-weight: 500; }
.legal .callout {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
}
.legal .callout.report { background: rgba(217, 164, 65, 0.12); }
.legal .callout h3 { margin-top: 0; }
.legal .disclaimer {
  color: var(--gray);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(14, 74, 73, 0.08);
}

/* Public feed page */
.feed-page { padding: 48px 0 96px; }
.feed-page h1 { text-align: left; margin-bottom: 6px; }
.feed-intro { max-width: 56ch; margin-bottom: 32px; }

.feed-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--gray-light);
  border-radius: 999px;
  margin-bottom: 28px;
}
.feed-tab {
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
}
.feed-tab:hover { color: var(--teal-dark); }
.feed-tab.is-active { background: var(--teal-dark); color: var(--white); }

.feed-intro--reports { margin-top: -8px; }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feed-caption a { color: var(--teal); text-decoration: underline; }

.feed-card {
  background: var(--white);
  border: 1px solid rgba(14, 74, 73, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.feed-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}
.feed-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-light);
  flex-shrink: 0;
}
.feed-username { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.feed-time { font-size: 0.78rem; color: var(--gray); margin-top: -2px; }

.feed-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--gray-light);
  overflow: hidden;
}
.feed-media img, .feed-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.feed-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.12);
}
.feed-play svg { width: 56px; height: 56px; }

.feed-link-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}
.feed-link-card .feed-link-domain {
  padding: 8px 14px;
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gray-light);
}
.feed-link-card .feed-link-title { padding: 10px 14px 0; font-weight: 600; font-size: 0.95rem; color: var(--ink); }

/* Link posts with no real Open Graph image (e.g. FishReel Reports) fall back to the site
   logo - shown small and centered here instead of stretched/cropped to fill the card. */
.feed-link-fallback { background: var(--gray-light); }
.feed-link-fallback img {
  width: auto;
  max-width: 50%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  align-self: center;
  margin: 22px 0;
}

.feed-body { padding: 12px 14px 16px; }
.feed-caption {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 10px;
  /* Report captions use \n\n between landings and \n before the species line
     (see functions/index.js's formatCaption) - HTML collapses those by default,
     which is why they were running together into one paragraph. pre-line keeps
     the line breaks while still wrapping/collapsing regular spaces normally. */
  white-space: pre-line;
}
.feed-stats { display: flex; gap: 16px; font-size: 0.85rem; color: var(--gray); }
.feed-stats span { display: inline-flex; align-items: center; gap: 5px; }
.feed-stats svg { width: 15px; height: 15px; }

.feed-empty, .feed-error { text-align: center; color: var(--gray); padding: 40px 0; }

/* Bait Report card (see reports.html/reports.js) */
.bait-report-card {
  background: var(--white);
  border: 1px solid rgba(14, 74, 73, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 24px;
}
.bait-report-card h3 { margin-bottom: 14px; }
.bait-report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bait-report-barge h4 {
  font-size: 0.95rem;
  margin: 0 0 4px;
  color: var(--teal-dark);
}
.bait-report-barge .bait-report-bait {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}
.bait-report-barge .bait-report-asof {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
}
.bait-report-disclaimer {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 16px 0 0;
}
.bait-report-more-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.bait-report-more-link:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .bait-report-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Fish Reports charts (see reports.html/reports.js) */
.chart-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.chart-card {
  background: var(--white);
  border: 1px solid rgba(14, 74, 73, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px 20px 8px;
}
.chart-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.chart-card h3 { margin-bottom: 0; }
.chart-legend-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.chart-legend-reset {
  border: none;
  background: none;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
}
.chart-legend-reset:hover { text-decoration: underline; }
.chart-canvas-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  /* flex (rather than the two canvases' default inline-block flow) avoids the few px of
     baseline whitespace inline-block siblings otherwise leave between them, so the axis
     overlay sits flush against the scrolling chart with no visible seam. */
  display: flex;
  align-items: flex-start;
}
.chart-canvas-wrap canvas.chart-main-canvas {
  width: var(--chart-width, 100%) !important;
  min-width: 100%;
  height: 320px !important;
  flex-shrink: 0;
}
/* Sticky y-axis overlay - a plain (non-Chart.js) canvas that drawAxisOverlay() in reports.js
   paints the y-axis tick labels onto directly, using the real chart's own scale for pixel
   positions (its tick TEXT is hidden - gridlines/border stay put - see renderChart's y-scale
   config) - so this overlay is the only place those labels get drawn at all. `position: sticky`
   keeps it fixed on screen as the real chart's much-wider canvas scrolls beneath/past it
   (dragging the horizontal scrollbar used to carry the axis labels off-screen along with
   everything else, since Chart.js draws a chart's axis into the same canvas as everything else
   in it, and that whole canvas is what was scrolling).
   Width is a fixed 60px - comfortably fits any tick label this app plots (fish counts, at most a
   handful of digits with thousands separators, e.g. "99,999"). A previous version of this tried
   rendering the overlay as a second, narrow Chart.js instance and sizing it to fit Chart.js's own
   computed axis width, but that measurement proved unreliable both before and after the element's
   real size was known - not worth fighting given a fixed width already comfortably covers this
   app's actual data range. */
.chart-axis-wrap {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--white);
  width: 60px;
  height: 320px;
  flex-shrink: 0;
}
.chart-axis-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.sst-card .sst-map-img {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 8px;
}
.sst-disclaimer {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 12px 0 0;
  text-align: center;
}
.sst-disclaimer a {
  color: var(--teal);
}
/* Custom Chart.js legend (built-in legend replaced - see renderLegend in reports.js) - a
   two-column grid of tappable species rows rather than Chart.js's own small canvas-drawn legend
   items, which are too small/precise a target on mobile. Mirrors the apps' bigger, two-column
   species-toggle legend on the Reports Dock Totals charts (FishCountsGraphView.swift /
   FishCountsGraphScreen.kt). */
.chart-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(14, 74, 73, 0.1);
}
.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.92rem;
  color: var(--ink, #1a1a1a);
  border-radius: 8px;
}
.chart-legend-item:hover { background: rgba(14, 74, 73, 0.06); }
.chart-legend-item.is-hidden { opacity: 0.5; }
.chart-legend-item.is-hidden .chart-legend-label { text-decoration: line-through; }
/* Checkbox-styled swatch rather than a plain filled dot - checked (filled + white checkmark) vs.
   unchecked (just a colored outline) makes a species' visibility obvious at a glance, more so
   than row-level dimming alone. --swatch-color is set inline per item (see renderLegend in
   reports.js); toggling .is-hidden on the parent item switches the fill/checkmark off via CSS
   alone, no per-toggle style recompute needed. Mirrors the apps' SpeciesCheckbox/SeriesCheckbox. */
.chart-legend-swatch {
  --swatch-color: currentColor;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
  box-sizing: border-box;
  border: 2px solid var(--swatch-color);
  background: var(--swatch-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-legend-swatch svg { display: block; width: 11px; height: 11px; }
.chart-legend-item.is-hidden .chart-legend-swatch { background: transparent; }
.chart-legend-item.is-hidden .chart-legend-swatch svg { display: none; }
.chart-legend-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .chart-legend { grid-template-columns: 1fr; }
}

/* Region picker (see reports.html/reports.js) - drives which region's data the Charts, Boats,
   and Reports tabs all show. Mirrors the apps' Reports tab region dropdown (FishingRegion in
   ContentView.swift / ReportsHeader in FeedScreen.kt), which the website never had of its own
   until the Boats tab made "San Diego only" too limiting to hardcode any longer. */
.reports-region-picker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.reports-region-picker label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.reports-region-picker select {
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(14, 74, 73, 0.2);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

/* Boats tab (see reports.html/reports.js) - one card per landing, each listing that landing's
   boats/trips from the most recent report. Mirrors the apps' BoatsTabView (iOS) /
   BoatsTabContent (Android). */
.boats-asof {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.boats-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.boats-landing-card {
  background: var(--white);
  border: 1px solid rgba(14, 74, 73, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px;
}
.boats-landing-card h3 { margin-bottom: 14px; }
.boats-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-top: 1px solid rgba(14, 74, 73, 0.08);
}
.boats-row:first-of-type { border-top: none; padding-top: 0; }
.boats-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.boats-row-head a {
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
}
.boats-row-head a:hover { text-decoration: underline; }
.boats-row-head span.boats-boat-name {
  font-weight: 700;
  color: var(--ink);
}
.boats-trip-type {
  font-size: 0.8rem;
  color: var(--gray);
  white-space: nowrap;
}
.boats-row-detail {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Boat Locations tab (see reports.html/reports.js's initBoatLocations) - a Leaflet map, roughly
   the same visual footprint as a chart card. Leaflet needs an explicit height on its container
   (it can't infer one from content the way a normal block element would); width intentionally
   left at 100% rather than boats-landing-card's own max-width, since a map benefits from more
   horizontal room than a text card does. */
.boat-locations-map {
  height: 70vh;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(14, 74, 73, 0.1);
  box-shadow: var(--shadow);
}
/* Leaflet's popup close button/link inherits the page's link color otherwise, which reads as
   broken/blue against the popup's own boat-name link below it - this scopes the override to
   just Leaflet's own chrome, not the popup content. */
.leaflet-popup-content a {
  color: var(--teal-dark);
  font-weight: 700;
}
.boat-location-updated {
  color: var(--gray);
  font-size: 0.85em;
}

.feed-loadmore-wrap { text-align: center; margin-top: 32px; }
.feed-loadmore {
  background: var(--teal-dark);
  color: var(--white);
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
.feed-loadmore:hover { background: var(--teal); }
.feed-loadmore:disabled { opacity: 0.6; cursor: default; }

.feed-cta {
  margin-top: 40px;
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--gray-light);
}
.feed-cta p { margin-bottom: 14px; }

@media (max-width: 720px) {
  .feed-grid { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 880px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { height: 380px; margin: 0 auto; max-width: 320px; }
  .phone { width: 190px; height: 380px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .store-buttons { flex-direction: column; align-items: flex-start; }
  .screen-row { gap: 20px; }
  .phone-static { width: 180px; height: 360px; }
}
