/* ============================================================
   THE SOMATIC RESET — Author site for Nand Agarwal
   Brand built from the book covers: warm watercolor paper,
   sage green, terracotta clay, amber, and the green/yellow/red
   Traffic Light motif. Calm & airy.
   ============================================================ */

:root {
  /* Paper / surfaces */
  --paper:        #f7f3ea;
  --paper-2:      #efe7d9;
  --paper-card:   #fbf8f2;
  --white:        #ffffff;

  /* Ink */
  --ink:          #2c3a33;
  --ink-soft:     #54615a;
  --ink-faint:    #8c948c;

  /* Brand accents (from covers) */
  --sage:         #7c9a82;
  --sage-deep:    #4d6a58;
  --sage-tint:    rgba(124,154,130,.14);
  --clay:         #c0764a;
  --clay-deep:    #a85d34;
  --clay-tint:    rgba(192,118,74,.12);
  --amber:        #d6a052;
  --amber-tint:   rgba(214,160,82,.14);

  /* Traffic light (from the journal cover dots) */
  --tl-green:     #5fb487;
  --tl-green-d:   #3f8c63;
  --tl-yellow:    #e6c156;
  --tl-yellow-d:  #c79f33;
  --tl-red:       #d86b53;
  --tl-red-d:     #b94e38;

  --line:         rgba(44,58,51,.12);
  --line-soft:    rgba(44,58,51,.07);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Mulish", -apple-system, BlinkMacSystemFont, sans-serif;

  --container:    1180px;
  --radius:       18px;
  --radius-sm:    12px;
  --shadow-soft:  0 18px 50px -24px rgba(44,58,51,.45);
  --shadow-cover: 0 26px 60px -22px rgba(44,58,51,.55);
  --ease:         cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Skip link (accessibility / SEO) */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--sage-deep); color: #f4f8f3;
  padding: 12px 20px; border-radius: 0 0 10px 0;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
}
.skip-link:focus { left: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--clay);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--clay);
  display: inline-block;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
}
h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 600;
}
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head p.lead {
  margin-top: 18px;
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
em.accent { font-style: italic; color: var(--sage-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.btn-primary {
  background: var(--sage-deep);
  color: #f4f8f3;
  box-shadow: 0 14px 30px -12px rgba(77,106,88,.7);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -12px rgba(77,106,88,.85);
  background: #436152;
}
.btn-clay {
  background: var(--clay);
  color: #fbf6ef;
  box-shadow: 0 14px 30px -12px rgba(168,93,52,.65);
}
.btn-clay:hover { transform: translateY(-2px); background: var(--clay-deep); box-shadow: 0 20px 38px -12px rgba(168,93,52,.8); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--sage-deep); background: rgba(255,255,255,.5); transform: translateY(-2px); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header / announcement / nav ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; }
.topbar {
  background: var(--sage-deep);
  color: #eef3ec;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 8px 18px;
  line-height: 1.4;
}
.topbar a { color: var(--amber); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.nav {
  position: relative;
  z-index: 50;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 20px 0;
}
.site-header.scrolled .nav {
  background: rgba(247,243,234,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding: 13px 0;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .dots { display: inline-flex; gap: 5px; }
.brand .dots span { width: 11px; height: 11px; border-radius: 50%; display: block; }
.brand .dots .g { background: var(--tl-green); }
.brand .dots .y { background: var(--tl-yellow); }
.brand .dots .r { background: var(--tl-red); }
.brand .name {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links .btn { padding: 11px 22px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 180px 0 90px;
  overflow: hidden;
}
.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(closest-side at 78% 12%, rgba(214,160,82,.30), transparent 70%),
    radial-gradient(closest-side at 90% 55%, rgba(192,118,74,.22), transparent 72%),
    radial-gradient(closest-side at 10% 18%, rgba(124,154,130,.32), transparent 70%),
    radial-gradient(closest-side at 18% 88%, rgba(95,180,135,.18), transparent 72%);
  filter: blur(8px);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(2.9rem, 6vw, 4.7rem);
  line-height: 1.02;
  margin: 22px 0 0;
  letter-spacing: -.015em;
}
.hero h1 .hl { color: var(--clay); font-style: italic; }
.hero p.sub {
  margin-top: 24px;
  font-size: 1.22rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 520px;
}
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-faint);
  font-weight: 600;
}
.hero-trust .tl-mini { display: inline-flex; gap: 6px; }
.hero-trust .tl-mini i { width: 12px; height: 12px; border-radius: 50%; display: block; }

/* Cover fan */
.cover-fan {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-fan img {
  position: absolute;
  width: 230px;
  border-radius: 6px;
  box-shadow: var(--shadow-cover);
  transition: transform .5s var(--ease);
}
.cover-fan .c1 { transform: rotate(-13deg) translate(-118px, 16px) scale(.86); z-index: 1; }
.cover-fan .c2 { transform: rotate(-5deg) translate(-44px, -8px) scale(.93); z-index: 2; }
.cover-fan .c3 { transform: rotate(4deg) translate(46px, 4px) scale(.99); z-index: 4; }
.cover-fan .c4 { transform: rotate(12deg) translate(122px, 22px) scale(.9); z-index: 3; }
.cover-fan:hover .c1 { transform: rotate(-16deg) translate(-150px, 16px) scale(.86); }
.cover-fan:hover .c4 { transform: rotate(15deg) translate(154px, 22px) scale(.9); }

/* ---------- Section frame ---------- */
section { position: relative; z-index: 2; }
.band { padding: 100px 0; }
.band-paper2 { background: var(--paper-2); }

/* ---------- Protocol ---------- */
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.zone-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px 34px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.zone-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.zone-card .glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .5;
}
.zone-card .orb {
  width: 46px; height: 46px;
  border-radius: 50%;
  margin-bottom: 22px;
  position: relative;
  box-shadow: inset 0 -3px 8px rgba(0,0,0,.18), 0 6px 16px -4px rgba(0,0,0,.25);
}
.zone-card .orb::after {
  content: "";
  position: absolute;
  top: 8px; left: 10px;
  width: 16px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  filter: blur(2px);
}
.zone-green .orb { background: radial-gradient(circle at 38% 32%, #8fdcb0, var(--tl-green) 55%, var(--tl-green-d)); }
.zone-green .glow { background: var(--tl-green); }
.zone-yellow .orb { background: radial-gradient(circle at 38% 32%, #f4dd8b, var(--tl-yellow) 55%, var(--tl-yellow-d)); }
.zone-yellow .glow { background: var(--tl-yellow); }
.zone-red .orb { background: radial-gradient(circle at 38% 32%, #f0a08e, var(--tl-red) 55%, var(--tl-red-d)); }
.zone-red .glow { background: var(--tl-red); }
.zone-card .ztag {
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint);
}
.zone-card h3 { font-size: 2rem; margin: 4px 0 14px; font-weight: 600; }
.zone-card .zstate { font-weight: 700; color: var(--ink); font-size: 15px; margin-bottom: 10px; }
.zone-card p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.zone-card .zmove {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.zone-card .zmove b { color: var(--sage-deep); display:block; font-size:12px; letter-spacing:.12em; text-transform:uppercase; margin-bottom:5px; }
.protocol-note {
  margin-top: 34px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--sage-deep);
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}

/* ---------- Series ---------- */
.series-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.book {
  display: flex;
  flex-direction: column;
}
.book .cover-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-cover);
  transition: transform .4s var(--ease);
  aspect-ratio: 1024 / 1536;
  background: var(--paper-2);
}
.book:hover .cover-wrap { transform: translateY(-6px) rotate(-1deg); }
.book .cover-wrap img { width: 100%; height: 100%; object-fit: cover; }
.book .flag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--clay);
  color: #fbf6ef;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
}
.book h3 { font-size: 1.5rem; margin: 22px 0 0; line-height: 1.12; font-weight: 600; }
.book .desc { color: var(--ink-soft); font-size: 15px; margin-top: 10px; flex: 1; line-height: 1.55; }
.book .book-link {
  margin-top: 16px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: .4em;
  transition: gap .3s var(--ease);
}
.book .book-link:hover { gap: .8em; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo img {
  border-radius: var(--radius);
  width: 100%;
  box-shadow: var(--shadow-soft);
}
.about-photo .frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--sage);
  border-radius: var(--radius);
  z-index: -1;
}
.about-copy h2 { margin-bottom: 8px; }
.about-copy .role {
  font-weight: 700; color: var(--clay-deep); font-size: 15px;
  letter-spacing: .04em; margin-bottom: 22px;
}
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.05rem; }
.about-copy p .first { font-family: var(--font-display); font-size: 1.3em; color: var(--ink); }
.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--sage-deep);
  margin-top: 8px;
}

