/* 406 Marketing & Design — site.css (bundled, sage-harmonized). Source lives in inc/ partials. */
:root {
  
  --bg-light: #fbfbfa;        
  --bg-dark: #0b0f17;         
  --text-dark: #12161a;       
  --text-light: #f4f4f5;

  
  --accent-sapphire: #7ba798; 
  --accent-sage: #7ba798;     

  
  --ink-70: rgba(18, 22, 26, 0.70);
  --ink-50: rgba(18, 22, 26, 0.50);
  --light-72: rgba(244, 244, 245, 0.72);
  --light-50: rgba(244, 244, 245, 0.48);
  --sapphire-soft: rgba(123, 167, 152, 0.10);
  --hairline: rgba(18, 22, 26, 0.12);
  --hairline-dark: rgba(244, 244, 245, 0.14);

  
  --shadow-premium: 0 8px 30px rgba(0, 0, 0, 0.04);
  --shadow-lift: 0 26px 60px -28px rgba(11, 15, 23, 0.42);
  --shadow-premium-dark: 0 8px 30px rgba(0, 0, 0, 0.5);

  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  
  --measure: 68ch;
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --radius: 4px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: "Archivo", system-ui, -apple-system, sans-serif;
  font-size: 1.02rem;
  line-height: 1.6;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-sage);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent-sage);
}
.eyebrow--light { color: var(--accent-sage); }
.eyebrow--light::before { background: var(--accent-sage); }
.serif { font-family: "Bitter", Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(5rem, 11vw, 9.5rem); }
.btn {
  --btn-bg: var(--accent-sage);
  --btn-fg: #1f3329;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: "Archivo", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}
.btn .arrow { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); display: inline-block; }
.btn::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #1f3329;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn:hover::before { transform: scaleY(1); }
.btn:hover .arrow { transform: translateX(5px); }
.btn:focus-visible { outline: 2px solid var(--accent-sage); outline-offset: 3px; }
.btn--bone {
  --btn-bg: var(--accent-sage);
  --btn-fg: #1f3329;
}
.btn--bone:hover { box-shadow: 0 26px 60px -22px rgba(123, 167, 152, 0.35); }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem var(--gutter);
  transition: var(--transition-smooth);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(11, 15, 23, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline-dark);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.site-header.scrolled::before { opacity: 1; }
