/* ============================================
   Growth Advice — Stylesheet
   Editorial • Manifesto • Clean SaaS
   ============================================ */

:root {
  --ink:        #1B2A4A;   /* Primary Dark Navy */
  --paper:      #ffffff;   /* clean white */
  --paper-2:    #F4F6F9;   /* Light Background */
  --muted:      #5a6478;
  --line:       #e2e6ed;
  --accent:     #2ABFBF;   /* Primary Teal */
  --accent-2:   #3DDC97;   /* Accent Green */
  --charcoal:   #2D2D2D;   /* Dark Charcoal */
  --max:        1180px;
  --gutter:     clamp(20px, 4vw, 56px);

  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-body:    'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.67;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; font-family: var(--font-display); font-weight: 400; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* paper grain — subtle texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(rgba(27,42,74,0.018) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
}

main { position: relative; z-index: 2; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.nav__logo:hover .nav__logo-img { opacity: 0.85; }

.nav__logo-mark {
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 16px;
}

.nav__links a {
  color: var(--muted);
  transition: color 0.18s ease;
}

.nav__links a:hover { color: var(--ink); }

.nav__active { color: var(--ink) !important; }

.nav__cta {
  color: var(--ink) !important;
  background: transparent;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav__cta:hover {
  background: var(--ink);
  color: var(--paper) !important;
}

/* Hamburger button — hidden on desktop */
.nav__burger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 60;
}
.nav__burger-bar {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}
.nav__burger-bar:nth-child(1) { top: 13px; }
.nav__burger-bar:nth-child(2) { top: 19.25px; }
.nav__burger-bar:nth-child(3) { top: 25.5px; }
.nav__burger-bar--top-open { top: 19.25px; transform: rotate(45deg); }
.nav__burger-bar--mid-open { opacity: 0; }
.nav__burger-bar--bot-open { top: 19.25px; transform: rotate(-45deg); }

/* Full-screen overlay menu */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav__overlay--open {
  opacity: 1;
  pointer-events: auto;
}
.nav__overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  padding: 96px var(--gutter) 48px;
  min-height: 100%;
  justify-content: center;
  box-sizing: border-box;
}
.nav__overlay-link {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 500;
}
.nav__overlay-cta {
  margin-top: 12px;
  color: var(--ink);
  background: transparent;
  padding: 14px 28px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 500;
  font-size: 17px;
  transition: all 0.2s ease;
}
.nav__overlay-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__logo-img { height: 30px; }
}

@media (min-width: 721px) {
  .nav__overlay { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

.btn--large {
  padding: 18px 32px;
  font-size: 17px;
}

.btn--full {
  width: 100%;
}

/* ============================================
   GENERIC ELEMENTS
   ============================================ */

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
}

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ============================================
   HERO (HOME)
   ============================================ */

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(16px, 2.5vw, 32px) var(--gutter) clamp(16px, 2vw, 28px);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 6.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
}

.hero__sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.62;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 30px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   STRIP (numbers row)
   ============================================ */

.strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 720px) {
  .strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.strip__item { display: flex; flex-direction: column; gap: 4px; }

.strip__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.02em;
}

.strip__label {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.52;
}

/* ============================================
   MANIFESTO BLOCK
   ============================================ */

.manifesto {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(48px, 6.5vw, 84px) var(--gutter);
  text-align: center;
}

.manifesto--alt { text-align: left; }

.manifesto__lede {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 32px;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 48px;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .manifesto__quote { white-space: nowrap; }
}

.manifesto__body {
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

.manifesto__body--wide { max-width: 720px; margin: 0; }

.manifesto__body p { margin: 0 0 24px; }
.manifesto__body p:last-child { margin-bottom: 0; }

.manifesto__close {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.52;
  color: var(--ink);
  margin-top: 32px !important;
}

/* ============================================
   PROBLEM LIST (home)
   ============================================ */

.problem {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5.2vw, 60px) var(--gutter);
  background: var(--paper-2);
  border-radius: 4px;
}

.problem__head { margin-bottom: 56px; max-width: 720px; }

.problem__head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}

.problem__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
}

@media (max-width: 720px) { .problem__list { grid-template-columns: 1fr; gap: 32px; } }

.problem__list li { display: flex; flex-direction: column; gap: 10px; }