/* ---------- Newsletter / lead magnet ---------- */
.signup {
  background: var(--sage-deep);
  color: #eef3ec;
  position: relative;
  overflow: hidden;
}
.signup .wash {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background:
    radial-gradient(closest-side at 88% 18%, rgba(214,160,82,.5), transparent 70%),
    radial-gradient(closest-side at 8% 90%, rgba(95,180,135,.5), transparent 70%);
}
.signup .container { position: relative; z-index: 2; }
.signup-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.signup .eyebrow { color: var(--amber); }
.signup .eyebrow::before { background: var(--amber); }
.signup h2 { color: #f6f9f4; }
.signup .lead { color: rgba(238,243,236,.82); margin-top: 16px; font-size: 1.15rem; }
.gift-points { margin-top: 24px; display: grid; gap: 12px; }
.gift-points li { list-style: none; display: flex; gap: 12px; align-items: flex-start; color: rgba(238,243,236,.92); font-size: 16px; }
.gift-points .chk {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.16); color: var(--amber);
  display: grid; place-items: center; font-size: 13px; font-weight: 800; margin-top: 2px;
}
.signup-form {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 36px 34px;
  backdrop-filter: blur(6px);
}
.signup-form h3 { color: #f6f9f4; font-size: 1.7rem; margin-bottom: 6px; }
.signup-form .sub2 { color: rgba(238,243,236,.7); font-size: 14.5px; margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(238,243,236,.7); margin-bottom: 7px; }
.field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.95);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
}
.field input:focus { outline: 2px solid var(--amber); outline-offset: 1px; }
.signup-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 12.5px; color: rgba(238,243,236,.6); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 14px 0;
}
.form-success.show { display: block; }
.form-success .big { font-size: 2.6rem; }
.form-success h3 { margin: 8px 0 6px; }
.form-success p { color: rgba(238,243,236,.82); font-size: 15px; }
.form-success a.dl { color: var(--amber); font-weight: 800; text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(238,243,236,.7); padding: 64px 0 36px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.footer .brand .name { color: #f1f4ef; }
.footer-tag { max-width: 340px; margin-top: 16px; font-size: 15px; line-height: 1.6; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  color: rgba(238,243,236,.8);
  transition: all .3s var(--ease);
}
.socials a:hover { background: var(--sage); color: #fff; border-color: var(--sage); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }
.foot-links { display: flex; flex-direction: column; gap: 11px; }
.foot-links h4 { color: #f1f4ef; font-family: var(--font-body); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; font-weight: 800; }
.foot-links a { font-size: 15px; transition: color .25s; }
.foot-links a:hover { color: #f1f4ef; }
.footer-bottom {
  margin-top: 48px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgba(238,243,236,.5);
}
.disclaimer { max-width: 760px; margin-top: 16px; font-size: 12.5px; color: rgba(238,243,236,.4); line-height: 1.6; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 30px; }
  .cover-fan { height: 380px; order: -1; }
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 380px; }
  .signup-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .band { padding: 72px 0; }
  .hero { padding: 140px 0 60px; }
  .protocol-grid { grid-template-columns: 1fr; }
  .series-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .container { padding: 0 20px; }
  .footer-top { flex-direction: column; }
  .cover-fan img { width: 180px; }
}
@media (max-width: 420px) {
  .series-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ADDED SECTIONS — content harvested from the live site
   ============================================================ */

/* ---------- Pull quote / mission ---------- */
.pullquote { text-align: center; }
.pullquote .mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .4;
  color: var(--sage);
  opacity: .5;
  display: block;
  margin-bottom: 10px;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.25;
  font-weight: 500;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto;
  font-style: italic;
}
.pullquote blockquote em { color: var(--clay-deep); font-style: italic; }
.pullquote cite { display: block; margin-top: 22px; font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 14px; letter-spacing: .04em; color: var(--ink-soft); }

/* ---------- Book detail rows ---------- */
.bookrow {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line-soft);
}
.bookrow:last-child { border-bottom: none; }
.bookrow.flip .br-media { order: 2; }
.br-media { display: flex; justify-content: center; position: relative; }
.br-media .halo {
  position: absolute; inset: -8% 8% 0 8%; z-index: 0; border-radius: 50%;
  filter: blur(40px); opacity: .5;
}
.br-green .halo { background: radial-gradient(circle, var(--tl-green), transparent 70%); }
.br-amber .halo { background: radial-gradient(circle, var(--amber), transparent 70%); }
.br-clay .halo  { background: radial-gradient(circle, var(--clay), transparent 70%); }
.br-sage .halo  { background: radial-gradient(circle, var(--sage), transparent 70%); }
.br-media img {
  position: relative; z-index: 1;
  width: 270px; max-width: 80%;
  border-radius: 8px;
  box-shadow: var(--shadow-cover);
  transition: transform .5s var(--ease);
}
.bookrow:hover .br-media img { transform: translateY(-6px) rotate(-1.5deg); }
.br-copy .badge {
  display: inline-block;
  font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay-deep); background: var(--clay-tint);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
}
.br-copy h3 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 600; line-height: 1.05; }
.br-copy .tagline { font-weight: 700; color: var(--ink); font-size: 1.12rem; margin: 12px 0 14px; }
.br-copy p { color: var(--ink-soft); font-size: 1.04rem; line-height: 1.62; }
.br-copy p .feat { color: var(--sage-deep); font-style: italic; }
.formats { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.fmt {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: 13.5px; font-weight: 700;
  padding: 9px 16px; border-radius: 100px;
  border: 1.5px solid var(--line); color: var(--ink);
  background: var(--paper-card);
  transition: all .28s var(--ease);
}
.fmt:hover { transform: translateY(-2px); border-color: var(--sage-deep); background: #fff; }
.fmt.primary { background: var(--clay); color: #fbf6ef; border-color: var(--clay); box-shadow: 0 12px 26px -12px rgba(168,93,52,.6); }
.fmt.primary:hover { background: var(--clay-deep); border-color: var(--clay-deep); }
.fmt .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.fmt.primary .dot { background: rgba(255,255,255,.8); }
.india-note {
  margin-top: 16px; font-size: 13px; color: var(--ink-faint);
}
.india-note a { color: var(--clay-deep); font-weight: 700; }

/* ---------- Box set banner ---------- */
.boxset {
  margin-top: 56px;
  background: linear-gradient(120deg, #3a5446, var(--sage-deep));
  border-radius: var(--radius);
  padding: 44px 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center;
  color: #eef3ec; position: relative; overflow: hidden;
}
.boxset .wash { position: absolute; inset: 0; opacity: .45;
  background: radial-gradient(closest-side at 90% 10%, rgba(214,160,82,.55), transparent 70%); }
.boxset .bs-copy { position: relative; z-index: 2; }
.boxset h3 { color: #f6f9f4; font-size: 1.9rem; font-weight: 600; }
.boxset p { color: rgba(238,243,236,.82); margin-top: 8px; font-size: 1.02rem; }
.boxset .btn { position: relative; z-index: 2; background: var(--amber); color: #2c3a33; }
.boxset .btn:hover { background: #e8b366; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.tst {
  background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tst:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.tst .stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.tst p { font-size: 1.02rem; color: var(--ink); line-height: 1.6; font-style: italic; flex: 1; }
.tst .who { margin-top: 20px; font-weight: 800; font-size: 14px; color: var(--sage-deep); letter-spacing: .03em; }
.tst .src { font-weight: 600; color: var(--ink-faint); font-size: 12.5px; }

/* ---------- Journal feature ---------- */
.jfeature { background: var(--ink); color: #eef3ec; position: relative; overflow: hidden; }
.jfeature .wash { position: absolute; inset: 0; opacity: .4;
  background: radial-gradient(closest-side at 15% 20%, rgba(124,154,130,.5), transparent 65%),
              radial-gradient(closest-side at 85% 80%, rgba(214,160,82,.4), transparent 65%); }
.jfeature .container { position: relative; z-index: 2; }
.jfeature-grid { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
.jfeature img { width: 240px; border-radius: 8px; box-shadow: var(--shadow-cover); }
.jfeature .eyebrow { color: var(--amber); }
.jfeature .eyebrow::before { background: var(--amber); }
.jfeature h2 { color: #f6f9f4; }
.jfeature p { color: rgba(238,243,236,.82); margin-top: 16px; font-size: 1.1rem; line-height: 1.6; }

@media (max-width: 980px) {
  .bookrow { grid-template-columns: 1fr; gap: 32px; text-align: center; padding: 44px 0; }
  .bookrow.flip .br-media { order: 0; }
  .formats { justify-content: center; }
  .br-media img { width: 220px; }
  .tst-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .boxset { grid-template-columns: 1fr; text-align: center; }
  .jfeature-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .jfeature img { margin: 0 auto; }
}

/* ============================================================
   CONVERSION ADDITIONS (v2) — proof bar, start router,
   book benefit bullets, journals grid, sticky buy bar.
   All built from existing brand tokens.
   ============================================================ */

/* ---------- Hero rating chip ---------- */
.hero-rating {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 18px 9px 14px;
  box-shadow: 0 10px 26px -18px rgba(44,58,51,.5);
}
.hero-rating .stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; line-height: 1; }
.hero-rating .rtext { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
.hero-rating .rtext b { color: var(--ink); }

/* ---------- Proof / trust strip ---------- */
.proofbar {
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 26px 0;
}
.proofbar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.proof-item { display: flex; align-items: center; gap: 14px; }
.proof-item .pi-ic {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--sage-tint); color: var(--sage-deep);
}
.proof-item .pi-ic svg { width: 21px; height: 21px; }
.proof-item .pi-tx { line-height: 1.25; }
.proof-item .pi-tx b { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.proof-item .pi-tx span { font-size: 13px; color: var(--ink-soft); font-weight: 600; }

/* ---------- Start-here router ---------- */
.router-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.route-card {
  display: flex; flex-direction: column;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.route-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--sage); }
.route-card .rc-orb {
  width: 14px; height: 14px; border-radius: 50%; margin-bottom: 18px;
  box-shadow: 0 0 0 5px rgba(0,0,0,.03);
}
.route-card .feel { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--ink); line-height: 1.2; }
.route-card .leads { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.route-card .go {
  margin-top: 18px; font-weight: 800; font-size: 13.5px; letter-spacing: .02em;
  color: var(--clay-deep); display: inline-flex; align-items: center; gap: .4em;
  transition: gap .3s var(--ease);
}
.route-card:hover .go { gap: .8em; }
.route-card .rc-book { font-weight: 800; color: var(--ink); }

/* ---------- Book benefit bullets (inside the book rows) ---------- */
.book-bullets { list-style: none; margin: 20px 0 4px; display: grid; gap: 11px; }
.book-bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); line-height: 1.45; }
.book-bullets .bdot {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; margin-top: 1px;
  background: var(--sage-tint); color: var(--sage-deep); font-size: 12px; font-weight: 900;
}
.book-bullets li b { color: var(--ink); font-weight: 700; }

/* New-release badge variant */
.br-copy .badge.new, .book .flag.new { background: var(--tl-green-d); color: #f3faf5; }

/* ---------- Section subhead (journals) ---------- */
.subhead { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.subhead .eyebrow { justify-content: center; }
.subhead h2 { margin-top: 12px; }
.subhead p { margin-top: 14px; color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- Journals grid (2-up) ---------- */
.journals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.jcard {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center;
  background: var(--paper-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.jcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.jcard img { width: 150px; border-radius: 7px; box-shadow: var(--shadow-cover); }
.jcard .jc-badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage-deep); background: var(--sage-tint); padding: 4px 11px; border-radius: 100px; margin-bottom: 12px;
}
.jcard .jc-badge.new { background: var(--tl-green-d); color: #f3faf5; }
.jcard h3 { font-size: 1.7rem; font-weight: 600; line-height: 1.08; }
.jcard .jtag { font-style: italic; color: var(--clay-deep); font-family: var(--font-display); font-size: 1.18rem; margin: 6px 0 10px; }
.jcard p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.jcard .fmt { margin-top: 16px; }

/* ---------- Sticky buy bar ---------- */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(247,243,234,.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px -20px rgba(44,58,51,.5);
  transform: translateY(115%);
  transition: transform .45s var(--ease);
}
.buybar.show { transform: translateY(0); }
.buybar .container {
  display: flex; align-items: center; gap: 18px; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}
.buybar .bb-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.buybar .bb-left img { width: 38px; border-radius: 4px; box-shadow: 0 6px 14px -6px rgba(44,58,51,.6); flex: none; }
.buybar .bb-tx { line-height: 1.25; min-width: 0; }
.buybar .bb-tx b { display: block; font-size: 14.5px; color: var(--ink); font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buybar .bb-tx span { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.buybar .bb-tx span .stars { color: var(--amber); letter-spacing: 1px; }
.buybar .bb-actions { display: flex; gap: 10px; flex: none; }
.buybar .btn { padding: 12px 22px; }
.buybar .bb-close {
  display: none; flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--ink-soft);
  font-size: 18px; cursor: pointer; line-height: 1;
}

@media (max-width: 980px) {
  .proofbar .container { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .router-grid { grid-template-columns: repeat(2, 1fr); }
  .journals-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .router-grid { grid-template-columns: 1fr; }
  .jcard { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .jcard img { width: 130px; }
  .buybar .bb-tx span { display: none; }
  .buybar .bb-left img { display: none; }
  .buybar .btn .arrow { display: none; }
  .buybar .container { gap: 10px; padding-left: 16px; padding-right: 16px; }
  .buybar .btn { padding: 12px 16px; font-size: 14px; }
}