.site-header.scrolled {
  padding-block: 0.8rem;
}
.brandmark { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.brandmark img { height: clamp(34px, 5vw, 44px); width: auto; display: block; opacity: 0.9; }
.brandmark .num {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  color: var(--text-light);
  line-height: 1;
}
.brandmark .num .dot { color: var(--accent-sage); }
.brandmark .word {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--light-72);
  padding-bottom: 2px;
}
.site-header .btn { padding: 0.72rem 1.2rem; font-size: 0.82rem; }
.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-light);
  padding-top: clamp(9rem, 18vh, 13rem);
  padding-bottom: clamp(8rem, 16vh, 12rem);
  overflow: hidden;
  isolation: isolate;
}
.hero::before { 
  content: "";
  position: absolute;
  z-index: -2;
  top: -18%;
  right: -10%;
  width: 62vw;
  height: 62vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at center, rgba(123, 167, 152, 0.55), rgba(123, 167, 152, 0) 62%);
  filter: blur(10px);
}
.hero-topo {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  color: rgba(123, 167, 152, 0.55);
}
.hero-ridge {
  position: absolute;
  z-index: -1;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  display: block;
}
.hero-inner { max-width: 960px; }
.hero .eyebrow { margin-right: 1.9rem; margin-bottom: 0.95rem; }
.hero h1 {
  font-size: clamp(2.9rem, 8.2vw, 6.3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
  max-width: 16ch;
}
.hero h1 .glow { color: #fff; }
.hero .subhead {
  margin-top: 1.4rem;
  font-family: "Bitter", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #bcd4ca;
  max-width: 24ch;
}
.hero .lede {
  margin-top: 2rem;
  max-width: 58ch;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--light-72);
  line-height: 1.6;
}
.hero .cta-row { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.logos {
  background: var(--bg-light);
  padding-top: clamp(1.3rem, 2.6vw, 1.9rem);
  padding-bottom: clamp(2.4rem, 5vw, 3.4rem);
  border-bottom: 1px solid var(--hairline);
}
.logos .label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink-50);
  margin-bottom: 1.35rem;
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 58px;
  padding-inline: clamp(1.6rem, 3.5vw, 3rem);
}
.logo-chip img { max-height: 40px; max-width: 165px; width: auto; height: auto; object-fit: contain; display: block; filter: grayscale(1); opacity: 0.72; transition: opacity 0.4s ease, filter 0.4s ease; }
.logo-chip img:hover { filter: grayscale(0); opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }
.edge { background: var(--bg-light); }
.edge .grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}
.edge .head-col { position: sticky; top: 7rem; }
.edge .head-col .eyebrow { margin-bottom: 1.4rem; }
.edge .head-col .edge-motif { width: 62%; max-width: 200px; color: var(--accent-sage); opacity: 0.55; margin-top: 0.5rem; }
.edge .body-col p {
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.62;
  color: var(--ink-70);
  margin: 0 0 1.5rem;
  max-width: 46ch;
}
.edge .body-col p:first-child { color: var(--text-dark); font-weight: 500; }
.edge .pull {
  font-family: "Bitter", serif;
  font-style: italic;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  padding-left: 1.4rem;
  border-left: 3px solid var(--accent-sage);
  margin: 2.2rem 0;
  max-width: 30ch;
}
.edge .kicker {
  font-size: 1.06rem;
  color: var(--ink-70);
  border-top: 1px solid var(--hairline);
  padding-top: 1.5rem;
}
.spots {
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.spots-ridge-top { position: absolute; top: -1px; left: 0; width: 100%; display: block; z-index: 1; }
.spots .inner { position: relative; z-index: 2; }
.spots .prompt {
  text-align: center;
  font-family: "Bitter", serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}
.spot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
.spot-card {
  position: relative;
  padding: clamp(2rem, 3.5vw, 3rem);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--hairline-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.spot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(123, 167, 152, 0.28), transparent 55%);
  opacity: 0.9;
  transition: var(--transition-smooth);
}
.spot-card:hover { transform: translateY(-6px); border-color: rgba(123, 167, 152, 0.4); box-shadow: var(--shadow-premium-dark); }
.spot-card > * { position: relative; z-index: 1; }
.spot-card .num {
  font-family: "Bitter", serif;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
  color: rgba(123, 167, 152, 0.28);
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.spot-card .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-sage);
  display: block;
  margin-bottom: 0.7rem;
}
.spot-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.spot-card p { color: var(--light-72); font-size: 1.03rem; line-height: 1.62; margin: 0; }
.spots .closer {
  text-align: center;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.spots .closer .line { font-size: 1.2rem; color: var(--light-72); margin-bottom: 1.6rem; }
.whatwedo { background: var(--bg-light); }
.whatwedo .head { max-width: 54rem; margin-bottom: 2.4rem; }
.whatwedo .eyebrow { margin-bottom: 1.5rem; }
.whatwedo h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.whatwedo .body {
  max-width: 62ch;
  font-size: clamp(1.12rem, 1.7vw, 1.36rem);
  line-height: 1.6;
  color: var(--ink-70);
}
.whatwedo .body b { color: var(--text-dark); font-weight: 700; }
.how { background: var(--bg-light); border-top: 1px solid var(--hairline); }
.how .eyebrow { margin-bottom: 2.6rem; }
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}
.step-grid::before { 
  content: "";
  position: absolute;
  top: 34px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--hairline) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step .num {
  width: 68px; height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--hairline);
  font-family: "Bitter", serif;
  font-size: 1.6rem;
  color: var(--accent-sage);
  margin-bottom: 1.6rem;
  transition: var(--transition-smooth);
}
.step:hover .num { border-color: var(--accent-sage); color: var(--text-dark); box-shadow: 0 12px 30px -14px rgba(123,167,152,0.5); }
.step .kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink-50);
  margin-bottom: 0.5rem;
}
.step h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}
.step p { color: var(--ink-70); font-size: 1.04rem; line-height: 1.6; margin: 0; max-width: 30ch; }
.how .cta-row { margin-top: clamp(3rem, 6vw, 4.5rem); }
.home-reviews { background: var(--bg-dark); color: var(--text-light); position: relative; overflow: hidden; }
.home-reviews-ridge { position: absolute; top: -1px; left: 0; width: 100%; display: block; z-index: 1; }
.home-reviews .inner { position: relative; z-index: 2; text-align: center; }
.home-reviews h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.03em; margin-bottom: 0.9rem; }
.hr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: left; align-items: start; }
.hr-card { margin: 0; display: flex; flex-direction: column; padding: clamp(1.7rem, 2.6vw, 2.2rem); border: 1px solid var(--hairline-dark); border-radius: 14px; background: rgba(255, 255, 255, 0.03); }
.hr-card .quote { font-family: "Bitter", serif; font-size: 3rem; line-height: 0.5; color: rgba(123, 167, 152, 0.55); margin-bottom: 0.8rem; }
.hr-headline { font-family: "Archivo", sans-serif; font-weight: 800; font-size: clamp(1.05rem, 1.4vw, 1.2rem); letter-spacing: -0.02em; line-height: 1.22; color: var(--accent-sage); margin: 0 0 1rem; }
.hr-body { color: var(--light-72); font-size: 0.97rem; line-height: 1.62; margin: 0 0 1.4rem; }
.hr-author { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--hairline-dark); }
.hr-name { display: block; font-weight: 800; letter-spacing: -0.01em; color: var(--text-light); font-size: 1rem; }
.hr-company { display: block; color: var(--light-50); font-size: 0.85rem; margin-top: 0.2rem; }
.home-reviews .cta-row { margin-top: clamp(2.5rem, 5vw, 3.4rem); display: flex; justify-content: center; }
.hero .rating-badge { margin: 0 0 1.9rem; }
.rating-badge { display:inline-flex; align-items:center; gap:0.6rem; font-size:0.98rem; margin:0.5rem auto 0; }
.rating-badge .stars { color:var(--accent-sage); letter-spacing:3px; font-size:1.02rem; }
.rating-badge .rating-num { font-weight:800; letter-spacing:-0.01em; }
.rating-badge .rating-count { opacity:0.6; font-size:0.9rem; }
.home-reviews .rating-badge { margin-bottom: clamp(2.2rem, 4.5vw, 3rem); }
@media (max-width: 900px) { .hr-grid { grid-template-columns: 1fr; } }
.story { background: var(--bg-light); position: relative; overflow: hidden; }
.story-ridge-top { position: absolute; top: -1px; left: 0; width: 100%; display: block; }
.story .inner { max-width: 900px; margin-inline: auto; position: relative; z-index: 2; }
.story .eyebrow { margin-bottom: 1.8rem; }
.story h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.04em;
  margin-bottom: 2.4rem;
}
.story p {
  font-family: "Bitter", serif;
  font-weight: 400;
  font-size: clamp(1.18rem, 1.9vw, 1.42rem);
  line-height: 1.62;
  letter-spacing: -0.005em;
  color: #2a2f34;
  margin: 0 0 1.5rem;
}
.story p.intro:first-of-type::first-letter {
  font-size: 3.6em;
  float: left;
  line-height: 0.72;
  padding: 0.06em 0.12em 0 0;
  color: var(--accent-sage);
  font-weight: 500;
}
.story .pull {
  font-family: "Bitter", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  text-align: center;
  margin: 2.8rem 0;
  padding: 0 clamp(0, 4vw, 2rem);
}
.story .pull span { color: var(--accent-sage); }
.story .stack { margin: 2.2rem 0; }
.story .stack p { margin-bottom: 0.4rem; font-size: clamp(1.1rem, 1.6vw, 1.28rem); }
.story .checklist {
  list-style: none;
  margin: 2.4rem 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.story .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  line-height: 1.4;
}
.story .checklist li:last-child { border-bottom: none; }
.story .checklist li svg { flex: none; margin-top: 3px; color: var(--accent-sage); }
.story .big-line {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-align: center;
  margin: 3rem 0;
  color: var(--text-dark);
}
.story .close-block p { color: #2a2f34; }
.story .question {
  font-family: "Bitter", serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.24;
  color: var(--accent-sage);
}
.story .cta-row { margin-top: 2.4rem; text-align: center; }
.site-footer { background: var(--bg-dark); color: var(--light-72); position: relative; overflow: hidden; padding-block: clamp(6rem, 9vw, 9rem) clamp(2rem, 3vw, 2.6rem); }
.site-footer .footer-ridge { position: absolute; top: -1px; left: 0; width: 100%; display: block; z-index: 1; }
.site-footer .wrap { position: relative; z-index: 2; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(2.5rem, 5vw, 3.4rem); border-bottom: 1px solid var(--hairline-dark); }
.f-brand { max-width: 360px; }
.f-logo { display: block; width: clamp(160px, 19vw, 196px); height: auto; margin-bottom: 1.7rem; opacity: 0.82; }
.f-contact { font-style: normal; display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.95rem; color: var(--light-72); line-height: 1.55; }
.f-contact a { color: var(--text-light); text-decoration: none; width: fit-content; border-bottom: 1px solid transparent; transition: border-color 0.4s ease; }
.f-contact a:hover { border-color: var(--accent-sage); }
.f-col { display: flex; flex-direction: column; }
.f-h { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-50); margin: 0 0 1.15rem; }
.f-col a { color: var(--light-72); text-decoration: none; padding: 0.34rem 0; font-size: 0.98rem; width: fit-content; border-bottom: 1px solid transparent; transition: color 0.35s ease, border-color 0.35s ease; }
.f-col a:hover { color: var(--text-light); border-color: var(--accent-sage); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem 2rem; flex-wrap: wrap; padding-top: clamp(1.4rem, 3vw, 1.9rem); }
.footer-bottom .copy { font-size: 0.85rem; color: var(--light-50); margin: 0; }
.footer-bottom .disclaimer { font-size: 0.8rem; color: var(--light-50); margin: 0; max-width: 54ch; text-align: right; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } .f-brand { grid-column: 1 / -1; max-width: none; } .footer-bottom { flex-direction: column; align-items: flex-start; } .footer-bottom .disclaimer { text-align: left; } }
@media (max-width: 460px) { .footer-top { grid-template-columns: 1fr; } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  * { scroll-behavior: auto; }
}
@media (max-width: 900px) {
  .edge .grid { grid-template-columns: 1fr; }
  .edge .head-col { position: static; }
  .spot-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .step-grid::before { display: none; }
  .site-header .word { display: none; }
}
@media (max-width: 560px) {
  .hero { padding-top: 8rem; }
  .site-header .btn { padding: 0.6rem 0.95rem; font-size: 0.76rem; }
}
.ridge { position: absolute; left: 0; width: 100%; display: block; z-index: 1; }
.ridge--top { top: -1px; }
.ridge--bottom { bottom: -1px; }
.page-hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-light);
  padding-top: clamp(9rem, 20vh, 13rem);
  padding-bottom: clamp(7.5rem, 14vh, 10.5rem);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -22%;
  left: 50%;
  transform: translateX(-50%);
  width: 78vw;
  height: 60vw;
  max-width: 1000px; max-height: 760px;
  background: radial-gradient(circle at center, rgba(123, 167, 152, 0.5), rgba(123, 167, 152, 0) 62%);
  filter: blur(10px);
}
.page-hero .hero-topo { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; opacity: 0.5; color: rgba(123, 167, 152, 0.55); }
.page-hero .inner { position: relative; text-align: center; }
.page-hero .hero-mark {
  width: clamp(72px, 12vw, 108px);
  height: auto;
  margin-bottom: 1.8rem;
  filter: brightness(0) saturate(1) invert(67%) sepia(22%) saturate(478%) hue-rotate(119deg) brightness(95%) contrast(88%) drop-shadow(0 6px 18px rgba(123, 167, 152, 0.25));
}
.page-hero h1 {
  font-size: clamp(3.2rem, 11vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 800;
}
.story .inner { max-width: 900px; margin-inline: auto; position: relative; z-index: 2; }
.story p {
  font-family: "Bitter", serif;
  font-weight: 400;
  font-size: clamp(1.16rem, 1.85vw, 1.4rem);
  line-height: 1.62;
  letter-spacing: -0.005em;
  color: #2a2f34;
  margin: 0 0 1.45rem;
}
.story p.intro:first-of-type::first-letter {
  font-size: 3.6em;
  float: left;
  line-height: 0.72;
  padding: 0.06em 0.14em 0 0;
  color: var(--accent-sage);
  font-weight: 500;
  font-family: "Bitter", serif;
}
.story .stack { margin: 1.8rem 0; }
.story .stack p { margin-bottom: 0.35rem; font-size: clamp(1.08rem, 1.6vw, 1.26rem); color: var(--text-dark); }
.story .statement {
  font-family: "Bitter", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  text-align: center;
  margin: 2.8rem 0;
}
.story .statement span { color: var(--accent-sage); }
.story .answers {
  margin: 2.2rem 0;
  padding: 0.4rem 0 0.4rem 1.5rem;
  border-left: 3px solid var(--accent-sage);
}
.story .answers p {
  margin: 0 0 0.5rem;
  font-style: italic;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  color: var(--text-dark);
}
.story .answers p:last-child { margin-bottom: 0; }
.story .checklist { list-style: none; margin: 2.4rem 0; padding: 0; border-top: 1px solid var(--hairline); }
.story .big-line {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-align: center;
  margin: 3rem 0 0;
  color: var(--text-dark);
}
.different { background: var(--bg-dark); color: var(--text-light); position: relative; overflow: hidden; }
.different .inner { position: relative; z-index: 2; }
.different .head { text-align: center; max-width: 34ch; margin: 0 auto clamp(3rem, 6vw, 4.5rem); }
.different h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.035em; margin-bottom: 1.1rem; }
.different .lede-q {
  font-family: "Bitter", serif; font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--accent-sage); letter-spacing: -0.01em;
}
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
.prop-card {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid var(--hairline-dark);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.prop-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 0% 0%, rgba(123,167,152,0.28), transparent 55%);
  transition: var(--transition-smooth);
}
.prop-card:hover { transform: translateY(-6px); border-color: rgba(123, 167, 152,0.4); box-shadow: var(--shadow-premium-dark); }
.prop-card > * { position: relative; z-index: 1; }
.prop-card h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin: 0 0 0.9rem;
  line-height: 1.1;
}
.prop-card h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 0.8rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-sage), var(--accent-sage));
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.prop-card:hover h3::after { width: 52px; }
.prop-card .desc { color: var(--light-72); font-size: 1.02rem; line-height: 1.6; margin: 0; }
.values { background: var(--bg-light); position: relative; overflow: hidden; }
.values .inner { position: relative; z-index: 2; }
.values .head { text-align: center; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.values h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -0.035em; }
.values .story-cta { max-width: 640px; margin: clamp(3.4rem, 6vw, 4.8rem) auto 0; padding-top: clamp(2.6rem, 5vw, 3.6rem); border-top: 1px solid var(--hairline); text-align: center; }
.values .story-cta-lead { font-family: "Bitter", serif; font-style: italic; font-weight: 400; font-size: clamp(1.55rem, 3.2vw, 2.15rem); line-height: 1.16; letter-spacing: -0.02em; color: var(--text-dark); margin: 0 auto 1.7rem; max-width: 24ch; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.1rem, 2.4vw, 1.6rem); }
.value-card {
  padding: clamp(1.7rem, 2.6vw, 2.3rem);
  background: #ffffff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: "";
  position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--accent-sage), var(--accent-sage));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: transparent; }
