/* ============================================================
   Plainpaper — landing page
   Design tokens modelled on Castly's visual language:
   - warm off-white canvas, crimson pink accent, dense display type
   ============================================================ */

:root {
  --pp-bg: #f5f5f2;
  --pp-bg-alt: #ffffff;
  --pp-ink: #1e1e1e;
  --pp-ink-2: #353535;
  --pp-ink-3: #626262;
  --pp-ink-4: #a5a5a5;
  --pp-line: #e7e7e2;
  --pp-line-2: #ebebe6;

  --pp-orange: #d4044a;
  --pp-orange-2: #ee1a63;
  --pp-orange-rgb: 212, 4, 74;
  --pp-blue: #0364ff;
  --pp-green: #32c257;
  --pp-green-soft: #ebf9ee;
  --pp-green-soft-2: #e4fdeb;
  --pp-peach: #ffede5;
  --pp-yellow: #fcf6db;
  --pp-yellow-2: #fbe896;
  --pp-lilac: #efeefe;
  --pp-lilac-2: #7e76f4;
  --pp-pink: #faeafc;
  --pp-pink-2: #dc5ced;

  --font-display: 'Bricolage Grotesque', 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Helvetica, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Helvetica, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-lg: 0 30px 80px -30px rgba(0,0,0,.18), 0 8px 20px -8px rgba(0,0,0,.08);

  --container: 1240px;
  --gutter: 24px;

  --nav-h: 72px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--pp-bg);
  color: var(--pp-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .9em;
  padding: .1em .4em;
  background: #eceae4;
  border-radius: 6px;
}

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

/* ====== DISPLAY TYPE ====== */

.display,
.display-2,
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--pp-ink);
  margin: 0;
}
.display {
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: .98;
}
.display-2 {
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.display-mute {
  color: var(--pp-ink-4);
}
.section-sub {
  font-size: 16px;
  color: var(--pp-ink-3);
  max-width: 52ch;
  margin: 16px 0 0;
}

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

.btn {
  --btn-bg: #1e1e1e;
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-dark { --btn-bg: #1e1e1e; --btn-fg: #ffffff; }
.btn-dark:hover { --btn-bg: #000000; }
.btn-orange { --btn-bg: var(--pp-orange); --btn-fg: #fff; }
.btn-orange:hover { --btn-bg: var(--pp-orange-2); }
.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--pp-ink);
  border: 1px solid var(--pp-line);
  background: #fff;
}
.btn-ghost:hover { background: #faf9f5; }
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* ====== NAV ====== */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 0;
  background: linear-gradient(to bottom, rgba(245,245,242,.85), rgba(245,245,242,.65));
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 6px 14px 6px 6px;
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 2px rgba(0,0,0,.04), inset 0 0 0 1px rgba(0,0,0,.05);
}
.nav-logo { display: inline-flex; }
.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.nav-brand-sep {
  width: 1px;
  height: 14px;
  background: var(--pp-line);
  margin: 0 6px;
}
.nav-brand-tag {
  font-size: 12px;
  color: var(--pp-ink-3);
  letter-spacing: -0.005em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 2px rgba(0,0,0,.04), inset 0 0 0 1px rgba(0,0,0,.05);
}
.nav-links li a {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--pp-ink-2);
  transition: background .15s ease, color .15s ease;
}
.nav-links li a:hover { background: #f5f5f2; color: var(--pp-ink); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-brand-sep, .nav-brand-tag { display: none; }
}

/* ====== SECTION / REVEAL ====== */

.section { padding: 100px 0; }
.section-tight { padding: 28px 0; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ====== HERO ====== */

.hero { padding: 48px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 36px;
}
.badge-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
  margin-bottom: 20px;
}
.badge-star {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pp-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.badge-rating-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.badge-rating-sub {
  font-size: 11px;
  color: var(--pp-ink-3);
  line-height: 1.1;
}
.hero-sub {
  font-size: 17px;
  color: var(--pp-ink-2);
  margin: 0 0 24px;
  line-height: 1.5;
  max-width: 42ch;
}
.hero-form {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), inset 0 0 0 1px rgba(0,0,0,.05);
  max-width: 440px;
  width: 100%;
}
.hero-form input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 10px 14px;
  font-size: 14px;
  background: transparent;
  min-width: 0;
}
.hero-form input::placeholder { color: var(--pp-ink-4); }
.hero-form .btn { padding: 10px 18px; white-space: nowrap; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; align-items: start; }
}

