/* ==========================================================================
   AMP JOINT 10 — Design System
   Palette: deep teal (brand authority) + warm cream (approachability)
   Display type: Fraunces (warm, confident serif)
   Body type: Inter (clean, highly legible)
   Signature element: the "10-Ring" — a radial orbit of 10 nodes that stands
   in for the formula throughout the site (hero, ingredients, dividers).
   ========================================================================== */

:root {
  /* --- Brand color tokens --- */
  --amp-teal-dark: #002F33;
  --amp-teal-deep: #003B40;
  --amp-teal-mid: #0E5C63;
  --amp-teal-soft: #DCEAE8;
  --amp-cream: #FBF6EC;
  --amp-cream-card: #F4EDDD;
  --amp-gold: #B8863C;
  --amp-gold-light: #E8C77E;
  --amp-ink: #16231F;
  --amp-ink-soft: #46585A;
  --amp-white: #FFFFFF;
  --amp-line: rgba(0, 47, 51, 0.12);
  --amp-shadow: 0 20px 50px -20px rgba(0, 40, 44, 0.35);

  /* --- Type --- */
  --font-display: "Fraunces", "Iowan Old Style", ui-serif, Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- Layout --- */
  --max-w: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--amp-ink);
  background: var(--amp-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--amp-teal-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }

p { line-height: 1.7; margin: 0 0 1em; color: var(--amp-ink-soft); }

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

section { padding: 72px 0; }
@media (max-width: 720px) { section { padding: 48px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amp-gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amp-gold);
  display: inline-block;
}

.section-head { max-width: 680px; margin: 0 0 40px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-align: center;
}
.btn:focus-visible { outline: 3px solid var(--amp-gold-light); outline-offset: 2px; }
.btn-primary {
  background: linear-gradient(135deg, var(--amp-gold-light), var(--amp-gold));
  color: var(--amp-teal-dark);
  box-shadow: 0 12px 28px -10px rgba(184, 134, 60, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(184, 134, 60, 0.65); }
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--amp-white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--amp-white); }
.btn-outline {
  background: transparent;
  border-color: var(--amp-teal-dark);
  color: var(--amp-teal-dark);
}
.btn-outline:hover { background: var(--amp-teal-dark); color: var(--amp-white); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--amp-line);
}
.nav-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }
.brand-fallback { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--amp-teal-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--amp-teal-dark);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--amp-gold);
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.85rem; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amp-teal-dark);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 68px);
    background: var(--amp-cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    z-index: 90;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-cta { display: none; }
  .nav-links .nav-cta-mobile { display: flex; margin-top: 10px; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(ellipse at 15% 0%, #01474D 0%, var(--amp-teal-dark) 55%, var(--amp-teal-deep) 100%);
  color: var(--amp-white);
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(232,199,126,0.14), transparent 45%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-grid .hero-actions { justify-content: center; }
  .hero-grid .hero-badges { justify-content: center; }
}
.hero h1 { color: var(--amp-white); }
.hero .lede { color: rgba(255,255,255,0.86); font-size: 1.08rem; max-width: 540px; }
@media (max-width: 900px) { .hero .lede { margin-left: auto; margin-right: auto; } }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-badges {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 34px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.hero-badge { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amp-gold-light); flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--amp-shadow); }
.hero-visual .float-tag {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--amp-white);
  color: var(--amp-teal-dark);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 30px -12px rgba(0,0,0,0.35);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 900px) { .hero-visual .float-tag { left: 50%; transform: translateX(-50%); bottom: -14px; } }

/* ---------- 10-Ring signature element ---------- */
.ten-ring { display: block; margin: 0 auto; }
.ten-ring circle.node { fill: var(--amp-gold-light); }
.ten-ring .core { fill: var(--amp-teal-dark); }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

.card {
  background: var(--amp-white);
  border: 1px solid var(--amp-line);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -24px rgba(0,40,44,0.28); }
.card .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--amp-teal-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--amp-teal-dark);
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.95rem; }

.card-dark {
  background: var(--amp-teal-dark);
  color: rgba(255,255,255,0.88);
  border-color: transparent;
}
.card-dark h3 { color: var(--amp-white); }
.card-dark p { color: rgba(255,255,255,0.75); }
.card-dark .icon-wrap { background: rgba(255,255,255,0.12); color: var(--amp-gold-light); }

/* ---------- Ingredient cards ---------- */
.ingredient-card {
  background: var(--amp-white);
  border: 1px solid var(--amp-line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.ingredient-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amp-gold);
  letter-spacing: 0.05em;
}
.ingredient-card h3 { margin-bottom: 2px; }
.ingredient-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amp-teal-mid);
  background: var(--amp-teal-soft);
  padding: 5px 11px;
  border-radius: 100px;
  width: fit-content;
}

