:root {
  --navy: #003b86;
  --navy-dark: #001f4d;
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --cream: #f4efe6;
  --white: #ffffff;
  --ink: #1c1917;
  --muted: #5c6478;
  --line: #e7e5e4;
  --shadow: 0 18px 50px rgba(0, 31, 77, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --font-sans: "DM Sans", "Segoe UI", Arial, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --peppi-purple: #7c3aed;
  --peppi-purple-dark: #5b21b6;
  --peppi-lavender: #f3f0ff;
  --peppi-lavender-deep: #ede9fe;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--navy-dark);
  line-height: 1.15;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
}

h1 em {
  font-style: italic;
  color: var(--navy);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

p {
  margin: 0 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(201, 162, 39, 0.36);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(0, 59, 134, 0.2);
  color: var(--navy-dark);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.6);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 59, 134, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 60px;
  padding: 12px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px 22px;
}

.site-nav-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy-dark);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.site-nav-cta {
  margin-left: 4px;
  white-space: nowrap;
}

.site-nav-cta.is-active {
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.38);
}

.site-nav-link--peppi .nav-heart {
  font-size: 0.85em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid rgba(0, 59, 134, 0.12);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

/* Header logo */
.logo-lockup {
  display: inline-flex;
  align-items: center;
}

.logo-hdr {
  gap: 8px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.95;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
}

.logo-wordmark {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy-dark);
  white-space: nowrap;
}

.logo-subtitle {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--muted);
  white-space: nowrap;
}

.hero {
  padding: 56px 0 72px;
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 162, 39, 0.18), transparent 32%),
    radial-gradient(circle at 10% 80%, rgba(0, 59, 134, 0.08), transparent 28%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.hero-note {
  font-size: 14px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.hero-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 240px;
}

.hero-card strong {
  color: var(--navy-dark);
  font-size: 15px;
}

.hero-card span:last-child {
  font-size: 13px;
  color: var(--muted);
}

.card-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.hero-card-1 {
  top: 12px;
  left: 8%;
}

.hero-card-2 {
  top: 118px;
  right: 0;
}

.hero-card-3 {
  bottom: 8px;
  left: 18%;
}

.pain,
.credibility,
.validation,
.kiln-spotlight,
.built-for,
.features,
.screenshots,
.meet-peppi,
.pricing-indicative,
.faq,
.programme,
.apply {
  padding: 72px 0;
}

#features,
#peppi,
#pricing,
#programme,
#faq,
#apply {
  scroll-margin-top: 72px;
}