.problem__num {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.problem__list h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

.problem__list p {
  color: var(--muted);
  margin: 0;
  font-size: 17px;
  line-height: 1.67;
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pull {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(48px, 6.5vw, 84px) var(--gutter);
  text-align: center;
}

.pull__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
}

.pull__text em {
  color: var(--accent);
  font-family: var(--font-display);
  font-style: italic;
}

/* Manifesto eyebrow alignment for left-aligned variant */
.manifesto--alt .eyebrow { display: block; }

/* About page — tighter vertical rhythm */
.about-page .page-hero {
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(16px, 2.4vw, 28px);
}
.about-page .manifesto {
  padding-top: clamp(28px, 3.6vw, 44px);
  padding-bottom: clamp(28px, 3.6vw, 44px);
}
.about-page .pull {
  padding-top: clamp(32px, 4.2vw, 56px);
  padding-bottom: clamp(32px, 4.2vw, 56px);
}
.about-page .not {
  padding-top: clamp(20px, 2.6vw, 32px);
  padding-bottom: clamp(24px, 3.4vw, 40px);
}
.about-page .cta {
  padding-top: clamp(20px, 2.4vw, 32px);
  padding-bottom: clamp(28px, 3.6vw, 44px);
}
.about-page .page-hero h1 { margin-bottom: 26px; }
.about-page .manifesto__body p { margin-bottom: 18px; }




/* ============================================
   CTA
   ============================================ */

.cta {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 42px) var(--gutter);
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  white-space: nowrap;
}

.cta p {
  color: var(--muted);
  font-size: 19px;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.67;
}

.cta--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  text-align: left;
}

.cta--inline h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.cta--inline p {
  margin: 0;
  max-width: none;
}

@media (max-width: 720px) {
  .cta--inline {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .cta--inline h2 { margin: 0; }
  .cta--inline p { margin: 0; }
}

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) var(--gutter) clamp(24px, 3.9vw, 48px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}

.page-hero__sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin: 0;
  line-height: 1.62;
}

/* ============================================
   SITEMAP
   ============================================ */

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 48px);
}

.sitemap-section__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 18px;
}

.sitemap-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-section__list li + li {
  margin-top: 10px;
}

.sitemap-section__link {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink);
  transition: color 0.2s ease;
}

.sitemap-section__link:hover {
  color: var(--accent);
}

/* ============================================
   PHASES (Approach page)
   ============================================ */

.phases {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5.2vw, 60px) var(--gutter);
}

.phase {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.phase:first-child { padding-top: 0; }
.phase:last-child { border-bottom: none; }

@media (max-width: 720px) { .phase { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; } }

.phase__header { display: flex; gap: 24px; align-items: flex-start; }

.phase__letter {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 72px;
  line-height: 0.9;
  color: var(--accent);
}

.phase__time {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.phase__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

.phase__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phase__list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.62;
}

.phase__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
}

/* ============================================
   TOUCHES
   ============================================ */

.touches {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5.2vw, 60px) var(--gutter);
  background: var(--paper-2);
}

.touches h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 56px;
}

.touches__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 720px) { .touches__grid { grid-template-columns: 1fr; } }

.touch {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--paper);
  border-radius: 6px;
  border: 1px solid var(--line);
}

.touch__mark {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.touch p { margin: 0; font-size: 17px; line-height: 1.62; }

/* ============================================
   DIMENSIONS (Framework page)
   ============================================ */

.dims {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5.2vw, 60px) var(--gutter);
}

.dim {
  display: grid;
  grid-template-columns: 80px 1fr 160px;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.dim:last-child { border-bottom: none; }

@media (max-width: 720px) {
  .dim { grid-template-columns: 60px 1fr; gap: 20px; }
  .dim__scale { grid-column: 1 / -1; justify-content: flex-start; }
}

.dim__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
}

.dim__body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}

.dim__what {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
}

.dim__why {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.62;
}

.dim__why span {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-right: 6px;
}

.dim__scale {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.dim__scale span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
}

.dim__scale span.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

/* ============================================
   ICP GRID
   ============================================ */

.icp {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5.2vw, 60px) var(--gutter);
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
}

.icp h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 56px;
}

.icp .eyebrow { color: var(--accent-2); }

.icp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

@media (max-width: 720px) { .icp__grid { grid-template-columns: 1fr; gap: 28px; } }

.icp__heading {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: 14px;
}

.icp__col p {
  margin: 0;
  font-size: 19px;
  line-height: 1.57;
  color: var(--paper);
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(36px, 5.2vw, 60px) var(--gutter);
}

.about__body {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.75;
  letter-spacing: -0.005em;
  color: var(--muted);
}

.about__body p { margin: 0 0 24px; }
.about__body p:last-child { margin-bottom: 0; }