/* ---------- Sections with dark background ---------- */
.section-dark {
  background: var(--amp-teal-dark);
  color: rgba(255,255,255,0.85);
}
.section-dark h2, .section-dark h3 { color: var(--amp-white); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark .section-head .eyebrow { color: var(--amp-gold-light); }

.section-cream-card { background: var(--amp-cream-card); }

/* ---------- Stat row ---------- */
.stat-row { display: flex; flex-wrap: wrap; gap: 40px; }
.stat { min-width: 140px; }
.stat .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--amp-teal-dark); font-weight: 600; }
.stat .label { font-size: 0.82rem; color: var(--amp-ink-soft); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.price-card {
  background: var(--amp-white);
  border: 1px solid var(--amp-line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.price-card.featured {
  background: var(--amp-teal-dark);
  color: var(--amp-white);
  transform: scale(1.04);
  box-shadow: var(--amp-shadow);
  border-color: transparent;
}
@media (max-width: 900px) { .price-card.featured { transform: none; } }
.price-card.featured p, .price-card.featured .price-total { color: rgba(255,255,255,0.75); }
.price-tag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amp-gold);
  color: var(--amp-teal-dark);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card .package-name { font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.08em; color: var(--amp-gold); }
.price-card .price-big { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; margin: 4px 0; }
.price-card .price-big span { font-size: 1rem; font-weight: 500; color: inherit; opacity: 0.7; }
.price-card .price-total { font-size: 0.88rem; color: var(--amp-ink-soft); }
.price-card img { border-radius: var(--radius-sm); margin: 6px 0; }
.price-card .btn { margin-top: 6px; }

/* ---------- Intro + pricing snapshot (Reviews page top) ---------- */
.intro-pricing-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px) {
  .intro-pricing-grid { grid-template-columns: 1fr; }
}

.price-snapshot {
  background: var(--amp-teal-dark);
  color: var(--amp-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}
@media (max-width: 900px) { .price-snapshot { position: static; } }
.price-snapshot-img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
}
.price-snapshot-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--amp-white);
  margin: 0 0 14px;
  text-align: center;
}
.price-snapshot-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.price-snapshot-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
}
.price-snapshot-list li:last-child { border-bottom: none; }
.price-snapshot-list .pkg { font-weight: 600; color: rgba(255,255,255,0.85); }
.price-snapshot-list .pkg em { display: block; font-style: normal; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--amp-gold-light); font-weight: 700; margin-top: 2px; }
.price-snapshot-list .amt { font-family: var(--font-display); font-weight: 600; color: var(--amp-white); font-size: 1.05rem; }
.price-snapshot-list .amt small { font-size: 0.7rem; font-weight: 500; opacity: 0.7; }
.price-snapshot-list li.featured-row {
  background: rgba(232, 199, 126, 0.14);
  border-radius: 10px;
  border-bottom: none;
  margin: 2px 0;
}
.price-snapshot-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin-bottom: 18px;
}

/* ---------- Comparison table ---------- */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--amp-line); }
table.compare-table { width: 100%; border-collapse: collapse; background: var(--amp-white); min-width: 640px; }
table.compare-table th, table.compare-table td {
  padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--amp-line); font-size: 0.92rem;
}
table.compare-table thead th { background: var(--amp-teal-dark); color: var(--amp-white); font-family: var(--font-display); font-weight: 600; }
table.compare-table tbody tr:last-child td { border-bottom: none; }
table.compare-table td:first-child { font-weight: 700; color: var(--amp-teal-dark); }
table.compare-table td.highlight { color: var(--amp-teal-mid); font-weight: 600; background: var(--amp-teal-soft); }

@media (max-width: 640px) {
  .compare-cards { display: flex; flex-direction: column; gap: 14px; }
  .compare-cards .compare-card { border: 1px solid var(--amp-line); border-radius: var(--radius-md); padding: 18px 20px; background: var(--amp-white); }
  .compare-cards .compare-card h4 { margin: 0 0 8px; color: var(--amp-teal-dark); font-family: var(--font-display); }
  .compare-cards .compare-card .row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px dashed var(--amp-line); font-size: 0.88rem; }
  .compare-cards .compare-card .row:last-child { border-bottom: none; }
  table.compare-table { display: none; }
}
@media (min-width: 641px) { .compare-cards { display: none; } }