.credibility {
  padding: 56px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.credibility-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.credibility-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.validation {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.validation-inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.validation-copy p {
  color: var(--muted);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-badges li {
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
  box-shadow: 0 4px 14px rgba(0, 31, 77, 0.06);
}

.trust-badges li::before {
  content: "✓ ";
  color: var(--gold);
}

.section-head-center {
  text-align: center;
  margin-inline: auto;
}

.pain {
  background: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.pain-card {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pain-card p,
.section-lead,
.apply-copy p {
  color: var(--muted);
}

.features {
  background:
    linear-gradient(180deg, var(--white) 0%, #f8f5ef 100%);
}

.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-lead {
  font-size: 1.05rem;
}

.feature-coverage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-group {
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-group:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-group h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
  color: var(--navy-dark);
}

.feature-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-group li {
  position: relative;
  padding: 7px 0 7px 24px;
  font-size: 15px;
  color: var(--muted);
  border-bottom: 1px solid rgba(231, 229, 228, 0.7);
}

.feature-group li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-group li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.feature-group--highlight {
  border-color: rgba(201, 162, 39, 0.45);
  background: linear-gradient(180deg, #fffdf6 0%, var(--white) 100%);
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.12);
}

.kiln-spotlight {
  background: var(--navy-dark);
  color: var(--white);
}

.kiln-spotlight h2,
.kiln-spotlight h3 {
  color: var(--white);
}

.kiln-spotlight-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.kiln-spotlight-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.kiln-spotlight-copy .section-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.kiln-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.kiln-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.kiln-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.kiln-spotlight-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  text-align: center;
}

.kiln-spotlight-icon {
  font-size: 48px;
  margin-bottom: 14px;
}

.kiln-spotlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.built-for {
  background: var(--white);
}

.built-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.built-for-card {
  padding: 22px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.built-for-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.limited-banner-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dark);
}

.limited-banner-title {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--navy-dark);
}

.limited-banner-text {
  margin: 0;
  font-size: 15px;
  color: var(--navy-dark);
  opacity: 0.88;
}

.programme-perks-label {
  margin: 18px 0 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.screenshots {
  background: linear-gradient(180deg, #f8f5ef 0%, var(--cream) 100%);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 40px;
}

.screenshot-grid > * {
  min-width: 0;
}

.screenshot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.screenshot-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.28);
}

.screenshot-frame--live {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 31, 77, 0.1);
  border-radius: var(--radius);
  background: #eceff4;
  box-shadow: 0 16px 36px rgba(0, 31, 77, 0.1);
  display: block;
  aspect-ratio: 1180 / 750;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.screenshot-frame--live img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.screenshot-card:hover .screenshot-frame--live {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(0, 31, 77, 0.14);
}

.screenshot-card--featured .screenshot-frame--live {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 22px 48px rgba(0, 31, 77, 0.16);
}

.screenshot-card--featured:hover .screenshot-frame--live {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 58px rgba(0, 31, 77, 0.2);
  border-color: rgba(201, 162, 39, 0.55);
}

.faq {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-inner {
  max-width: 720px;
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px 24px;
  background: var(--cream);
  border: 1px solid rgba(0, 59, 134, 0.08);
  border-radius: var(--radius);
}

.faq-item--highlight {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.faq-strong {
  font-weight: 700;
  color: var(--navy-dark) !important;
}

.apply-ideal,
.apply-trust {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.apply-ideal h2,
.apply-trust h2 {
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.apply-ideal-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.apply-ideal-list li {
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
}

.apply-trust p {
  color: var(--muted);
  font-size: 1.02rem;
}

.apply-trust p:last-child {
  margin-bottom: 0;
}

.apply .container > .apply-grid {
  margin-top: 8px;
}

.apply-contact {
  margin: 16px 0 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-dark);
}

.apply-contact a {
  font-weight: 700;
  word-break: break-word;
}

.screenshot-card h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--navy-dark);
}

.screenshot-card p {
  margin: 0;
  max-width: 30ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (min-width: 901px) {
  .screenshot-card--featured {
    margin-top: -6px;
  }

  .screenshot-card--featured h3 {
    font-size: 1.12rem;
  }
}

.programme {
  background: var(--navy-dark);
  color: var(--white);
}

.programme h2,
.programme h3 {
  color: var(--white);
}

.limited-banner {
  text-align: center;
  padding: 22px 28px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.35);
}

.programme-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.programme-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88) !important;
  font-style: italic;
}

.programme-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.programme-perks {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.programme-perks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.programme-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.programme-return {
  font-size: 15px;
  font-style: italic;
}

.programme-roadmap-note {
  margin: 18px 0 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
}

.programme-fit {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.programme-fit ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.programme-fit li {
  margin-bottom: 8px;
}

/* Founding programme — redesigned */
.founders-hero {
  text-align: center;
  padding: 36px 28px 32px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.35);
  color: var(--navy-dark);
}

.founders-hero-title {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  line-height: 1.15;
  color: var(--navy-dark);
}

.founders-hero-lead {
  margin: 0 auto 24px;
  max-width: 540px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--navy-dark);
  opacity: 0.92;
}

.founders-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.founders-places-pill {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 31, 77, 0.12);
  border: 1px solid rgba(0, 31, 77, 0.15);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
}

.founders-urgency {
  margin: 0 auto;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy-dark);
  opacity: 0.88;
}

.founders-story {
  text-align: center;
  margin-bottom: 48px;
}

.founders-story h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  margin: 0 0 14px;
}