/* ============================================
   "NOT" LIST
   ============================================ */

.not {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(24px, 3.9vw, 48px) var(--gutter) clamp(36px, 5.2vw, 60px);
}

.not__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.not__list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
  position: relative;
  padding-left: 32px;
}

.not__list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  top: 22px;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5.2vw, 60px) var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
}

@media (max-width: 820px) { .contact { grid-template-columns: 1fr; gap: 48px; } }

.contact__form { display: flex; flex-direction: column; gap: 24px; }

.field { display: flex; flex-direction: column; gap: 8px; }

.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field--row > div { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 17px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 4px;
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.contact__note {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  margin: 8px 0 0;
}

.contact__side {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background: var(--paper-2);
  border-radius: 4px;
  height: fit-content;
}

.contact__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.contact__block p {
  margin: 0;
  font-size: 17px;
  line-height: 1.62;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px var(--gutter) 32px;
  position: relative;
  z-index: 2;
}

.footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

.footer__logo {
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 8px;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 280px;
  margin: 0;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 22px;
}

.footer__grid a {
  display: block;
  color: var(--paper);
  font-size: 16px;
  margin-bottom: 14px;
  transition: color 0.18s ease;
}

.footer__grid a:hover { color: var(--accent-2); }

.footer__base {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__base a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.18s ease;
}

.footer__base a:hover {
  color: var(--accent-2);
}

/* ============================================
   ENTRANCE ANIMATION
   ============================================ */

.hero__headline,
.hero__sub,
.hero__actions,
.hero__meta,
.page-hero h1,
.page-hero__sub,
.page-hero .eyebrow,
.subscribe h2,
.subscribe p,
.beehiiv-embed-container {
  animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}

.page-hero .eyebrow { animation-delay: 0.05s; }
.page-hero h1 { animation-delay: 0.15s; }
.page-hero__sub { animation-delay: 0.25s; }

.hero__meta { animation-delay: 0.05s; }
.hero__headline { animation-delay: 0.15s; }
.hero__sub { animation-delay: 0.28s; }
.hero__actions { animation-delay: 0.4s; }

.subscribe h2 { animation-delay: 0.1s; }
.subscribe p { animation-delay: 0.2s; }
.beehiiv-embed-container { animation-delay: 0.35s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================
   RESULTS STRIP
   ============================================ */

.results {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5.2vw, 60px) var(--gutter);
  background: var(--paper-2);
  border-radius: 4px;
}

.results h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 56px;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 720px) { .results__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

.result { display: flex; flex-direction: column; gap: 8px; }

.result__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.result__label {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.52;
}

/* ============================================
   SUBSCRIBE BLOCK
   ============================================ */

.subscribe {
  background: var(--ink);
  color: #ffffff;
  padding: clamp(48px, 6.5vw, 72px) var(--gutter);
}

.subscribe__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.subscribe .eyebrow { color: var(--accent-2); }

.subscribe h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: #ffffff;
}

.subscribe p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 19px;
  margin: 0 0 32px;
}

.beehiiv-embed-container {
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 28px 24px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.beehiiv-embed-container:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.beehiiv-embed-container iframe {
  display: block;
  width: 100% !important;
  border: none;
}

@media (max-width: 560px) {
  .beehiiv-embed-container {
    padding: 20px 16px;
    border-radius: 8px;
  }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(36px, 5.2vw, 60px) var(--gutter);
}

.faq__item {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.faq__item:first-child { border-top: 1px solid var(--line); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  transition: color 0.2s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  flex: 1;
  transition: color 0.2s ease;
}

.faq__item:hover summary h2 { color: var(--accent); }

.faq__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--ink);
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
  margin-top: 4px;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #ffffff;
}

.faq__answer {
  padding: 0 0 32px;
  max-width: 700px;
}

.faq__answer p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.faq__answer ul,
.faq__answer ol {
  margin: 0 0 22px;
  padding-left: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.faq__answer li { margin-bottom: 14px; }

.faq__answer strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============================================
   LANDING PAGE NAV (slim variant)
   ============================================ */

.nav--lp {
  justify-content: space-between;
}

.nav--lp .nav__cta {
  margin-left: auto;
}
/* ============================================
   QUOTES (Testimonials page)
   ============================================ */

.quotes {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5.2vw, 60px) var(--gutter);
}

/* --- LEAD QUOTE (featured) --- */

.lead-quote {
  position: relative;
  margin: 0 0 80px;
  padding: clamp(24px, 3.9vw, 43px) clamp(19px, 3.25vw, 38px);
  background: var(--ink);
  color: #ffffff;
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 40px;
  overflow: hidden;
}

