:root {
  --navy: #0C447C;
  --navy-light: #185FA5;
  --navy-bg: #E6F1FB;
  --navy-deep: #042C53;
  --cream: #FBF9F4;
  --cream-deep: #F5F1E8;
  --text: #2C2C2A;
  --text-secondary: #5F5E5A;
  --text-tertiary: #888780;
  --border: #E8E5DC;
  --border-soft: #F1EFE8;
  --surface: #FFFFFF;
  --surface-alt: #FAFBFC;
  --green-bg: #EAF3DE;
  --green-accent: #639922;
  --amber-bg: #FAEEDA;
  --amber-accent: #BA7517;
  --pink-bg: #FBEAF0;
  --pink-accent: #993556;
  --red-accent: #A32D2D;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--navy); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--navy-light); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
header.site-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  background: rgba(255, 255, 255, 0.92);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
}
nav.primary { display: flex; gap: 28px; font-size: 14px; color: var(--text); }
nav.primary a { color: var(--text); }
nav.primary a:hover { color: var(--navy); }
nav.primary a.active { color: var(--navy); font-weight: 500; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-secondary); padding: 6px; display: flex;
}
.icon-btn:hover { color: var(--navy); }
.btn-primary {
  background: var(--navy); color: white;
  padding: 8px 16px; border-radius: 6px;
  font-size: 13px; font-weight: 500;
  border: none; cursor: pointer;
  transition: background 0.15s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover { background: var(--navy-light); color: white; }
.btn-outline {
  border: 1px solid var(--border); color: var(--text);
  padding: 8px 16px; border-radius: 6px;
  font-size: 13px; font-weight: 500;
  background: var(--surface); cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

/* TRENDING BAR */
.trending-bar {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 0;
  overflow: hidden;
}
.trending-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.trending-inner::-webkit-scrollbar { display: none; }
.trending-label {
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 4px;
  border-right: 1px solid var(--border);
  margin-right: 4px;
}
.trending-label .pulse {
  width: 6px;
  height: 6px;
  background: #E24B4A;
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.trending-source {
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.trending-source svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.trending-tags {
  display: flex;
  gap: 6px;
  align-items: center;
}
.trending-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trending-tag:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.trending-divider {
  color: var(--border);
  user-select: none;
}

/* HERO (homepage) */
.hero {
  padding: 72px 0 64px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy);
  font-weight: 600; margin-bottom: 18px;
}
.kicker .dot { width: 4px; height: 4px; background: var(--navy); border-radius: 50%; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; }
.hero p.lede {
  font-size: 17px; line-height: 1.55;
  color: var(--text-secondary);
  max-width: 480px; margin-bottom: 26px;
}
.hero-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--text-tertiary);
  margin-bottom: 26px;
}
.hero-meta .sep { width: 3px; height: 3px; background: var(--text-tertiary); border-radius: 50%; }
.hero-art {
  aspect-ratio: 1/1;
  background: radial-gradient(circle at 35% 30%, #F0F7FE 0%, #DCEBFA 50%, #B5D4F4 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-art::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 70% 80%, rgba(12, 68, 124, 0.06), transparent 50%);
}
.hero-art svg.shrimp {
  width: 82%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(12, 68, 124, 0.15));
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.85), rgba(255,255,255,0.15) 70%, transparent);
  border: 1px solid rgba(255,255,255,0.5);
  z-index: 1;
}
.bubble.b1 { width: 14px; height: 14px; top: 18%; right: 22%; animation: float 4s ease-in-out infinite; }
.bubble.b2 { width: 8px; height: 8px; top: 30%; right: 14%; animation: float 5s ease-in-out infinite 0.5s; }
.bubble.b3 { width: 11px; height: 11px; bottom: 28%; right: 18%; animation: float 4.5s ease-in-out infinite 1s; }
.bubble.b4 { width: 6px; height: 6px; top: 50%; right: 8%; animation: float 6s ease-in-out infinite 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* SECTION BASE */
.section { padding: 80px 0; position: relative; }
.section-header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: 32px; font-weight: 500;
  letter-spacing: -0.02em;
}
.section-header h2 .num {
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.section-header > a {
  font-size: 13px; color: var(--navy); font-weight: 500; white-space: nowrap;
}

/* SECTION VARIANTS */
.section-latest {
  background: var(--cream);
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
}
.section-latest .section-header h2 .num { color: var(--navy); }
.section-tools {
  background: var(--navy-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-tools::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(24, 95, 165, 0.4), transparent 60%);
  pointer-events: none;
}
.section-tools .container { position: relative; }
.section-tools .section-header h2 { color: white; }
.section-tools .section-header h2 .num { color: #85B7EB; }
.section-tools .section-header p {
  margin-top: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.section-tools .section-header > a { color: #85B7EB; }
.section-guides { background: var(--surface); }
.section-experiment {
  background: var(--cream-deep);
  border-top: 1px solid #EBE5D5;
}

/* POST GRIDS */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  cursor: pointer;
  transition: transform 0.2s ease;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.post-card:hover { transform: translateY(-3px); }
.post-card:hover h3 { color: var(--navy); }
.post-thumb {
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.post-thumb.fish { background: var(--navy-bg); color: var(--navy-light); }
.post-thumb.shrimp { background: var(--pink-bg); color: var(--pink-accent); }
.post-thumb.plants { background: var(--green-bg); color: var(--green-accent); }
.post-thumb.guide { background: var(--amber-bg); color: var(--amber-accent); }
.post-card-body { padding: 20px 22px 24px; }
.post-meta {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-tertiary);
  margin-bottom: 8px; font-weight: 500;
}
.post-card h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 500;
  line-height: 1.25; color: var(--text);
  transition: color 0.15s ease;
  letter-spacing: -0.01em;
}
.post-card p.excerpt {
  margin-top: 10px; font-size: 14px;
  color: var(--text-secondary); line-height: 1.5;
}

/* TOOLS */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tool-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 22px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
}
.tool-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.tool-icon {
  width: 40px; height: 40px;
  background: rgba(133, 183, 235, 0.15);
  color: #85B7EB;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.tool-card h3 {
  font-size: 16px; font-weight: 500;
  margin-bottom: 4px; color: white;
}
.tool-card p {
  font-size: 12px; color: rgba(255,255,255,0.6);
}

/* SECONDARY */
.secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.secondary-post {
  border-top: 2px solid var(--text);
  padding-top: 18px;
  cursor: pointer;
  transition: opacity 0.15s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.secondary-post:hover { opacity: 0.7; }
.secondary-post .post-meta { margin-bottom: 8px; }
.secondary-post h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 500;
  line-height: 1.25; color: var(--text);
  letter-spacing: -0.005em;
}
.secondary-post .read-meta {
  margin-top: 12px;
  font-size: 12px; color: var(--text-tertiary);
}
.secondary-post .num-large {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  font-style: italic;
}

/* EXPERIMENT */
.experiment-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.experiment-card:hover h3 { color: var(--navy); }
.experiment-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-bg) 0%, #B5D4F4 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.experiment-image svg {
  width: 65%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(12, 68, 124, 0.18));
}
.experiment-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.15s ease;
}
.experiment-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.experiment-card .read-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
}

