:root {
  --bg: #f8fafc;
  --card: #fff;
  --ink: #0f172a;
  --muted: #64748b;
  --ring: #e2e8f0;
  --brand: #047857;
  --brand-ink: #064e3b;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  /* Prevent layout shift when scrollbar appears/disappears */
  overflow-y: scroll;
}

body.page {
  margin: 0;
  font: 16px/1.5 Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

.h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 8px;
  z-index: 9999;
  backdrop-filter: saturate(1.2) blur(20px);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 16px;
  max-width: 1400px;
  margin: 8px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 16px;
  max-width: none;
  margin: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  border-radius: 12px;
}

.brand__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.brand__text small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: -1px;
  font-weight: 400;
}

/* Navigation */
.nav {
  display: flex;
  gap: 4px;
}

.nav--desktop {
  display: flex;
}

.nav--mobile {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(4, 120, 87, 0.3);
  background: transparent;
  color: var(--brand);
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(4, 120, 87, 0.1);
}

.btn:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink);
  border-color: rgba(4, 120, 87, 0.5);
  box-shadow: 0 4px 8px rgba(4, 120, 87, 0.15);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid rgba(4, 120, 87, 0.6);
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(4, 120, 87, 0.2);
}

.btn--primary:hover {
  background: color-mix(in oklab, var(--brand) 90%, black 10%);
  border-color: rgba(4, 120, 87, 0.8);
  box-shadow: 0 5px 12px rgba(4, 120, 87, 0.25);
}

.btn--neutral {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--ring);
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.btn--neutral:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--muted);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  transition: all 0.15s ease;
}

.hamburger__line {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.15s ease;
}

.hamburger--active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.nav--mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(-100%);
  transition: transform 0.15s ease;
}

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

.nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

.nav__close-line {
  width: 28px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: all 0.15s ease;
}

.nav__close-line:nth-child(1) {
  transform: rotate(45deg);
}

.nav__close-line:nth-child(2) {
  transform: rotate(-45deg);
  margin-top: -2px;
}

.nav__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
  min-width: 220px;
  text-align: center;
}

.nav__link:hover {
  background: rgba(4, 120, 87, 0.05);
  color: var(--brand);
}

.nav__link--neutral {
  color: var(--muted);
  font-weight: 500;
}

.nav__link--neutral:hover {
  background: var(--bg);
  color: var(--ink);
}

/* Layout */
.section {
  padding: 12px 0;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.link {
  color: var(--brand-ink);
  text-decoration: none;
  font-weight: 600;
}

.link:hover {
  text-decoration: underline;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--3 {
  grid-template-columns: repeat(1, 1fr);
}

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

.grid--4 {
  grid-template-columns: repeat(1, 1fr);
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
}

.card:hover {
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.08);
}

/* Keep image aspect ratio inside the 16:10 card box */
.card__media > img,
.card__img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* use 'cover' if you prefer edge-to-edge crop */
}


.card__body {
  padding: 12px 16px 8px;
}

.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 6px 0 0;
  color: var(--ink);
  text-decoration: none;
}

a .card__title {
  color: var(--ink);
  text-decoration: none;
}

a.card,
a.card * {
  text-decoration: none;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.chip {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #bbf7d0;
}

.tile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.tile:hover {
  background: #f0fdf4;
}

/* CTA */
.cta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid color-mix(in oklab, var(--brand) 20%, #0000);
  background: linear-gradient(135deg, #ecfdf5, #fff);
  border-radius: 16px;
  padding: 18px;
}

.cta__text {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cta__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
}

.cta__title {
  font-weight: 700;
}

/* Hero CTA Section */
.hero-cta {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 20px 0;
}

.hero-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 78, 59, 0.4);
  mix-blend-mode: multiply;
}

.hero-cta__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 78, 59, 0.7), rgba(4, 120, 87, 0.5), transparent);
}

.hero-cta__content {
  position: relative;
  padding: 24px;
  color: #fff;
}

.hero-cta__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
}

.hero-cta__description {
  color: rgba(236, 253, 245, 0.9);
  margin: 0 0 16px;
  line-height: 1.6;
}

.hero-cta__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0 24px;
  font-size: 14px;
}

.hero-cta__feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-cta__feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.hero-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  width: auto;
  max-width: 140px;
}

.hero-cta__btn--primary {
  background: #fff;
  color: var(--brand-ink);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-cta__btn--primary:hover {
  background: rgba(236, 253, 245, 1);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.hero-cta__btn--shimmer {
  position: relative;
  overflow: hidden;
}

.hero-cta__btn--shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 120, 87, 0.15), rgba(255, 255, 255, 0.8), rgba(4, 120, 87, 0.15), transparent);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: -100%; }
  100% { left: 100%; }
}