/* ---------- FAQ Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--amp-line); border-radius: var(--radius-md); background: var(--amp-white); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--amp-teal-dark);
}
.faq-question .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-question .plus::before, .faq-question .plus::after {
  content: ""; position: absolute; background: var(--amp-teal-dark); border-radius: 2px; transition: transform 0.25s ease;
}
.faq-question .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-question .plus::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .faq-question .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 24px 22px; }
.faq-answer p { margin: 0; font-size: 0.94rem; }

/* ---------- Blog cards ---------- */
.blog-card {
  background: var(--amp-white);
  border: 1px solid var(--amp-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -24px rgba(0,40,44,0.28); }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--amp-teal-soft); }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card .meta { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--amp-teal-mid); }
.blog-card h3 { margin-bottom: 4px; font-size: 1.15rem; }
.blog-card p { font-size: 0.9rem; flex: 1; }
.blog-card .read-more { font-weight: 700; font-size: 0.86rem; color: var(--amp-teal-dark); display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; }
.blog-card .read-more:hover { color: var(--amp-gold); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.82rem; padding: 18px 0; color: var(--amp-ink-soft); }
.breadcrumbs a { color: var(--amp-teal-mid); font-weight: 600; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }

/* ---------- Article layout ---------- */
.article-hero { background: var(--amp-teal-dark); color: var(--amp-white); padding: 56px 0 48px; }
.article-hero .meta { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amp-gold-light); font-weight: 700; margin-bottom: 14px; }
.article-hero h1 { color: var(--amp-white); max-width: 780px; }
.article-hero .lede { color: rgba(255,255,255,0.78); max-width: 680px; font-size: 1.05rem; }

.article-body { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.article-body h2 { margin-top: 1.7em; }
.article-body h3 { margin-top: 1.4em; }
.article-body p { font-size: 1.02rem; }
.article-body ul, .article-body ol { color: var(--amp-ink-soft); line-height: 1.75; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body img { border-radius: var(--radius-md); margin: 28px 0; box-shadow: var(--amp-shadow); }
.article-body a.inline-link { color: var(--amp-teal-mid); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote {
  border-left: 4px solid var(--amp-gold);
  margin: 28px 0;
  padding: 6px 0 6px 22px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--amp-teal-dark);
}
.pull-callout {
  background: var(--amp-cream-card);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin: 32px 0;
  border: 1px solid var(--amp-line);
}
.pull-callout p:last-child { margin-bottom: 0; }

.article-cta {
  background: var(--amp-teal-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--amp-white);
  margin: 44px 0;
}
.article-cta h3 { color: var(--amp-white); margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.75); max-width: 480px; margin-left: auto; margin-right: auto; }

.related-posts { border-top: 1px solid var(--amp-line); padding-top: 32px; margin-top: 44px; }
.related-posts h3 { margin-bottom: 18px; }

/* ---------- Testimonial / customer story cards ---------- */
.story-card {
  background: var(--amp-white);
  border: 1px solid var(--amp-line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.story-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.story-card .story-activity { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--amp-gold); margin-bottom: 6px; }
.story-card p { font-size: 0.94rem; margin-bottom: 0; }

/* ---------- FAQ / Disclaimer banner ---------- */
.disclaimer-banner {
  background: var(--amp-cream-card);
  border: 1px solid var(--amp-line);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  font-size: 0.86rem;
  color: var(--amp-ink-soft);
  line-height: 1.7;
}
.disclaimer-banner strong { color: var(--amp-teal-dark); }

/* ---------- Guarantee section ---------- */
.guarantee-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--amp-teal-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--amp-white);
}
@media (max-width: 720px) { .guarantee-wrap { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; } }
.guarantee-wrap h2 { color: var(--amp-white); }
.guarantee-wrap p { color: rgba(255,255,255,0.75); }

/* ---------- Footer ---------- */
.site-footer { background: var(--amp-teal-dark); color: rgba(255,255,255,0.65); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--amp-white); font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 0.9rem; }
.footer-grid a:hover { color: var(--amp-gold-light); }
.footer-brand img { height: 30px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); max-width: 320px; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 46px;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  max-width: 900px;
  margin-top: 18px;
  line-height: 1.7;
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--amp-teal-soft);
  color: var(--amp-teal-mid);
}
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--amp-ink-soft); }
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--amp-teal-mid);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}

.divider-ring { display: flex; justify-content: center; margin: 8px 0 36px; opacity: 0.7; }

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--amp-teal-dark); color: var(--amp-white); padding: 12px 18px; border-radius: 8px; z-index: 999;
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible { outline: 3px solid var(--amp-gold); outline-offset: 2px; }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-page .code { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 8rem); color: var(--amp-teal-dark); line-height: 1; margin-bottom: 0; }