/* NEWSLETTER */
.section-newsletter {
  background: var(--navy);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(133, 183, 235, 0.25), transparent 50%);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.newsletter-inner h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.newsletter-inner h2 em { font-style: italic; color: #B5D4F4; }
.newsletter-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.55;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 6px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 14px;
  color: white;
  font-size: 14px;
  font-family: var(--sans);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  background: white;
  color: var(--navy);
  border: none;
  padding: 12px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
}
.newsletter-form button:hover { background: var(--cream); }
.newsletter-meta {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* FOOTER */
footer {
  background: var(--cream);
  padding: 64px 0 36px;
  border-top: 1px solid var(--cream-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: var(--text); }
.footer-disclosure {
  border-top: 1px solid var(--cream-deep);
  padding-top: 24px;
  font-size: 11px;
  color: var(--text-tertiary);
  line-height: 1.6;
  max-width: 720px;
}
.footer-disclosure a { color: var(--navy); }

/* ==== ARTICLE PAGE STYLES ==== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(to right, var(--navy), var(--navy-light));
  z-index: 100;
  transition: width 0.05s ease-out;
  pointer-events: none;
}

.article-header {
  padding: 56px 0 32px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
}
.article-breadcrumb {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article-breadcrumb a {
  color: var(--text-tertiary);
}
.article-breadcrumb a:hover { color: var(--navy); }
.article-breadcrumb .sep { margin: 0 8px; opacity: 0.4; }
.article-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 12px;
}
.category-pill {
  background: var(--navy);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.category-pill.shrimp { background: var(--pink-accent); }
.category-pill.plants { background: var(--green-accent); }
.category-pill.guide { background: var(--amber-accent); }
.category-pill.fish { background: var(--navy); }
.article-meta-top .read-time { color: var(--text-tertiary); }
.article-title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 800px;
}
.article-lede {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 720px;
  margin-bottom: 22px;
}
.article-byline {
  font-size: 13px;
  color: var(--text-tertiary);
  display: flex;
  gap: 12px;
  align-items: center;
}
.article-byline .sep { width: 3px; height: 3px; background: var(--text-tertiary); border-radius: 50%; }

/* affiliate banner */
.affiliate-banner {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 32px auto 0;
  max-width: 720px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.affiliate-banner .info-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--navy);
  margin-top: 1px;
}
.affiliate-banner a { color: var(--navy); font-weight: 500; }

/* article body */
.article-body {
  max-width: 720px;
  margin: 56px auto;
  padding: 0 24px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.article-body p {
  margin-bottom: 1.4em;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 2.2em 0 0.7em;
  color: var(--text);
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 1.8em 0 0.5em;
  letter-spacing: -0.01em;
}
.article-body strong { font-weight: 500; }
.article-body em { font-style: italic; }
.article-body a {
  color: var(--navy);
  border-bottom: 1px solid rgba(12, 68, 124, 0.3);
  padding-bottom: 1px;
}
.article-body a:hover { border-bottom-color: var(--navy); }
.article-body ul, .article-body ol {
  margin: 0 0 1.4em 1.4em;
  padding: 0;
}
.article-body li {
  margin-bottom: 0.5em;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  font-size: 15px;
}
.article-body table th {
  background: var(--cream);
  font-weight: 500;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.article-body table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}

/* product card (inline affiliate) */
.product-card {
  background: var(--surface-alt);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--navy);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 1.8em 0;
}
.product-card .pc-kicker {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 10px;
}
.product-card .pc-body {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
}
.product-card .pc-icon {
  width: 64px;
  height: 64px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.product-card .pc-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}
.product-card .pc-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.product-card .pc-cta {
  background: var(--navy);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}
.product-card .pc-cta:hover { background: var(--navy-light); color: white; }

/* gear roundup at end */
.gear-roundup {
  background: var(--cream);
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
  padding: 56px 0;
  margin-top: 56px;
}
.gear-roundup-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.gear-roundup h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.gear-roundup p.intro {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
.gear-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gear-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s ease;
}
.gear-item:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}
.gear-item .gi-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.gear-item .gi-icon.green { background: var(--green-bg); color: var(--green-accent); }
.gear-item .gi-icon.blue { background: var(--navy-bg); color: var(--navy); }
.gear-item .gi-icon.amber { background: var(--amber-bg); color: var(--amber-accent); }
.gear-item .gi-icon.pink { background: var(--pink-bg); color: var(--pink-accent); }
.gear-item .gi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.3;
}
.gear-item .gi-link {
  font-size: 11px;
  color: var(--navy);
}