.hero-cta__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.hero-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--ring);
  padding: 24px 0 20px;
  margin-top: 40px;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  font-size: 14px;
}

.footer__attribution {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer__copyright {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer__links {
  display: flex;
  gap: 16px;
}

.footer__link {
  color: var(--brand);
  text-decoration: none;
  font-size: 13px;
}

.footer__link:hover {
  text-decoration: underline;
}

/* Video Page Styles */
.page-header {
  text-align: center;
  margin-bottom: 0px;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
}

.page-description {
  color: var(--muted);
  margin: 0;
  font-size: 1.1rem;
}

.video-container {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 24px;
}

.video-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 16px 0 0;
  font-size: 14px;
}

.video-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.video-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

/* Radar & Weather Updates */
.grid--radar {
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.radar-section,
.weather-updates-section {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.radar-header,
.weather-updates-header {
  padding: 16px 20px;
}

.radar-header .h2,
.weather-updates-header .h2 {
  color: var(--ink);
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.radar-section {
  height: 500px;
  display: flex;
  flex-direction: column;
}

.radar-container {
  height: 450px;
  position: relative;
  flex: 1;
}

.radar-simple-play {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--brand);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  backdrop-filter: blur(10px);
}

.radar-simple-play:hover {
  background: color-mix(in oklab, var(--brand) 90%, black 10%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.radar-reset-btn {
  position: absolute;
  bottom: 15px;
  left: 70px;
  background: var(--muted);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  backdrop-filter: blur(10px);
}

.radar-reset-btn:hover {
  background: color-mix(in oklab, var(--muted) 80%, black 20%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.radar-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  z-index: 1100;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-live {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

.loading-spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.weather-updates-section {
  max-height: 500px;
  display: flex;
  flex-direction: column;
}

#weather-feed {
  flex: 1;
  overflow-y: auto;
}

.feed-composer {
  border-bottom: 1px solid var(--ring);
  padding: 12px 16px;
  background: #fafafa;
  flex-shrink: 0;
}

.feed-composer textarea {
  width: 100%;
  min-height: 60px;
  resize: vertical;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--ring);
  font-family: inherit;
  font-size: 14px;
}

.composer-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.composer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-left {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.meta-left input,
.meta-left select {
  padding: 6px;
  border: 1px solid var(--ring);
  border-radius: 6px;
  font-size: 12px;
}

.meta-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

#charCount {
  font-size: 11px;
  color: var(--muted);
}

#postBtn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
}

#postBtn:hover {
  opacity: 0.9;
}

.composer-preview {
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--ring);
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  color: var(--ink);
}

.feed-item {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ring);
}

.feed-item:hover {
  background: #fafafa;
}

.feed-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dfe8e5;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-ink);
  font-size: 12px;
}

.feed-body {
  flex: 1;
  min-width: 0;
}

.feed-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.feed-author {
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
}

.feed-time {
  font-size: 11px;
  color: var(--muted);
}

.feed-priority {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
}

.feed-priority.high {
  background: #fde2e1;
  color: #9e1c16;
}

.feed-priority.medium {
  background: #fff4d6;
  color: #8a5b00;
}

.feed-priority.low {
  background: #e3f2fd;
  color: #0b60a8;
}

.feed-text {
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.feed-text a {
  color: var(--brand);
  text-decoration: none;
}

.feed-text a:hover {
  text-decoration: underline;
}

.feed-image {
  margin-top: 8px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ring);
  max-height: 200px;
  display: block;
  width: 100%;
  object-fit: cover;
}

.feed-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  margin-top: 6px;
  background: #f3f7fa;
  border: 1px solid #e0edf7;
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--brand);
  text-decoration: none;
}

.feed-link:hover {
  background: #eaf3fb;
}

.feed-load-more {
  width: 100%;
  background: #f5f5f5;
  border: 1px solid var(--ring);
  color: var(--ink);
  padding: 10px;
  border-radius: 8px;
  margin: 10px auto 16px;
  display: block;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}

.feed-load-more:hover {
  background: #eee;
}

/* About Page */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
}

.about-hero__left {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  place-items: center;
  box-shadow: none;
}