/* ---------- Final CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--amp-teal-dark), var(--amp-teal-deep));
  color: var(--amp-white);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--amp-white); }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto 26px; }
.cta-band .hero-actions { justify-content: center; }

/* === network upgrade: popup + sources === */
.np-pop {
  position: fixed; left: 18px; bottom: 18px; z-index: 60;
  display: flex; align-items: center; gap: 12px;
  width: 320px; max-width: calc(100vw - 36px);
  padding: 12px 38px 12px 12px;
  background: #fff; color: #1c1c1c;
  border: 1px solid rgba(0,0,0,0.10); border-radius: 16px;
  box-shadow: 0 18px 44px -18px rgba(0,0,0,0.45);
  font-family: inherit; text-align: left;
  transform: translateX(calc(-100% - 24px)); opacity: 0; visibility: hidden;
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .5s ease, visibility .5s;
}
.np-pop.is-in { transform: translateX(0); opacity: 1; visibility: visible; }
.np-pop img {
  width: 52px; height: auto; flex: 0 0 52px;
  border-radius: 10px; border: 1px solid rgba(0,0,0,0.08); background: #fafafa;
}
.np-pop-body { min-width: 0; }
.np-pop-name { font-weight: 700; font-size: .9rem; line-height: 1.3; }
.np-pop-what { font-size: .82rem; opacity: .72; line-height: 1.4; }
.np-pop-when { font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; opacity: .6; margin-top: 2px; }
.np-pop-close {
  position: absolute; top: 6px; right: 6px; width: 26px; height: 26px;
  border: 0; border-radius: 50%; background: transparent; color: inherit;
  opacity: .5; font-size: 1rem; line-height: 1; cursor: pointer;
}
.np-pop-close:hover { opacity: 1; background: rgba(0,0,0,0.06); }
@media (max-width: 560px) {
  /* not edge-to-edge on phones: a full-bleed card sits on top of the
     full-width CTA buttons these pages use, so leave the right side free */
  .np-pop { left: 10px; right: auto; bottom: 10px; width: min(300px, calc(100vw - 84px)); max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .np-pop { transition: opacity .2s ease, visibility .2s; transform: none; }
}

.np-sources { padding: 56px 0; }
.np-sources .np-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.np-sources h2 { margin: 0 0 10px; }
.np-sources .np-intro { opacity: .75; max-width: 62ch; margin: 0 0 26px; }
.np-ref-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.np-ref-list li { padding-left: 16px; border-left: 3px solid rgba(0,0,0,0.12); font-size: .95rem; }
.np-ref-list a { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.np-ref-src { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; opacity: .6; margin-top: 2px; }

/* === network upgrade: final CTA === */
.np-final { padding: 64px 0; }
.np-final .np-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.np-final-inner {
  display: grid; grid-template-columns: minmax(0,300px) minmax(0,1fr);
  gap: 40px; align-items: center;
  background: #14100c; color: #f6efe7;
  border-radius: 24px; padding: 44px 40px;
}
.np-final-inner h2 { color: #fff; margin: 0 0 12px; }
.np-final-inner p { opacity: .82; margin: 0 0 24px; max-width: 56ch; }
.np-final-shot img {
  width: 100%; height: auto;          /* natural aspect ratio, never cropped */
  max-width: 300px; margin: 0 auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.5));
}
.np-final-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 34px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  background: #f17e12; color: #fff; text-decoration: none;
  box-shadow: 0 12px 30px -12px rgba(241,126,18,.8);
}
.np-final-btn:hover { filter: brightness(1.07); }
.np-final-note { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; opacity: .6; margin: 18px 0 0; }
@media (max-width: 820px) {
  .np-final-inner { grid-template-columns: 1fr; text-align: center; padding: 34px 22px; }
  .np-final-inner p { margin-left: auto; margin-right: auto; }
  .np-final-shot img { max-width: 220px; }
}

/* === network upgrade: silo cross-links === */
.np-cross { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin: 32px 0; }
.np-cross a {
  display: block; padding: 16px 18px; border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px; text-decoration: none; color: inherit; background: rgba(0,0,0,.015);
  transition: border-color .15s ease, transform .15s ease;
}
.np-cross a:hover { border-color: rgba(0,0,0,.35); transform: translateY(-2px); }
.np-cross span { display: block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .55; margin-bottom: 5px; }
.np-cross strong { font-weight: 700; font-size: .98rem; line-height: 1.3; }
.np-crumbs { font-size: .85rem; opacity: .75; margin: 0 0 4px; }
.np-crumbs a { text-decoration: none; color: inherit; border-bottom: 1px solid rgba(0,0,0,.25); }
.np-crumbs .sep { opacity: .45; margin: 0 7px; }