/* sources section */
.sources {
  max-width: 720px;
  margin: 56px auto;
  padding: 0 24px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.sources h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sources ol {
  padding-left: 1.4em;
}
.sources li {
  margin-bottom: 8px;
}

/* per-component disclosure */
.disclosure-line {
  font-size: 11px;
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: 6px;
  padding-left: 4px;
}

/* article footer */
.article-footer-cta {
  background: var(--cream-deep);
  padding: 64px 0;
  text-align: center;
}
.article-footer-cta h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.article-footer-cta p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* LEGAL PAGES */
.legal-page {
  max-width: 720px;
  margin: 64px auto;
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.7;
}
.legal-page h1 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.legal-page .last-updated {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 36px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-page h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 1.8em 0 0.6em;
  letter-spacing: -0.015em;
}
.legal-page h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin: 1.6em 0 0.4em;
}
.legal-page p { margin-bottom: 1.2em; }
.legal-page ul, .legal-page ol {
  margin: 0 0 1.2em 1.4em;
}
.legal-page li { margin-bottom: 0.4em; }
.legal-page strong { font-weight: 500; color: var(--text); }
.legal-page a {
  color: var(--navy);
  border-bottom: 1px solid rgba(12, 68, 124, 0.3);
}
.legal-page a:hover { border-bottom-color: var(--navy); }
.legal-page hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.4em 0;
}

/* MOBILE */
@media (max-width: 900px) {
  nav.primary { display: none; }
  .hero { padding: 48px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 38px; }
  .hero-art { max-width: 320px; margin: 0 auto; }
  .post-grid { grid-template-columns: 1fr; gap: 20px; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .secondary-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 26px; }
  .experiment-card { grid-template-columns: 1fr; gap: 28px; }
  .experiment-card h3 { font-size: 26px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-inner h2 { font-size: 28px; }
  .article-title { font-size: 32px; }
  .article-lede { font-size: 17px; }
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 24px; }
  .article-body h3 { font-size: 18px; }
  .product-card .pc-body { grid-template-columns: 48px 1fr; }
  .product-card .pc-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
    padding: 11px;
    font-size: 13px;
  }
  .gear-list { grid-template-columns: 1fr; }
  .legal-page h1 { font-size: 32px; }
}
@media (max-width: 500px) {
  .container { padding: 0 18px; }
  .header-actions .btn-primary { padding: 8px 12px; font-size: 12px; }
  .hero h1 { font-size: 30px; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .article-body { padding: 0 18px; }
}

.icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