.founders-story p {
  max-width: 680px;
  margin: 0 auto 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
}

.founders-block {
  margin-bottom: 48px;
}

.founders-block h3 {
  margin: 8px 0 22px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.eyebrow--light {
  color: var(--gold-light) !important;
}

.founders-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.founders-benefit-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.founders-benefit-card--wide {
  grid-column: 1 / -1;
}

.founders-benefit-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  line-height: 1;
}

.founders-benefit-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--white);
}

.founders-benefit-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

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

.founders-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.founders-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.founders-process {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 480px;
}

.founders-process li {
  position: relative;
  padding: 0 0 24px 28px;
  border-left: 2px solid rgba(201, 162, 39, 0.4);
  margin-left: 6px;
}

.founders-process li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.founders-process li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.25);
}

.founders-process strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: var(--white);
}

.founders-process span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

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

.founders-fit-grid li {
  position: relative;
  padding: 14px 14px 14px 36px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.founders-fit-grid li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--gold-light);
  font-weight: 700;
}

.founders-slots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.founders-slot {
  padding: 16px 10px;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.founders-slot--filled {
  border-style: solid;
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(201, 162, 39, 0.12);
}

.founders-slot-num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.founders-slot strong {
  font-size: 14px;
  color: var(--white);
}

.founders-slot--filled strong {
  color: var(--gold-light);
}

.founders-promise {
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.founders-quote {
  margin: 0 0 48px;
  padding: 28px 32px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.founders-quote p {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.founders-quote footer {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
}

.founders-cta-block {
  text-align: center;
  padding-top: 8px;
}

.founders-cta-block h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin: 0 auto 8px;
  max-width: 640px;
  line-height: 1.3;
}

.founders-cta-block p {
  max-width: 480px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.78);
}

.founders-intro-pricing {
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.founders-intro-lead {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.6;
}

.founders-pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.founders-pricing-tier {
  padding: 20px 18px;
  text-align: center;
  border-radius: var(--radius-sm);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.28);
}

.founders-pricing-tier-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.founders-pricing-tier strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 4px;
}

.founders-pricing-tier > span:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.founders-intro-after {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.founders-intro-terms {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.founders-intro-terms li {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
}

.founders-why-copy {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
}

.founders-slot-discount {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0.9;
}

.pricing-indicative {
  background: var(--white);
}

.pricing-badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 16px;
  background: rgba(0, 59, 134, 0.06);
  border: 1px solid rgba(0, 59, 134, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
  align-items: stretch;
}

.pricing-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pricing-tier-featured {
  background: var(--white);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow);
}

.pricing-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-dark);
  white-space: nowrap;
}

.pricing-tier h3 {
  margin-bottom: 10px;
}

.pricing-from {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--muted);
}

.pricing-from span {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.pricing-tagline {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--muted);
  flex-grow: 0;
}

.pricing-includes-label {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.pricing-includes {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.pricing-includes li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}

.pricing-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-founder-banner {
  margin-top: 40px;
  padding: 36px 32px;
  text-align: center;
  background: var(--navy-dark);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 31, 77, 0.2);
}

.pricing-founder-banner h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.pricing-founder-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.pricing-founder-perks li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.pricing-founder-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.pricing-founder-note {
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-founder-banner .btn {
  margin-top: 4px;
}

.trust-limit {
  margin: 24px 0 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-limit h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.trust-limit p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.apply-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.apply-grid > * {
  min-width: 0;
}

.apply-review {
  padding: 14px 16px;
  background: rgba(0, 59, 134, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: var(--navy-dark);
}

.apply-privacy {
  font-size: 14px;
}

.apply-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: #fafaf9;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 59, 134, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.hp {
  display: none;
}

.form-success {
  padding: 40px 28px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.18);
  color: var(--navy-dark);
  font-size: 28px;
  font-weight: 700;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--muted);
}