/* Hero mosaic — Plainpaper cards as creator-tile replacement */

.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 16px;
  margin-top: 12px;
}
.mosaic-tile {
  border-radius: var(--radius-lg);
  padding: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.mosaic-tile:hover { transform: translateY(-3px); }

.tile-lilac { background: linear-gradient(145deg, #efeefe 0%, #d9d5fd 100%); grid-row: span 2; grid-column: span 1; }
.tile-mockup { background: #1e1e1e; grid-row: span 1; grid-column: span 1; }
.tile-mockup2 { background: linear-gradient(160deg, #fff 0%, #fbfaf6 100%); grid-row: span 2; grid-column: span 1; }
.tile-stat-blue { background: var(--pp-blue); color: #fff; grid-column: span 1; grid-row: span 1; }
.tile-mockup3 { background: linear-gradient(160deg, #e4fdeb 0%, #c7f0d4 100%); grid-row: span 1; grid-column: span 1; }
.tile-stat-green { background: var(--pp-green); color: #fff; grid-row: span 1; grid-column: span 1; }
.tile-mockup4 { background: linear-gradient(160deg, #fde7ed 0%, #fcc4d4 100%); grid-row: span 1; grid-column: span 2; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
  align-self: flex-start;
}
.stat-sub {
  font-size: 13px;
  line-height: 1.4;
  opacity: .88;
  margin-top: auto;
}
.tile-stat { flex-direction: column; justify-content: space-between; gap: 14px; }

/* Plainpaper "card" component inside mosaic */
.pp-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  min-height: 0;
}
.pp-card-dark { background: #2a2a2a; color: #e8e8e6; box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.pp-card-dark .pp-card-title, .pp-card-dark p { color: #f2f0ec; }
.pp-card-dark .pp-card-meta .pp-tag { background: #3a3a3a; color: #e8e8e6; }

.pp-card-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--pp-ink-3);
  padding: 3px 8px;
  border-radius: 5px;
  align-self: flex-start;
  background: #f4f4f0;
}
.type-audience { background: #efeefe; color: var(--pp-lilac-2); }
.type-insight  { background: #fcf6db; color: #a88a14; }
.type-email    { background: #fde7ed; color: var(--pp-orange); }
.type-result   { background: var(--pp-green-soft); color: #1b8e3b; }
.type-plan     { background: #e1edff; color: var(--pp-blue); }

.pp-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--pp-ink);
}
.pp-card-body p {
  font-size: 12.5px;
  color: var(--pp-ink-3);
  line-height: 1.45;
  margin: 0;
}
.pp-card-dark .pp-card-body p { color: #c9c7c3; }
.pp-card-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}
.pp-tag {
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 5px;
  background: #f0efe9;
  color: var(--pp-ink-3);
  font-weight: 500;
}
.pp-tag.tag-green { background: var(--pp-green-soft); color: #1b8e3b; }
.pp-author {
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px dashed rgba(255,255,255,.1);
}
.pp-card:not(.pp-card-dark) .pp-author {
  border-top-color: var(--pp-line);
}
.pp-author-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--pp-ink-2);
}
.pp-card-dark .pp-author-name { color: #f2f0ec; }
.pp-author-role {
  font-size: 11px;
  color: var(--pp-ink-4);
  margin-top: 2px;
}
.pp-card-dark .pp-author-role { color: #9a9894; }

@media (max-width: 980px) {
  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 190px);
  }
  .tile-lilac, .tile-mockup2 { grid-row: span 1; }
  .tile-mockup4 { grid-column: span 2; }
}
@media (max-width: 620px) {
  .hero-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 170px);
  }
  .tile-mockup4 { grid-column: span 1; }
}

/* ====== STAT STRIP ====== */

.strip {
  padding: 20px 0 60px;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--pp-line);
  border-bottom: 1px solid var(--pp-line);
}
.strip-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.strip-num .accent { color: var(--pp-orange); font-size: .7em; margin-left: 2px; }
.strip-label {
  font-size: 14px;
  color: var(--pp-ink-3);
  line-height: 1.5;
  max-width: 34ch;
}

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

/* ====== PARTNERS ====== */

.partners { padding: 0 0 40px; }
.partners-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.partners-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--pp-ink);
  letter-spacing: -0.01em;
  padding-right: 20px;
  border-right: 1px solid var(--pp-line);
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  flex: 1;
  opacity: .85;
}
.logo-chip {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--pp-ink-3);
  font-size: 13px;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px var(--pp-line);
}

/* ====== FEATURE GRID ====== */

.features .display-2 { max-width: 18ch; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 64px;
  background: var(--pp-line-2);
  border-radius: var(--radius-xl);
  padding: 2px;
}
.feature {
  background: #fff;
  padding: 32px 28px;
  border-radius: calc(var(--radius-xl) - 2px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 300px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg { width: 26px; height: 26px; }
.icon-peach { background: #fddfe8; }
.icon-blue { background: #dfeaff; }
.icon-mint { background: #dff5e6; }
.icon-lilac { background: #e4e2fe; }
.icon-yellow { background: #fbefc2; }
.icon-pink { background: #fbe0f3; }

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pp-ink);
  margin: 0;
}
.feature-body {
  font-size: 14.5px;
  color: var(--pp-ink-3);
  line-height: 1.55;
  margin: 0 0 auto;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pp-ink);
  padding-top: 12px;
  border-top: 1px solid var(--pp-line);
}
.feature-link svg { transition: transform .2s ease; }
.feature-link:hover svg { transform: translateX(3px); }

@media (max-width: 960px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ====== SPLIT CTA (mockups) ====== */

.split { padding: 60px 0; }
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-grid.reverse .split-visual { order: 2; }
.split-grid.reverse .split-copy { order: 1; }

.split-copy .display-2 { max-width: 14ch; }
.split-sub { font-size: 15.5px; color: var(--pp-ink-3); line-height: 1.55; margin: 16px 0 22px; max-width: 46ch; }
.check-list { margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--pp-ink-2);
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pp-green-soft);
  color: #1b8e3b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.mock-frame {
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.mock-blue { background: var(--pp-blue); }
.mock-orange { background: var(--pp-orange); }
.mock-light { background: #fff; box-shadow: inset 0 0 0 1px var(--pp-line-2), 0 30px 60px -30px rgba(0,0,0,.15); }

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 12px;
}
.mock-topbar.light .mock-dot { background: #ffffff55; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: #ffffff30; }
.mock-tab {
  margin-left: auto;
  background: #ffffff1a;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.mock-orange .mock-tab { background: #ffffff24; }
.mock-canvas {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fafaf7;
  border-radius: 10px;
}
.mock-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c7c4fc, #7e76f4);
  flex-shrink: 0;
}
.mock-tool {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}
.mock-tool-1 { background: #3a6ef9; }
.mock-tool-2 { background: #ffc42a; color: #1e1e1e; }
.mock-tool-3 { background: #ec412e; }
.mock-tool-4 { background: #34a853; }

.mock-line {
  height: 6px;
  border-radius: 999px;
  background: #e4e3de;
  flex: 0 0 auto;
}
.mock-line.w-30 { width: 30px; }
.mock-line.w-40 { width: 60px; }
.mock-line.w-45 { width: 70px; }
.mock-line.w-50 { width: 80px; }
.mock-line.w-55 { width: 100px; }
.mock-line.w-60 { width: 120px; }
.mock-line.w-70 { width: 150px; }
.mock-line.w-80 { width: 180px; }
.mock-line.w-85 { width: 200px; }
.mock-line.w-90 { width: 220px; }
.mock-line.w-95 { width: 240px; }

.mock-badge {
  margin-left: auto;
  font-size: 10.5px;
  padding: 3px 9px;
  border-radius: 6px;
  font-weight: 600;
}
.mock-badge-green { background: var(--pp-green-soft); color: #1b8e3b; }
.mock-badge-yellow { background: #fcf6db; color: #a88a14; }
.mock-dots { margin-left: auto; color: #c0bfb9; font-size: 16px; }

@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-grid.reverse .split-visual { order: 1; }
  .split-grid.reverse .split-copy { order: 2; }
}

/* ====== VALUE TABS ====== */

.value { padding: 80px 0 60px; }
.value-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.icon-splat { display: inline-flex; }
.value-head .display-2 { max-width: 22ch; }
.value-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 56px 0 20px;
  border-bottom: 1px solid var(--pp-line);
}
.value-tab {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0 20px;
  border-bottom: 2px solid transparent;
  color: var(--pp-ink-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: -0.015em;
  margin-bottom: -1px;
  transition: color .2s ease, border-color .2s ease;
  justify-content: flex-start;
  position: relative;
}
.value-tab .vt-num {
  color: inherit;
  font-weight: 700;
  margin-right: 2px;
}
.value-tab.active {
  color: var(--pp-ink);
  border-bottom-color: var(--pp-orange);
}

.value-panel {
  display: flex;
  justify-content: center;
  padding: 30px 0 10px;
}
.value-panel-visual { width: 100%; max-width: 1060px; }

/* ---------- Plainpaper canvas mockup (simple) ---------- */
.pp-canvas {
  --pp-t-audience: #e07a3b;
  --pp-t-insight:  #3b7ae0;
  --pp-t-plan:     #4a55d1;
  --pp-t-email:    #d6457a;
  --pp-t-social:   #c02e9e;
  --pp-t-result:   #7cae1f;
  --pp-c-bg:   #faf8f4;
  --pp-c-grid: #ece7de;
  --pp-c-ink:  #1a1613;
  --pp-c-soft: #5a544c;
  --pp-c-faint:#9a9288;
  --pp-c-line: #e4ddd2;

  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--pp-c-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-family: var(--font-body);
  color: var(--pp-c-ink);
}

/* phase columns across the top */
.pp-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--pp-c-line);
  background: #fff;
}
.pp-phase {
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pp-c-soft);
  border-right: 1px solid var(--pp-c-line);
}
.pp-phase:last-child { border-right: 0; }

/* dotted-grid canvas with phase guides */
.pp-board {
  position: relative;
  height: 360px;
  background:
    linear-gradient(to right,
      transparent 0 25%, var(--pp-c-line) 25% calc(25% + 1px), transparent calc(25% + 1px) 50%,
      var(--pp-c-line) 50% calc(50% + 1px), transparent calc(50% + 1px) 75%,
      var(--pp-c-line) 75% calc(75% + 1px), transparent calc(75% + 1px) 100%),
    radial-gradient(circle at 1px 1px, var(--pp-c-grid) 1px, transparent 0) 0 0 / 22px 22px,
    var(--pp-c-bg);
}

.pp-edges {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  color: #b6ada0;
  overflow: visible;
}
.pp-edge { transition: opacity .25s ease, color .25s ease; }
.pp-edge path { transition: stroke-width .25s ease; }
.pp-canvas.lineage-on .pp-edge { color: var(--pp-orange); }
.pp-canvas.lineage-on .pp-edge path { stroke-width: 2.2; }

/* nodes: compact card, left color bar, type tag + title */
.pp-node {
  position: absolute;
  width: 220px;
  min-height: 62px;
  background: #fff;
  border: 1px solid var(--pp-c-line);
  border-left: 3px solid var(--type-color, var(--pp-c-faint));
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 1px 2px rgba(30,20,10,.05), 0 6px 16px rgba(30,20,10,.06);
  transition: opacity .25s ease, box-shadow .25s ease, transform .25s ease;
}
.pp-node[data-type="audience"] { --type-color: var(--pp-t-audience); }
.pp-node[data-type="insight"]  { --type-color: var(--pp-t-insight); }
.pp-node[data-type="plan"]     { --type-color: var(--pp-t-plan); }
.pp-node[data-type="email"]    { --type-color: var(--pp-t-email); }
.pp-node[data-type="social"]   { --type-color: var(--pp-t-social); }
.pp-node[data-type="result"]   { --type-color: var(--pp-t-result); }

.pp-node-type {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--type-color);
  margin-bottom: 5px;
}
.pp-node-title {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--pp-c-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* focus + tab-driven states */
.pp-node-focus {
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--type-color) 40%, transparent),
    0 10px 22px rgba(30,20,10,.1);
}
.pp-node.dim { opacity: 0.35; }
.pp-node.hl {
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--pp-orange) 55%, transparent),
    0 12px 24px rgba(var(--pp-orange-rgb),.16);
  transform: translateY(-1px);
}

/* floating context card — horizontal pill hanging below the canvas edge */
.pp-tip {
  position: relative;
  margin: -28px auto 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 12px;
  background: #fff;
  border: 1px solid var(--pp-c-line);
  border-radius: 999px;
  box-shadow: 0 18px 36px -12px rgba(30,20,10,.2), 0 6px 14px rgba(30,20,10,.08);
  max-width: calc(100% - 48px);
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
}
.pp-tip-icon {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--pp-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pp-tip-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-orange);
  white-space: nowrap;
}
.pp-tip-divider {
  width: 1px;
  align-self: stretch;
  margin: 4px 2px;
  background: var(--pp-c-line);
}
.pp-tip-body {
  font-size: 13px;
  line-height: 1.4;
  color: var(--pp-c-soft);
  transition: opacity .2s ease;
  min-width: 0;
}
.pp-tip-body.switching { opacity: 0; }

@media (max-width: 1020px) {
  .value-tabs { grid-template-columns: 1fr 1fr; }
  .pp-phases { display: none; }
  .pp-board { height: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--pp-c-bg); }
  .pp-node { position: relative !important; left: 0 !important; top: 0 !important; width: 100%; }
  .pp-node-title { white-space: normal; }
  .pp-edges { display: none; }
  .pp-tip {
    margin: 16px auto 0;
    left: auto;
    transform: none;
    width: auto;
    padding: 12px 16px;
    border-radius: 12px;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .pp-tip-divider { display: none; }
}

/* ====== STEPS ====== */

.steps { padding: 60px 0 80px; }
.steps-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.step {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 0 0 1px var(--pp-line-2);
}
.step-visual {
  background: #faf9f5;
  border-radius: var(--radius-lg);
  min-height: 180px;
  position: relative;
  padding: 18px;
  overflow: hidden;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0;
}
.step-body { font-size: 14px; color: var(--pp-ink-3); line-height: 1.5; margin: 0; }

/* Step 1 visual — chips around a central orb */
.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--pp-ink-2);
  box-shadow: 0 2px 6px rgba(0,0,0,.06), inset 0 0 0 1px var(--pp-line);
}
.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pp-orange);
}
.chip-1 { top: 16px; left: 14px; }
.chip-2 { top: 16px; right: 14px; }
.chip-3 { bottom: 16px; left: 30px; }
.chip-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(212,4,74,.25), inset 0 0 0 1px var(--pp-line);
  display: flex; align-items: center; justify-content: center;
}
.chip-orb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff8fac, var(--pp-orange));
  box-shadow: 0 0 20px rgba(212,4,74,.4);
}

/* Step 2 visual — rows with a toggle */
.step2-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px var(--pp-line);
  margin-bottom: 8px;
}
.s2-icon {
  width: 20px; height: 20px;
  border-radius: 5px;
  background: radial-gradient(circle at 30% 30%, #ff8fac, var(--pp-orange));
}
.s2-icon.dim { background: #e4e3de; }
.s2-line { height: 6px; border-radius: 999px; background: #e4e3de; }
.s2-line.dim { background: #eeede8; }
.s2-toggle {
  width: 34px; height: 20px;
  margin-left: auto;
  background: var(--pp-blue);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 2px;
  justify-content: flex-end;
}
.s2-toggle.dim { background: #e4e3de; justify-content: flex-start; }
.s2-toggle-thumb { width: 16px; height: 16px; border-radius: 50%; background: #fff; }

/* Step 3 visual — A/B card */
.step3-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: inset 0 0 0 1px var(--pp-line), 0 8px 22px rgba(0,0,0,.06);
  position: absolute; inset: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.s3-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--pp-green);
  text-transform: uppercase;
}
.s3-lift {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--pp-green);
  letter-spacing: -0.02em;
  line-height: 1;
}
.s3-line { height: 6px; border-radius: 999px; background: #e4e3de; width: 80%; }
.s3-line.dim { width: 55%; background: #eeede8; }

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

/* ====== COMPARE TABLE ====== */

.compare { padding: 60px 0 60px; }
.compare-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.compare-head .display-2 { max-width: 22ch; }

.compare-table {
  margin-top: 56px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px var(--pp-line), 0 20px 40px -30px rgba(0,0,0,.12);
  overflow: hidden;
}
.compare-head-row {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--pp-line);
  background: #faf9f5;
}
.compare-col-label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pp-ink-4);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.compare-us { color: var(--pp-ink); }
.compare-row {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--pp-line);
}
.compare-row:last-child { border-bottom: 0; }
.compare-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.compare-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-blue-soft  { background: #dfeaff; }
.icon-peach-soft { background: #fddfe8; }
.icon-yellow-soft { background: #fbefc2; }
.icon-lilac-soft { background: #e4e2fe; }
.icon-mint-soft  { background: #dff5e6; }
.icon-pink-soft  { background: #fbe0f3; }
.compare-feat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--pp-ink);
}
.compare-feat-body {
  font-size: 13px;
  color: var(--pp-ink-3);
  line-height: 1.5;
  margin-top: 4px;
}
.compare-cell { text-align: center; }
.check-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pp-green-soft);
  color: #1b8e3b;
  font-weight: 700;
}
.cross {
  color: var(--pp-ink-4);
  font-size: 20px;
  font-weight: 400;
}
.partial {
  font-size: 13px;
  color: var(--pp-ink-4);
  font-weight: 500;
}

@media (max-width: 820px) {
  .compare-head-row, .compare-row { grid-template-columns: 1fr 100px 100px; padding: 16px 18px; }
  .compare-col-label { font-size: 15px; }
  .compare-feat-title { font-size: 15px; }
  .compare-icon { display: none; }
}

/* ====== TESTIMONIALS ====== */

.testimonials { padding: 80px 0; background: #faf9f5; border-radius: var(--radius-xl); margin: 0 auto; max-width: calc(var(--container) + 48px); }

.testi-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.testi-head .display-2 { max-width: 22ch; }

.testi-slider {
  margin-top: 56px;
  position: relative;
}
.testi-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testi-card {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px -30px rgba(0,0,0,.12);
}
.testi-card.active { display: grid; }

.testi-photo {
  position: relative;
  border-radius: var(--radius-lg);
  min-height: 280px;
  padding: 18px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.testi-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
.testi-photo > * { position: relative; z-index: 2; }
.testi-photo-1 { background: linear-gradient(145deg, #8f7dff 0%, #3e2dad 100%); }
.testi-photo-2 { background: linear-gradient(145deg, #ff5e85 0%, #7a0229 100%); }
.testi-photo-3 { background: linear-gradient(145deg, #34d07b 0%, #0a6931 100%); }

.testi-photo::after {
  content: '';
  position: absolute;
  inset: 20% 30% 10% 20%;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,255,255,.35), transparent 55%);
  z-index: 0;
}
.testi-name-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.testi-name-sub { font-size: 12px; opacity: .9; }
.testi-play {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.2);
}

.testi-quote {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.testi-quote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--pp-ink);
  margin: 0;
}
.testi-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--pp-line);
}
.m-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.m-num span { font-size: .6em; margin-left: 2px; color: var(--pp-ink-3); }
.m-lab { font-size: 13px; color: var(--pp-ink-3); margin-top: 4px; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 22px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pp-ink-4); opacity: .4; transition: opacity .2s; }
.dot.active { opacity: 1; background: var(--pp-ink); }

@media (max-width: 820px) {
  .testi-card { grid-template-columns: 1fr; }
  .testi-photo { min-height: 220px; }
}

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

.pricing { padding: 100px 0 60px; }
.pricing-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pricing-head .display-2 { max-width: 20ch; }
.pricing-head .section-sub { text-align: center; margin: 16px auto 0; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: inset 0 0 0 1px var(--pp-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.price-featured {
  background: #1e1e1e;
  color: #f0eeea;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.25);
}
.price-featured .price-body { color: #c9c7c3; }
.price-featured .price-tier { color: #fff; }
.price-featured .price-num { color: #fff; }
.price-featured .price-num span { color: #9a9894; }
.price-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--pp-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.price-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--pp-ink);
  letter-spacing: -0.01em;
}
.price-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--pp-ink);
}
.price-num span {
  font-size: 13px;
  font-weight: 500;
  color: var(--pp-ink-3);
  letter-spacing: 0;
  margin-left: 4px;
}
.price-body {
  font-size: 13.5px;
  color: var(--pp-ink-3);
  line-height: 1.5;
  margin: 0 0 18px;
  min-height: 60px;
}
.price-card .btn { justify-content: center; width: 100%; }
.price-featured .btn-orange { box-shadow: 0 8px 20px rgba(212,4,74,.3); }
.price-foot {
  text-align: center;
  margin-top: 26px;
  color: var(--pp-ink-3);
  font-size: 14px;
}
.price-foot a { color: var(--pp-orange); font-weight: 600; }

@media (max-width: 980px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .price-grid { grid-template-columns: 1fr; }
}

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

.faq { padding: 80px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}
.faq-splat { margin-bottom: 6px; }
.faq-left p { color: var(--pp-ink-3); font-size: 14px; margin: 16px 0 20px; max-width: 28ch; }
.faq-avatars {
  display: flex;
  align-items: center;
  padding-left: 8px;
  margin-bottom: 8px;
}
.fav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: -8px;
  box-shadow: 0 0 0 2px #f5f5f2;
}
.fav-1 { background: linear-gradient(135deg, #ff7a9b, #7a0229); }
.fav-2 { background: linear-gradient(135deg, #8f7dff, #3e2dad); }
.fav-3 { background: linear-gradient(135deg, #34d07b, #0a6931); }
.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pp-ink);
  margin-left: 4px;
}

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--pp-line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  text-align: left;
  color: var(--pp-ink-3);
  transition: color .2s ease;
}
.faq-q:hover { color: var(--pp-ink); }
.faq-item[data-open="true"] .faq-q { color: var(--pp-ink); }
.faq-plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--pp-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--pp-ink);
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease;
}
.faq-item[data-open="true"] .faq-plus { transform: rotate(45deg); background: var(--pp-orange); color: #fff; box-shadow: none; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item[data-open="true"] .faq-a { max-height: 360px; }
.faq-a p {
  padding: 0 4px 22px;
  color: var(--pp-ink-3);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

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

.final-cta { padding: 40px 0 80px; }
.cta-panel {
  background: #faf9f5;
  border-radius: var(--radius-xl);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-title { max-width: 18ch; margin: 0 auto; }
.cta-sub { color: var(--pp-ink-3); font-size: 15.5px; margin: 16px auto 28px; max-width: 46ch; line-height: 1.55; }

.cta-avatars { position: absolute; inset: 0; pointer-events: none; }
.ca {
  position: absolute;
  width: 58px; height: 58px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fff, 0 10px 22px rgba(0,0,0,.08);
}
.ca-1 { top: 60px; left: 8%; background: linear-gradient(135deg, #34d07b, #0a6931); }
.ca-2 { top: 210px; left: 4%; background: linear-gradient(135deg, #8f7dff, #3e2dad); width: 48px; height: 48px; }
.ca-3 { bottom: 60px; left: 16%; background: linear-gradient(135deg, #ffdf5a, #c49a0b); width: 50px; height: 50px; }
.ca-4 { top: 30px; right: 18%; background: linear-gradient(135deg, #ff7a9b, #7a0229); width: 52px; height: 52px; }
.ca-5 { top: 180px; right: 6%; background: linear-gradient(135deg, #ffb7c0, #c13a63); }
.ca-6 { bottom: 60px; right: 14%; background: linear-gradient(135deg, #bfaaff, #6344c9); width: 50px; height: 50px; }
.ca-7 { bottom: 130px; left: 50%; transform: translateX(-50%) translateX(-230px); background: linear-gradient(135deg, #e4e3de, #9b9a93); width: 38px; height: 38px; }

@media (max-width: 720px) {
  .ca { display: none; }
  .ca-1, .ca-4, .ca-5 { display: block; opacity: .4; }
}

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

.footer { padding: 60px 0 30px; background: #fdfcf8; margin-top: 60px; border-top: 1px solid var(--pp-line); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 8px; }
.foot-col a { color: var(--pp-ink-3); font-size: 14px; transition: color .15s ease; }
.foot-col a:hover { color: var(--pp-ink); }
.foot-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--pp-ink-3);
  margin-bottom: 12px;
}
.foot-note { font-size: 14px; color: var(--pp-ink-2); margin: 0 0 6px; }
.foot-note.foot-dim { color: var(--pp-ink-4); font-size: 13px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid var(--pp-line);
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 14px;
}
.foot-legal { color: var(--pp-ink-4); font-size: 13px; }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