.about-hero__right {
  display: flex;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.about-title {
  font-size: 2rem;
  line-height: 1.2;
  margin: 6px 0 10px;
}

.about-text {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 1rem;
}

.storm-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* Pixel storm animations */
.bolt {
  opacity: 0;
  animation: bolt-flash 3.8s infinite steps(1, end);
}

@keyframes bolt-flash {
  0%, 86% { opacity: 0; }
  87% { opacity: 1; }
  89% { opacity: 0; }
  91% { opacity: 1; }
  94%, 100% { opacity: 0; }
}

.rain .drop {
  opacity: 0.9;
  animation: drop-fall 1.2s linear infinite;
}

.rain .d1 { animation-delay: 0.0s; }
.rain .d2 { animation-delay: 0.2s; }
.rain .d3 { animation-delay: 0.4s; }
.rain .d4 { animation-delay: 0.1s; }
.rain .d5 { animation-delay: 0.3s; }

@keyframes drop-fall {
  0% { transform: translateY(0); }
  90% { transform: translateY(28px); }
  100% { transform: translateY(28px); opacity: 0; }
}

/* Follow Section */
.follow-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
  padding: 40px 0;
}

.follow-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.follow-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
}

.follow-subtitle {
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 1.1rem;
}

.follow-profiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.follow-profile {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.follow-profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.follow-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.follow-link:hover {
  background: rgba(4, 120, 87, 0.02);
}

.follow-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1d9bf0, #0d8bd9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.x-logo {
  width: 24px;
  height: 24px;
  color: #fff;
}

.follow-info {
  text-align: left;
  flex: 1;
}

.follow-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 2px;
  color: var(--ink);
}

.follow-handle {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Content Pages (Privacy Policy, Terms of Use) */
.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.content-card {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  line-height: 1.6;
}

.content-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--ink);
}

.content-card h3:first-of-type {
  margin-top: 16px;
}

.content-card p {
  margin: 0 0 16px;
  color: var(--ink);
}

.content-card ol,
.content-card ul {
  margin: 0 0 16px;
  padding-left: 24px;
}

.content-card li {
  margin: 8px 0;
  color: var(--ink);
}

.content-card ol li {
  list-style-type: decimal;
}

.content-card ul li {
  list-style-type: disc;
}

/* Model Selection Page */
.model-selection-title {
  font-size: 1.5rem !important;
}

.model-card {
  transition: all 0.3s ease;
}

.model-card .card__body {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100px;
  padding: 24px 16px;
}

.model-card .card__title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(4, 120, 87, 0.15);
}

.model-description {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin: 8px 0 0;
}

.model-info-card {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.model-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.model-info-section {}

.model-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.model-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.model-info-item {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.model-info-item:last-child {
  border-bottom: none;
}

.model-info-item strong {
  color: var(--brand-ink);
}

/* Media Queries */
@media (max-width: 640px) {
  .site-header {
    margin: 4px 0;
    top: 4px;
    max-width: none;
  }
  
  .site-header .wrap {
    padding: 0 16px;
    height: 64px;
  }
  
  .nav--desktop {
    display: none;
  }
  
  .nav--mobile {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
  
  .brand__text {
    font-size: 16px;
  }
  
  .brand__text small {
    display: none;
  }
  
  .brand__icon {
    width: 42px;
    height: 42px;
  }
  
  .radar-section {
    height: 350px;
  }
  
  .radar-container {
    height: 300px;
  }
  
  .weather-updates-section {
    max-height: 350px;
  }
  
  .radar-simple-play {
    bottom: 10px;
    left: 10px;
    padding: 6px 10px;
    font-size: 14px;
  }
  
  .radar-reset-btn {
    bottom: 10px;
    left: 60px;
    padding: 6px 10px;
    font-size: 14px;
  }
  
  .meta-left {
    width: 100%;
  }
  
  .meta-right {
    width: 100%;
    justify-content: flex-end;
  }
  
  /* Move scroll hint to bottom right on mobile */
  #scrollHint {
    left: auto !important;
    right: 13px !important;
  }
  
  .about-title {
    font-size: 1.5rem;
  }
  
  .content-card {
    padding: 24px;
    margin: 0;
  }
}

@media (min-width: 640px) {
  .nav--mobile {
    display: none;
  }
  
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-cta__content {
    padding: 40px;
  }
  
  .hero-cta__title {
    font-size: 2rem;
  }
  
  .hero-cta__features {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .page-title {
    font-size: 1.75rem;
  }
  
  .video-features {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  
  .footer__legal {
    flex-direction: row;
    gap: 16px;
  }
  
  .follow-profiles {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .follow-section {
    padding: 60px 0;
  }
  
  .follow-title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .model-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-cta__content {
    padding: 56px;
  }
  
  .hero-cta__title {
    font-size: 2.25rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .about-hero {
    grid-template-columns: 1fr 1.1fr;
    gap: 16px;
  }
  
  .about-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 1024px) {
  .grid--radar {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .radar-section {
    height: 400px;
  }
  
  .radar-container {
    height: 350px;
  }
  
  .weather-updates-section {
    max-height: 400px;
  }
  
  .about-hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .about-title {
    font-size: 1.75rem;
  }
}