.site-footer {
  padding: 40px 0 48px;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.footer-copy {
  margin: 0 0 14px;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-nav a,
.footer-link-btn {
  color: var(--gold-light);
  text-decoration: none;
  background: none;
  border: none;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

.footer-nav a:hover,
.footer-link-btn:hover {
  text-decoration: underline;
}

.footer-nav-sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.footer-tag {
  margin: 0 0 8px;
  font-size: 15px;
}

.footer-badge {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.55);
}

/* Legal pages */
.legal-page {
  padding: 48px 0 72px;
  background: var(--cream);
}

.legal-wrap {
  max-width: 720px;
}

.legal-updated {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal-page h1 {
  margin-bottom: 20px;
}

.legal-page h2 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.legal-page a {
  color: var(--peppi-purple);
  font-weight: 600;
}

/* —— Contact page —— */
.contact-page {
  padding: 48px 0 80px;
}

.contact-wrap {
  max-width: 1040px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px 48px;
  align-items: start;
  margin-top: 8px;
}

.contact-intro h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--navy-dark);
  line-height: 1.12;
}

.contact-lead {
  margin: 0 0 20px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-points {
  margin: 0 0 24px;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact-points li + li {
  margin-top: 8px;
}

.contact-founder-note {
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy-dark);
  background: var(--peppi-lavender);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.contact-founder-note a {
  color: var(--peppi-purple);
  font-weight: 600;
}

.contact-form {
  margin: 0;
}

.site-nav--compact {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.legal-back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
}

.legal-back:hover {
  text-decoration: underline;
}

/* Cookie banner & modal */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 16px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(0, 31, 77, 0.1);
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner-text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-modal[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 77, 0.45);
}

.cookie-modal-panel {
  position: relative;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-modal-panel h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.cookie-modal-lead {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}

.cookie-category {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.cookie-category p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-category-head label {
  font-weight: 600;
  color: var(--navy-dark);
}

.cookie-always {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.cookie-toggle {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

body.cookie-modal-open {
  overflow: hidden;
}

.logo-hdr--footer {
  justify-content: center;
  margin: 0 auto 14px;
}

.logo-hdr--footer .logo-wordmark {
  color: var(--white);
}

.logo-hdr--footer .logo-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact {
  margin: 0 0 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact a {
  color: var(--gold-light);
  font-weight: 600;
  word-break: break-word;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(244, 239, 230, 0.98);
    border-bottom: 1px solid rgba(0, 59, 134, 0.1);
    box-shadow: 0 16px 32px rgba(0, 31, 77, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav-link {
    padding: 12px 4px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .site-nav-link:hover,
  .site-nav-link.is-active {
    border-bottom: none;
    border-left-color: var(--gold);
    padding-left: 10px;
  }

  .site-nav-cta {
    margin: 10px 0 0;
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .kiln-spotlight-grid,
  .programme-grid,
  .apply-grid,
  .pain-grid,
  .feature-coverage,
  .screenshot-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .screenshot-card--featured {
    margin-top: 0;
  }

  .screenshot-card:hover .screenshot-frame--live,
  .screenshot-card--featured:hover .screenshot-frame--live {
    transform: none;
  }

  .hero-visual {
    min-height: 280px;
    margin-top: 8px;
  }

  .hero-card {
    max-width: min(240px, 46vw);
    padding: 14px 16px;
  }

  .hero-card-1 {
    left: 0;
  }

  .hero-card-2 {
    right: 0;
  }

  .hero-card-3 {
    left: 10%;
  }

  .built-for-grid {
    grid-template-columns: 1fr;
  }

  .apply-form {
    padding: 22px 18px;
  }

  .faq-item {
    padding: 18px 16px;
  }

  .pricing-tier {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav-sep {
    display: none;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }

  .apply-ideal-list li {
    font-size: 13px;
    padding: 8px 12px;
  }

  .limited-banner {
    padding: 18px 20px;
  }

  .founders-hero {
    padding: 28px 20px 24px;
    margin-bottom: 36px;
  }

  .founders-benefits-grid,
  .founders-fit-grid,
  .founders-slots-grid,
  .founders-pricing-tiers {
    grid-template-columns: 1fr;
  }

  .founders-benefit-card--wide {
    grid-column: auto;
  }

  .founders-quote {
    padding: 22px 20px;
  }
}

/* —— Meet Peppu (single section) —— */
.meet-peppi {
  padding: 72px 0 80px;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(167, 139, 250, 0.14), transparent),
    linear-gradient(180deg, #faf8ff 0%, var(--peppi-lavender) 55%, var(--white) 100%);
}

.meet-peppi-hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px 48px;
  align-items: center;
  margin-bottom: 64px;
}

.meet-peppi-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--peppi-purple);
  background: var(--white);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;
}

.meet-peppi-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: var(--navy-dark);
  line-height: 1.12;
}

.meet-peppi-accent {
  color: var(--peppi-purple);
}

.meet-peppi-lead {
  margin: 0 0 24px;
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--muted);
}

.meet-peppi-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.btn-meet-peppi {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--peppi-purple) 0%, #6d28d9 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-meet-peppi:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(124, 58, 237, 0.32);
}

.meet-peppi-link {
  font-weight: 600;
  color: var(--peppi-purple);
  text-decoration: none;
}

.meet-peppi-link:hover {
  text-decoration: underline;
}

.meet-peppi-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}

.meet-peppi-float {
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.meet-peppi-float-stage {
  display: flex;
  align-items: flex-end;
  gap: 0;
  width: min(100%, 560px);
  margin: 0 auto;
}

.meet-peppi-character {
  flex: 0 0 42%;
  width: 42%;
  max-width: 240px;
  height: auto;
  display: block;
  margin: 0 -8px 0 0;
  background: transparent;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.meet-peppi-speech {
  flex: 1 1 58%;
  min-width: 0;
  margin-bottom: 12%;
  padding: 16px 18px 14px;
  background: #fff;
  border: 2px solid #7c3aed;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(91, 33, 182, 0.12);
  text-align: left;
  position: relative;
}

.meet-peppi-speech::before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 28%;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 2px solid #7c3aed;
  border-bottom: 2px solid #7c3aed;
  transform: rotate(45deg);
}

.meet-peppi-speech-kicker {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  color: #6d28d9;
}

.meet-peppi-speech-kicker strong {
  font-weight: 800;
}

.meet-peppi-speech-text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  line-height: 1.5;
  color: #4b5563;
}

.meet-peppi-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.meet-peppi-checklist li {
  font-size: 14px;
  font-weight: 600;
  color: var(--peppi-purple-dark);
}

.meet-peppi-checklist li::before {
  content: "✓ ";
  color: var(--peppi-purple);
}

.meet-peppi-capabilities-title {
  margin: 0 0 32px;
  text-align: center;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--navy-dark);
}

.meet-peppi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.meet-peppi-card {
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 31, 77, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.meet-peppi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(124, 58, 237, 0.1);
}

.meet-peppi-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  font-size: 22px;
  border-radius: 50%;
  background: var(--peppi-lavender);
}

.meet-peppi-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--navy-dark);
}

.meet-peppi-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .meet-peppi-hero {
    grid-template-columns: 1fr;
  }

  .meet-peppi-visual {
    order: -1;
  }

  .meet-peppi-float-stage {
    width: min(100%, 480px);
  }

  .meet-peppi-character {
    max-width: 200px;
  }

  .meet-peppi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .meet-peppi {
    padding: 56px 0 64px;
  }

  .meet-peppi-float-stage {
    flex-direction: column;
    align-items: center;
    width: min(100%, 360px);
  }

  .meet-peppi-character {
    flex: none;
    width: min(72%, 220px);
    max-width: 220px;
    margin: 0 0 -12px;
  }

  .meet-peppi-speech {
    width: 100%;
    margin-bottom: 0;
  }

  .meet-peppi-speech::before {
    left: 22%;
    bottom: auto;
    top: -9px;
    transform: rotate(135deg);
  }

  .meet-peppi-grid {
    grid-template-columns: 1fr;
  }
}
