/* =========================================================
   Pineal Guard Review — Shared Stylesheet
   Design tokens
   ---------------------------------------------------------
   Ink      #14213D  (primary text / dark surfaces)
   Parchment#F6F2E9  (background)
   Sage     #7C9885  (botanical / natural accent)
   Gold     #B8923D  (CTA / premium accent)
   Mist     #E7E4F2  (soft "clarity" accent, used sparingly)
   Charcoal #2B2B2B  (body text)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600&display=swap');

:root {
  --ink: #14213D;
  --ink-soft: #2A3358;
  --parchment: #F6F2E9;
  --parchment-dim: #EFE9DA;
  --sage: #7C9885;
  --sage-dark: #5D7767;
  --gold: #B8923D;
  --gold-dark: #96762E;
  --mist: #E7E4F2;
  --charcoal: #2B2B2B;
  --line: rgba(20, 33, 61, 0.12);
  --white: #FFFDF9;
  --radius: 4px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--charcoal);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.3rem; font-weight: 700; }

p { margin: 0 0 1.1em; }

a { color: var(--sage-dark); }

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--sage-dark);
  display: inline-block;
}

/* ---------- Top disclosure bar ---------- */
.disclosure-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}
.disclosure-bar a { color: #E7DFC4; text-decoration: underline; }

/* ---------- Header ---------- */
header.site-header {
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(6px);
  background: rgba(246, 242, 233, 0.92);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--sage-dark); }
.header-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.header-cta:hover { background: var(--gold-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
}
.hero-glow {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,152,133,0.28) 0%, rgba(124,152,133,0.08) 45%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero h1 { margin-bottom: 18px; }
.hero .lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.hero-meta strong { color: var(--ink); display: block; font-size: 1rem; }
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--white) !important; }
.btn-block { width: 100%; justify-content: center; }
.btn-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ---------- Verdict box ---------- */
.verdict {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin: -12px 0 60px;
  box-shadow: 0 10px 30px -18px rgba(20,33,61,0.25);
}
.verdict-score { text-align: center; }
.verdict-score .num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.6rem; color: var(--sage-dark); font-weight: 800; line-height: 1; }
.verdict-score .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-top: 6px; }
.verdict-body h3 { margin-bottom: 6px; font-size: 1.1rem; }
.verdict-body p { margin: 0; font-size: 0.94rem; color: var(--ink-soft); }
.verdict-cta { text-align: center; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 68ch; margin-bottom: 40px; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Product photo ---------- */
.product-shot-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.product-shot {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  box-shadow: 0 20px 40px -26px rgba(20,33,61,0.3);
}
.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-shot-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(160deg, var(--mist) 0%, var(--parchment) 100%);
  color: var(--ink-soft);
  text-align: center;
  padding: 20px;
}
.product-shot-fallback span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
}
.product-shot-fallback small {
  font-size: 0.78rem;
  line-height: 1.6;
}
.product-shot-fallback code {
  background: rgba(20,33,61,0.08);
  padding: 1px 6px;
  border-radius: 3px;
}
@media (max-width: 880px) {
  .product-shot-grid { grid-template-columns: 1fr; }
  .product-shot { max-width: 320px; margin: 0 auto; aspect-ratio: 1/1; }
}

/* ---------- Mechanism / phases ---------- */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.phase {
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 26px;
  position: relative;
}
.phase .tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.phase h4 { margin-bottom: 10px; font-size: 1.1rem; }
.phase p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

/* ---------- Ingredients table ---------- */
.ingredients-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.ingredients-table th, .ingredients-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
  vertical-align: top;
}
.ingredients-table th {
  background: var(--ink);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.ingredients-table tr:last-child td { border-bottom: none; }
.ingredients-table td:first-child { font-weight: 700; color: var(--ink); white-space: nowrap; }

/* ---------- Benefits grid ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.benefit-card .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h4 { font-size: 1.02rem; margin-bottom: 8px; }
.benefit-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Pros / Cons ---------- */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.proscons .box {
  border-radius: 8px;
  padding: 28px;
  border: 1px solid var(--line);
}
.proscons .pros { background: rgba(124,152,133,0.08); }
.proscons .cons { background: rgba(184,146,61,0.07); }
.proscons h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.proscons ul { margin: 0; padding-left: 20px; }
.proscons li { margin-bottom: 10px; font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Feedback themes ---------- */
.themes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.theme-card {
  background: var(--parchment);
  border-left: 3px solid var(--sage);
  padding: 20px 22px;
  border-radius: 4px;
}
.theme-card h4 { font-size: 0.96rem; margin-bottom: 6px; }
.theme-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 26px;
  text-align: center;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 34px -20px rgba(184,146,61,0.5);
}
.price-card .flag {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}
.price-card .supply { font-size: 0.82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.price-card .amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; color: var(--ink); font-weight: 600; }
.price-card .per { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 20px; }
.price-card .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* ---------- Guarantee ---------- */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  background: var(--ink);
  color: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 40px;
}
.guarantee h3 { color: var(--white); margin-bottom: 10px; }
.guarantee p { color: rgba(255,255,255,0.75); margin: 0; }
.guarantee-badge {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--gold);
  flex-shrink: 0;
}
.guarantee-badge .n { font-size: 1.5rem; font-weight: 600; line-height: 1; }
.guarantee-badge .d { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item h4 {
  font-size: 1.02rem;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.faq-item h4 span { color: var(--sage-dark); font-family: 'Plus Jakarta Sans', sans-serif; }
.faq-item p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--mist) 100%);
  border-radius: 12px;
  padding: 60px 30px;
  border: 1px solid var(--line);
}
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { max-width: 52ch; margin: 0 auto 28px; color: var(--ink-soft); }

/* ---------- Disclaimer block ---------- */
.disclaimer-block {
  background: var(--parchment-dim);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 28px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.disclaimer-block strong { color: var(--ink); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 50px 0 30px;
  font-size: 0.86rem;
}
footer.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
footer.site-footer a:hover { text-decoration: underline; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 60px 0 90px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .updated { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.3rem; margin-top: 40px; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 0.97rem; }
.legal-page ul { padding-left: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 280px; margin: 0 auto; }
  .verdict { grid-template-columns: 1fr; text-align: center; margin-top: 20px; }
  .phases, .benefits-grid, .proscons, .themes, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-grid { flex-direction: column; }
}