.value-card:hover::after { transform: scaleX(1); }
.value-card h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  color: var(--accent-sage);
  margin: 0 0 0.85rem;
  line-height: 1.12;
}
.value-card h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 0.75rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-sage), var(--accent-sage));
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card:hover h3::after { width: 52px; }
.value-card .desc { color: var(--ink-70); font-size: 1rem; line-height: 1.6; margin: 0; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } * { scroll-behavior: auto; } }
@media (max-width: 900px) {
  .prop-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .site-header .word { display: none; }
}
@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
  .site-header .btn { padding: 0.6rem 0.95rem; font-size: 0.76rem; }
}
:root {
  --bg-light: #fbfbfa;
  --bg-dark: #0b0f17;
  --text-dark: #12161a;
  --text-light: #f4f4f5;
  --accent-sapphire: #7ba798;
  --accent-sage: #7ba798;
  --ink-70: rgba(18, 22, 26, 0.70);
  --ink-50: rgba(18, 22, 26, 0.50);
  --light-72: rgba(244, 244, 245, 0.72);
  --light-50: rgba(244, 244, 245, 0.48);
  --hairline: rgba(18, 22, 26, 0.12);
  --hairline-dark: rgba(244, 244, 245, 0.14);
  --shadow-premium: 0 8px 30px rgba(0, 0, 0, 0.04);
  --shadow-lift: 0 26px 60px -28px rgba(11, 15, 23, 0.42);
  --shadow-premium-dark: 0 8px 30px rgba(0, 0, 0, 0.5);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --radius: 4px;
}
.section-pad { padding-block: clamp(4.5rem, 10vw, 8rem); }
.btn {
  --btn-bg: var(--accent-sage);
  --btn-fg: #1f3329;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: "Archivo", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}
.page-hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-light);
  padding-top: clamp(9rem, 20vh, 13rem);
  padding-bottom: clamp(7.5rem, 14vh, 10.5rem);
  overflow: hidden;
  isolation: isolate;
}
.contact { background: var(--bg-light); position: relative; overflow: hidden; }
.contact .inner { max-width: 1040px; margin-inline: auto; position: relative; z-index: 2; }
.contact-intro { text-align: center; margin-bottom: clamp(2.4rem, 5vw, 3.4rem); }
.contact-intro .eyebrow { margin-bottom: 1.1rem; }
.contact-intro .intro-line {
  font-family: "Bitter", serif;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.contact-col { min-width: 0; }
.contact-col > .eyebrow { margin-bottom: 1.1rem; }
.fs-card {
  background: #ffffff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-premium);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.fs-embed { min-height: 420px; }
.fs-noscript { text-align: center; color: var(--ink-70); padding: 2rem; margin: 0; }
.fs-noscript a { color: var(--accent-sage); }
.fs-embed .fsBody,
.fs-embed .fsForm { background: transparent !important; font-family: "Archivo", sans-serif !important; }
.fs-embed .fsSubmitButton,
.fs-embed input[type="submit"] {
  background: var(--text-dark) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-family: "Archivo", sans-serif !important;
  font-weight: 700 !important;
}
.email-card {
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 14px;
  box-shadow: var(--shadow-premium-dark);
  padding: clamp(2.2rem, 4vw, 3rem) clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.email-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 0%, rgba(123, 167, 152, 0.4), transparent 60%);
}
.email-card .mail-icon {
  color: var(--accent-sage);
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 6px 18px rgba(123, 167, 152, 0.25));
}
.email-card .email-lead { font-family: "Bitter", serif; font-style: italic; font-size: clamp(1.35rem, 2.6vw, 1.85rem); color: #bcd4ca; margin: 0 0 0.9rem; letter-spacing: -0.01em; }
.email-card .email-addr {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: -0.02em;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 1.8rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.4s ease, color 0.4s ease;
}
.email-card .email-addr:hover { border-color: var(--accent-sage); }
.email-card .btn { margin-top: 0.4rem; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .panel { animation: none; } * { scroll-behavior: auto; } }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .site-header .word { display: none; }
  .site-header .btn { padding: 0.6rem 0.95rem; font-size: 0.76rem; }
}
.section-pad { padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.logos { background: var(--bg-light); position: relative; }
.logos .head { text-align: center; margin-bottom: clamp(2.4rem, 5vw, 3.4rem); }
.logos .head h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); letter-spacing: -0.03em; }
.marquee-track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.stats { background: var(--bg-dark); color: var(--text-light); position: relative; overflow: hidden; }
.stats .hero-topo { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; opacity: 0.28; color: rgba(123, 167, 152, 0.6); }
.stats .inner { position: relative; z-index: 2; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  max-width: 900px;
  margin: 0 auto;
}
.stat { text-align: center; padding: 1rem 0; }
.stat:first-child { border-right: 1px solid var(--hairline-dark); }
.stat .num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(3.6rem, 11vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  background: linear-gradient(180deg, #ffffff 0%, #7ba798 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text-light);
}
.stat .label { margin-top: 0.9rem; font-size: clamp(1rem, 1.8vw, 1.25rem); color: var(--light-72); letter-spacing: -0.01em; }
.reviews { background: var(--bg-light); position: relative; overflow: hidden; }
.reviews .head { text-align: center; max-width: 680px; margin: 0 auto clamp(3rem, 6vw, 4.5rem); }
.reviews .head .eyebrow { margin-bottom: 1.2rem; }
.reviews .head h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); letter-spacing: -0.035em; line-height: 1.04; }
.reviews-grid { columns: 2; column-gap: clamp(1.25rem, 3vw, 2rem); }
.review-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-premium);
  padding: clamp(1.7rem, 3vw, 2.4rem);
  position: relative;
  transition: var(--transition-smooth);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.review-card .quote-mark {
  font-family: "Bitter", serif;
  font-size: 3.2rem;
  line-height: 0.55;
  color: rgba(123, 167, 152, 0.22);
  display: block;
  margin-bottom: 0.7rem;
}
.review-card .r-headline {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  letter-spacing: -0.02em;
  line-height: 1.16;
  color: var(--accent-sage);
  margin: 0 0 0.9rem;
}
.review-card .r-body { color: var(--ink-70); font-size: 1.01rem; line-height: 1.62; margin: 0 0 1.4rem; }
.review-card .r-attr { border-top: 1px solid var(--hairline); padding-top: 1rem; }
.review-card .r-name {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}
.review-card .r-company { display: block; font-size: 0.88rem; color: var(--ink-50); margin-top: 0.15rem; }
@media (max-width: 760px) {
  .reviews-grid { columns: 1; }
  .stat-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat:first-child { border-right: none; border-bottom: 1px solid var(--hairline-dark); padding-bottom: 2rem; }
}
.page-hero--sm { padding-bottom: clamp(6rem, 12vh, 8.5rem); }
.page-hero--sm h1 { font-size: clamp(2.6rem, 8vw, 4.7rem); }
.policy { background: var(--bg-light); position: relative; }
.policy .inner { max-width: 940px; margin-inline: auto; position: relative; z-index: 2; }
.policy-box { background:#fff; border:1px solid var(--hairline); border-radius:14px; box-shadow: var(--shadow-premium); padding: clamp(1.5rem, 4vw, 3rem); color: var(--text-dark); line-height:1.68; }
.policy-box a { color: var(--accent-sage); }
.policy-box .policy_embed_div { min-height: 320px; }
.policy-note { text-align:center; color: var(--ink-50); font-size: 0.9rem; margin: 1.6rem auto 0; max-width: 60ch; }

/* ---- Skip link (a11y) ---- */
.skip-link { position:absolute; left:-999px; top:0; z-index:1100; background:var(--text-dark); color:var(--text-light); padding:.7rem 1.1rem; border-radius:0 0 6px 0; font-weight:700; }
.skip-link:focus { left:0; }

/* ---- Header nav ---- */
.site-header .nav-wrap { display:flex; align-items:center; gap:clamp(1rem,2.4vw,2.4rem); }
.nav-links { display:flex; align-items:center; gap:clamp(1rem,2.2vw,2rem); list-style:none; margin:0; padding:0; }
.nav-links a { position:relative; color:var(--text-light); text-decoration:none; font-size:.94rem; font-weight:600; letter-spacing:-.01em; padding:.35rem 0; opacity:.86; transition:opacity .3s ease; }
.nav-links a:hover { opacity:1; }
.nav-links a::after { content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px; background:var(--accent-sage); transition:right .4s cubic-bezier(.16,1,.3,1); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right:0; }
.nav-links a[aria-current="page"] { opacity:1; }
.nav-toggle { display:none; width:44px; height:44px; border:none; background:transparent; cursor:pointer; padding:10px; z-index:120; }
.nav-toggle span { display:block; height:2px; width:100%; background:var(--text-light); border-radius:2px; transition:transform .4s cubic-bezier(.16,1,.3,1), opacity .3s ease; }
.nav-toggle span + span { margin-top:5px; }
.nav-backdrop { display:none; }

@media (max-width: 940px) {
  .nav-toggle { display:block; }
  .site-header .nav-wrap { gap:.6rem; }
  .site-header .nav-cta { display:none; }
  .nav-links {
    position:fixed; inset:0 0 0 auto; width:min(84vw,340px);
    flex-direction:column; align-items:flex-start; justify-content:center; gap:1.6rem;
    padding:2rem clamp(1.5rem,6vw,2.5rem); background:rgba(11,15,23,.97); backdrop-filter:blur(16px);
    transform:translateX(100%); transition:transform .5s cubic-bezier(.16,1,.3,1); z-index:110;
    border-left:1px solid var(--hairline-dark);
  }
  .nav-links.open { transform:translateX(0); }
  .nav-links a { font-size:1.4rem; font-weight:700; opacity:1; }
  .nav-links .nav-cta-mobile { margin-top:.6rem; }
  .nav-backdrop.show { display:block; position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:900; }
  body.nav-open { overflow:hidden; }
  .nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
}
@media (min-width: 941px) { .nav-links .nav-cta-mobile { display:none; } }


/* ================= PODCAST PAGE ================= */
.pod-hero { position: relative; background: var(--bg-dark); color: var(--text-light); overflow: hidden; padding-top: clamp(8.5rem, 13vw, 11.5rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.pod-hero .hero-topo { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; color: rgba(123, 167, 152, 0.5); opacity: 0.5; }
.pod-hero .inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.pod-hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.03; letter-spacing: -0.03em; margin: 0; }
.pod-hero h1 .glow { color: var(--accent-sage); }
.pod-photo { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-premium-dark); border: 1px solid rgba(244, 244, 245, 0.10); }
.pod-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pod-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.1rem; }
.pod-links a { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.72rem 1.2rem; border-radius: 999px; border: 1px solid rgba(244, 244, 245, 0.18); background: rgba(244, 244, 245, 0.05); color: var(--text-light); font-family: "Archivo", sans-serif; font-weight: 600; font-size: 0.9rem; letter-spacing: -0.01em; text-decoration: none; transition: var(--transition-smooth); }
.pod-links a:hover { border-color: var(--accent-sage); background: rgba(123, 167, 152, 0.16); transform: translateY(-2px); }
.pod-links a .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-sage); flex: none; }
.pod-split { display: grid; grid-template-columns: 1fr 0.82fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.pod-split--rev { grid-template-columns: 0.82fr 1fr; }
.pod-split .pod-photo { border-radius: 18px; box-shadow: var(--shadow-premium); align-self: stretch; }
.pod-split .pod-photo img { aspect-ratio: 4 / 5; }
.pod-h { font-size: clamp(1.9rem, 3.8vw, 2.9rem); letter-spacing: -0.03em; line-height: 1.08; max-width: 22ch; margin-bottom: clamp(2rem, 4vw, 2.8rem); }
.pod-copy p { color: var(--ink-70); font-size: 1.05rem; line-height: 1.72; margin: 0 0 1.1rem; }
.pod-copy p:last-child { margin-bottom: 0; }
.pod-copy .lead-name { font-family: "Bitter", serif; font-style: italic; font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--text-dark); margin-bottom: 0.15rem; line-height: 1.1; }
.pod-copy .sub-name { color: var(--ink-50); margin-top: 0; margin-bottom: 1.4rem; }
.pod-copy .me-too { font-family: "Bitter", serif; font-style: italic; font-size: clamp(1.4rem, 2.6vw, 1.85rem); color: var(--accent-sage); margin-top: 1.4rem; }
.pod-story h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 1.5rem; }
.pod-hear { position: relative; overflow: hidden; background: var(--bg-light); }
.pod-hear-topo { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; color: var(--accent-sage); opacity: 0.09; pointer-events: none; }
.pod-hear .inner { position: relative; z-index: 1; }
.pod-head { text-align: center; max-width: 62ch; margin: 0 auto clamp(3rem, 6vw, 4.5rem); }
.pod-kicker { display: block; color: var(--accent-sage); margin: 0 auto 1.4rem; }
.pod-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); letter-spacing: -0.035em; line-height: 1.03; margin-bottom: 1.15rem; }
.pod-head .pod-lede { max-width: 54ch; margin: 0 auto; font-size: clamp(1.08rem, 1.5vw, 1.22rem); }
.pod-lede { color: var(--ink-70); line-height: 1.62; }
.pod-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 1.6vw, 1.4rem); margin-bottom: clamp(3rem, 6vw, 4.4rem); }
.pod-pillar { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: clamp(1.8rem, 2.6vw, 2.5rem); box-shadow: var(--shadow-premium); transition: var(--transition-smooth); }
.pod-pillar::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent-sage); transform: scaleX(0); transform-origin: left; transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1); }
.pod-pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: rgba(123, 167, 152, 0.45); }
.pod-pillar:hover::before { transform: scaleX(1); }
.pod-num { display: block; font-family: "Bitter", serif; font-style: italic; font-size: 1.15rem; color: var(--accent-sage); letter-spacing: 0.02em; margin-bottom: 0.95rem; }
.pod-num::after { content: ""; display: inline-block; width: 32px; height: 1px; background: var(--hairline); vertical-align: middle; margin-left: 0.7rem; }
.pod-pillar h3 { font-family: "Archivo", sans-serif; font-weight: 800; font-size: clamp(1.2rem, 1.7vw, 1.38rem); letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.pod-pillar p { color: var(--ink-70); font-size: 1rem; line-height: 1.64; margin: 0; }
.pod-close { max-width: 60ch; margin: 0 auto; text-align: center; }
.pod-close p { color: var(--ink-70); font-size: clamp(1.05rem, 1.4vw, 1.15rem); line-height: 1.75; margin: 0 0 1.3rem; }
.pod-close p:last-child { margin-bottom: 0; font-family: "Bitter", serif; font-style: italic; font-size: clamp(1.35rem, 2.4vw, 1.7rem); color: var(--text-dark); line-height: 1.35; }
.pod-subscribe { position: relative; background: var(--bg-dark); color: var(--text-light); overflow: hidden; }
.pod-subscribe .inner { position: relative; z-index: 2; display: grid; grid-template-columns: 0.7fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.pod-cover { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-premium-dark); border: 1px solid rgba(244, 244, 245, 0.10); max-width: 380px; }
.pod-cover img { display: block; width: 100%; height: auto; }
.pod-subscribe h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; margin-bottom: 1rem; }
.pod-subscribe .pod-lede { color: rgba(244, 244, 245, 0.72); font-size: 1.12rem; line-height: 1.6; margin-bottom: 2rem; max-width: 46ch; }
.pod-subscribe .pod-links a { font-size: 0.96rem; padding: 0.85rem 1.45rem; }
@media (max-width: 880px) {
  .pod-hero .inner, .pod-split, .pod-split--rev, .pod-subscribe .inner { grid-template-columns: 1fr; }
  .pod-hero .pod-photo { order: 2; max-width: 420px; }
  .pod-split .pod-photo, .pod-split--rev .pod-photo { order: -1; max-width: 460px; }
  .pod-pillars { grid-template-columns: 1fr; }
  .pod-cover { max-width: 320px; margin: 0 auto; }
}


/* error page */
.error-sec, .confirm-sec { text-align: center; background: var(--bg-light); }
.error-lead, .confirm-lead { font-size: 1.15rem; color: var(--ink-70); max-width: 44ch; margin: 0 auto 2rem; }

/* Founders editorial photo */
.founders { margin: clamp(2.6rem, 5vw, 3.6rem) 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid var(--hairline); }
.founders img { display: block; width: 100%; height: auto; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.founders:hover img { transform: scale(1.035); }
@media (prefers-reduced-motion: reduce) { .founders:hover img { transform: none; } }