.lead-quote::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at top right, rgba(61, 220, 151, 0.15), transparent 70%);
  pointer-events: none;
}

.lead-quote__mark {
  grid-row: 1 / 3;
  width: 56px;
  height: 56px;
  color: var(--accent-2);
}

.lead-quote__mark svg { width: 100%; height: 100%; display: block; }

.lead-quote__text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.lead-quote__attr {
  grid-column: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lead-quote__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lead-quote__person { display: flex; flex-direction: column; gap: 2px; }
.lead-quote__name { font-weight: 500; font-size: 17px; color: #ffffff; }
.lead-quote__role { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.02em; }

.lead-quote__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 7px 14px;
  background: rgba(61, 220, 151, 0.1);
  border: 1px solid rgba(61, 220, 151, 0.3);
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .lead-quote { grid-template-columns: 1fr; padding: 36px 28px; }
  .lead-quote__mark { grid-row: auto; width: 44px; height: 44px; }
  .lead-quote__attr { grid-column: 1; grid-template-columns: auto 1fr; gap: 12px; }
  .lead-quote__badge { grid-column: 1 / -1; justify-self: start; }
}

/* --- TESTIMONIAL SPREAD (alternating editorial) --- */

.testimonial-spread {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.testimonial {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.testimonial--right {
  grid-template-columns: 1fr 200px;
}

.testimonial--right .testimonial__index { order: 2; }
.testimonial--right .testimonial__quote,
.testimonial--right .testimonial__attr { order: 1; }

.testimonial__index {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

.testimonial__count {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 88px;
  line-height: 0.85;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.testimonial__topic {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial__quote {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.testimonial__quote::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 30px;
}

.testimonial__attr {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.testimonial__avatar--alt {
  background: linear-gradient(135deg, var(--ink), #2a3d63);
}

.testimonial__name {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}

.testimonial__role {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

@media (max-width: 820px) {
  .testimonial,
  .testimonial--right {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial--right .testimonial__index { order: 0; }
  .testimonial__index {
    position: static;
    flex-direction: row;
    align-items: baseline;
    gap: 20px;
  }
  .testimonial__count { font-size: 56px; }
  .testimonial-spread { gap: 64px; }
}

/* ============================================
   RESULTS STRIP (kept as-is)
   ============================================ */

/* ============================================
   JOURNAL — Editorial layout
   ============================================ */

.journal {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 3vw, 40px) var(--gutter);
}

/* --- FEATURED POST (full-width hero treatment) --- */

.featured-post {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  margin-bottom: 48px;
  background: var(--paper-2);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -16px rgba(27, 42, 74, 0.18);
}

.featured-post__media {
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-2) 100%);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.featured-post__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18) 0, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(27,42,74,0.18) 0, transparent 50%);
  pointer-events: none;
}

.featured-post__tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.95);
  padding: 7px 14px;
  border-radius: 999px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

.featured-post__date {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink);
  opacity: 0.75;
  position: relative;
  z-index: 1;
}

.featured-post__body {
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.featured-post__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.featured-post__excerpt {
  font-size: 19px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0;
  max-width: 640px;
}

.featured-post__link {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.featured-post__arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.featured-post:hover .featured-post__arrow {
  transform: translateX(6px);
}

@media (max-width: 820px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-post__media {
    flex-direction: row;
    align-items: center;
    padding: 24px 28px;
  }
}

/* --- TOPIC BAR (filter chips) --- */

.topic-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.topic-bar__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.topic-bar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-chip {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 8px 16px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.topic-chip:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.topic-chip--active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

/* --- SECTION HEADING --- */

.journal__section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 26px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.journal__count {
  color: var(--accent);
  font-weight: 600;
}

/* --- POST LIST (editorial row layout) --- */

.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-row {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  grid-template-rows: auto auto auto;
  gap: 8px 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.25s ease;
}

.post-row:last-child { border-bottom: none; }

.post-row:hover {
  padding-left: 12px;
  padding-right: 12px;
}

.post-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  background: var(--row-accent, var(--accent));
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.post-row:hover::before { transform: translateY(-50%) scaleY(1); }

.post-row__num {
  grid-row: 1 / 4;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-top: 8px;
}

.post-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-row__tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--row-accent, var(--accent));
  background: var(--row-accent-bg, rgba(42, 191, 191, 0.1));
}

.post-row__date,
.post-row__read {
  color: var(--muted);
}

.post-row__read::before {
  content: "·";
  margin-right: 12px;
  color: var(--line);
}

.post-row__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-row:hover .post-row__title { color: var(--row-accent, var(--accent)); }

.post-row__excerpt {
  margin: 0;
  font-size: 17px;
  line-height: 1.67;
  color: var(--muted);
  max-width: 680px;
}

.post-row__cta {
  grid-row: 1 / 4;
  align-self: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.post-row:hover .post-row__cta {
  background: var(--row-accent, var(--accent));
  color: #ffffff;
  transform: translateX(4px);
}

/* Topic accent variants */
.post-row[data-topic="framework"]  { --row-accent: #2ABFBF; --row-accent-bg: rgba(42, 191, 191, 0.1); }
.post-row[data-topic="benchmarks"] { --row-accent: #3DDC97; --row-accent-bg: rgba(61, 220, 151, 0.14); }
.post-row[data-topic="playbook"]   { --row-accent: #1B2A4A; --row-accent-bg: rgba(27, 42, 74, 0.08); }
.post-row[data-topic="contrarian"] { --row-accent: #c8431f; --row-accent-bg: rgba(200, 67, 31, 0.1); }
.post-row[data-topic="interview"]  { --row-accent: #7a5cf5; --row-accent-bg: rgba(122, 92, 245, 0.1); }
.post-row[data-topic="fieldnote"]  { --row-accent: #d4a017; --row-accent-bg: rgba(212, 160, 23, 0.12); }

@media (max-width: 720px) {
  .post-row {
    grid-template-columns: 40px 1fr;
    gap: 8px 16px;
  }
  .post-row__cta { display: none; }
  .post-row__num { grid-row: 1; padding-top: 0; }
  .post-row__meta { grid-row: 2; grid-column: 2; }
  .post-row__title { grid-column: 1 / -1; }
  .post-row__excerpt { grid-column: 1 / -1; }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */

.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(24px, 3.9vw, 48px) var(--gutter) clamp(48px, 6.5vw, 84px);
}

.legal-body__inner {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}

.legal-lede {
  font-size: 20px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0 0 40px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 48px 0 16px;
  color: var(--ink);
}

.legal-body h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  margin: 28px 0 12px;
  color: var(--ink);
}

.legal-body p {
  margin: 0 0 22px;
  color: var(--muted);
}

.legal-body ul,
.legal-body ol {
  margin: 0 0 26px;
  padding-left: 24px;
  color: var(--muted);
}

.legal-body li {
  margin-bottom: 14px;
}

.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: var(--ink);
}

.legal-contact {
  background: var(--paper-2);
  border-radius: 4px;
  padding: 24px;
  margin-top: 24px;
}

.legal-contact a {
  color: var(--accent);
}

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing__section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5.2vw, 60px) var(--gutter);
  border-bottom: 1px solid var(--line);
}

.pricing__section:last-of-type {
  border-bottom: none;
}

.pricing__section--alt {
  background: var(--paper-2);
}

.pricing__hero-card {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(32px, 4vw, 52px) clamp(28px, 3.5vw, 44px);
  border-radius: 8px;
  margin-bottom: 48px;
  text-align: center;
}

.pricing__hero-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: 16px;
}

.pricing__hero-price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  color: #ffffff;
}

.pricing__hero-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.85);
}

.pricing__hero-note {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.6;
}

.pricing__lead {
  margin-bottom: 32px;
}

.pricing__lead h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}

.pricing__lead-note {
  font-size: 19px;
  color: var(--muted);
  margin: 0;
}

.pricing__subhead {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}

.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing__list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.62;
}

.pricing__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 28px;
  line-height: 0.7;
}

.pricing__list--check li::before {
  content: "✓";
  font-size: 16px;
  line-height: 1.4;
}

.pricing__list--cross li::before {
  content: "×";
  font-size: 20px;
  line-height: 1.2;
}

.pricing__alt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 720px) {
  .pricing__alt-grid {
    grid-template-columns: 1fr;
  }
}

.pricing__alt {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.pricing__alt-price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.02em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.pricing__alt h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.pricing__alt p {
  margin: 0;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.62;
}

.pricing__intro {
  font-size: 19px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 40px;
}

.pricing__parts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pricing__part {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 720px) {
  .pricing__part {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
}

.pricing__part-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
}

.pricing__part h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

.pricing__part p {
  margin: 0;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.62;
}

.pricing__guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 32px;
}

@media (max-width: 720px) {
  .pricing__guarantee-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.pricing__guarantee-grid h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

.pricing__terms {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
