:root {
  --pink: #d492c1;
  --purple: #a98ed6;
  --cream: #f4f0e6;
  --blue-light: #cae9fa;
  --blue: #98c1e3;
  --rose: #f0caca;
  --ink: #2f2b3a;
  --muted: #6c6677;
  --white: #fffdf9;
  --line: rgba(47, 43, 58, 0.12);
  --shadow: 0 24px 70px rgba(84, 67, 102, 0.13);
  --shadow-soft: 0 16px 35px rgba(84, 67, 102, 0.10);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

h1, h2, h3 {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(3.3rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 4.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 118px 0; position: relative; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.eyebrow {
  margin-bottom: 18px;
  color: #7b5a94;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(47, 43, 58, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
  background: #3d374b;
  box-shadow: 0 16px 30px rgba(47, 43, 58, 0.24);
}
.button-small { min-height: 42px; padding: 0 18px; font-size: 0.92rem; }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(47, 43, 58, 0.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-word {
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.brand-mark span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.brand-mark span:nth-child(1) { background: var(--pink); }
.brand-mark span:nth-child(2) { background: var(--purple); }
.brand-mark span:nth-child(3) { background: var(--blue); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.primary-nav > a:not(.button) {
  color: #514b5b;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.primary-nav > a:not(.button):hover { color: var(--ink); }
.nav-toggle { display: none; }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding-top: 85px;
  background:
    radial-gradient(circle at 10% 14%, rgba(212, 146, 193, 0.17), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(152, 193, 227, 0.24), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #fbf7f0 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 span {
  display: block;
  color: #9d71bd;
}
.hero-lede {
  max-width: 660px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  color: #5e5868;
  font-size: 0.9rem;
  font-weight: 700;
}
.trust-row span::before {
  content: "•";
  color: var(--pink);
  margin-right: 8px;
}
.hero-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.package-card {
  position: relative;
  width: min(390px, 84vw);
  filter: drop-shadow(0 30px 35px rgba(87, 62, 101, 0.16));
  transform: rotate(2deg);
}
.package-lid {
  height: 122px;
  border: 3px solid rgba(47, 43, 58, 0.85);
  border-bottom: 0;
  border-radius: 26px 26px 10px 10px;
  background: linear-gradient(145deg, #f7dbea, #e7d7f5);
  display: grid;
  place-items: center;
  transform: perspective(700px) rotateX(-10deg);
  transform-origin: bottom;
}
.mini-logo {
  font-family: "Poppins";
  font-size: 1.35rem;
  font-weight: 800;
}
.mini-dots { letter-spacing: 2px; color: #8e6bb0; margin-right: 5px; }
.package-body {
  position: relative;
  height: 290px;
  border: 3px solid rgba(47, 43, 58, 0.85);
  border-radius: 10px 10px 28px 28px;
  background: #fffdf9;
  overflow: hidden;
}
.package-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 146, 193, .24), transparent 28%),
    radial-gradient(circle at 78% 40%, rgba(152, 193, 227, .24), transparent 28%);
}
.item {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid rgba(47,43,58,.75);
  box-shadow: 0 10px 20px rgba(47,43,58,.08);
}
.item-tea {
  width: 118px;
  height: 118px;
  left: 30px;
  bottom: 34px;
  border-radius: 28px;
  background: var(--blue-light);
  font-size: 2.5rem;
  transform: rotate(-6deg);
}
.steam {
  position: absolute;
  top: 12px;
  font-size: 1.2rem;
  color: #6589a8;
}
.item-note {
  width: 150px;
  height: 116px;
  right: 28px;
  top: 42px;
  border-radius: 14px;
  background: #fff6dc;
  transform: rotate(7deg);
}
.item-note .heart { color: var(--pink); font-size: 1.6rem; }
.note-lines {
  width: 82px;
  height: 22px;
  border-top: 3px solid rgba(47,43,58,.45);
  border-bottom: 3px solid rgba(47,43,58,.45);
}
.item-comfort {
  width: 104px;
  height: 104px;
  right: 54px;
  bottom: 18px;
  border-radius: 50%;
  background: var(--rose);
  font-size: 2.5rem;
  transform: rotate(-5deg);
}
.item-snack {
  width: 74px;
  height: 92px;
  left: 164px;
  top: 32px;
  border-radius: 18px;
  background: #eadcf6;
  font-size: 2rem;
  transform: rotate(-8deg);
}
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(47,43,58,.08);
  border-radius: 18px;
  background: rgba(255,253,249,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}
.floating-card strong,
.floating-card small { display: block; }
.floating-card strong { font-family: "Poppins"; font-size: .96rem; }
.floating-card small { color: var(--muted); font-size: .76rem; }
.float-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #efe5f7;
  color: #7f61a0;
}
.float-card-one { left: 0; top: 20%; animation: float 5.4s ease-in-out infinite; }
.float-card-two { right: -6%; bottom: 14%; animation: float 5.8s ease-in-out .8s infinite; }
.art-spark { position: absolute; color: #9b75b8; font-size: 1.7rem; }
.art-spark-a { right: 8%; top: 13%; }
.art-spark-b { left: 9%; bottom: 19%; color: #7fb3d8; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
}
.hero-orb-one {
  width: 170px; height: 170px;
  background: rgba(212,146,193,.18);
  left: -65px; bottom: 12%;
}
.hero-orb-two {
  width: 220px; height: 220px;
  background: rgba(152,193,227,.18);
  right: -90px; top: 8%;
}

.intro-strip {
  background: var(--ink);
  color: white;
  padding: 42px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.intro-kicker { color: #d7cadf; font-weight: 700; }
.intro-statement {
  font-family: "Poppins";
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.2;
}

.section-heading { max-width: 770px; margin-bottom: 54px; }
.section-heading > p:last-child {
  margin-top: 20px;
  color: var(--muted);
  max-width: 640px;
}
.inside { background: #fffdf9; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(47,43,58,.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.feature-card h3 { margin-top: 40px; }
.feature-card p { margin-top: 10px; color: #5f5969; }
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  font-size: 1.4rem;
}
.feature-pink { background: #f8e6f0; }
.feature-purple { background: #eee7f7; }
.feature-blue { background: #e3f3fc; }
.feature-cream { background: #f8f3e8; }
.feature-rose { background: #f9e6e6; }
.feature-lavender { background: #eee8fa; }

.how {
  background: linear-gradient(145deg, #f7f0f6 0%, #eef7fb 100%);
}
.how-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 85px;
  align-items: start;
}
.how-copy {
  position: sticky;
  top: 135px;
}
.how-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
}
.how-copy .text-link { margin-top: 30px; }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(47,43,58,.14);
}
.step:first-child { padding-top: 0; }
.step-number {
  font-family: "Poppins";
  font-size: 1.1rem;
  font-weight: 800;
  color: #8c69a8;
}
.step p { margin-top: 9px; color: var(--muted); }

.mission { background: var(--cream); }
.mission-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  padding: 65px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.mission-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
}
.mission-visual { display: grid; place-items: center; }
.mission-circle {
  width: min(330px, 70vw);
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #f4dce9 0 17%, transparent 18%),
    radial-gradient(circle at 72% 30%, #dff0fb 0 15%, transparent 16%),
    radial-gradient(circle at 67% 74%, #e8def5 0 19%, transparent 20%),
    #faf3e9;
  border: 2px solid rgba(47,43,58,.12);
}
.mission-heart {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  font-size: 3.5rem;
  color: var(--pink);
}
.mission-word {
  position: absolute;
  font-family: "Poppins";
  font-weight: 700;
  font-size: .86rem;
  color: #5e5767;
}
.mission-word-one { left: 14%; top: 22%; }
.mission-word-two { right: 14%; top: 24%; }
.mission-word-three { right: 18%; bottom: 20%; }

.founders { background: #fffdf9; }
.founders-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.founders-copy p:not(.eyebrow) { margin-top: 22px; color: var(--muted); }
.founder-cards { display: grid; gap: 18px; }
.founder-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 10px 28px rgba(84,67,102,.06);
}
.founder-avatar {
  width: 90px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Poppins";
  font-weight: 800;
  font-size: 1.6rem;
}
.founder-avatar-one { background: #f5dfe9; color: #9b5e87; }
.founder-avatar-two { background: #e8e1f6; color: #705997; }
.founder-role {
  margin-top: 3px;
  color: #8a6d9f;
  font-weight: 800;
  font-size: .9rem;
}
.founder-card p:last-child { margin-top: 10px; color: var(--muted); font-size: .95rem; }

.faq { background: #f6f2ea; }
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.faq-intro p:not(.eyebrow) { margin-top: 20px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.faq-plus {
  font-size: 1.55rem;
  transition: transform 180ms ease;
}
.faq-question[aria-expanded="true"] .faq-plus { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}
.faq-answer > p {
  overflow: hidden;
  color: var(--muted);
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-answer > p { padding-bottom: 24px; }

.waitlist {
  background:
    radial-gradient(circle at 10% 20%, rgba(212,146,193,.18), transparent 28%),
    radial-gradient(circle at 90% 75%, rgba(152,193,227,.22), transparent 30%),
    #fffdf9;
}
.waitlist-card {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 65px;
  padding: 68px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.waitlist-copy p:not(.eyebrow) { margin-top: 22px; color: #d8d2df; }
.waitlist .eyebrow { color: #d9b7e3; }
.waitlist-form {
  align-self: center;
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}
.form-row {
  display: flex;
  gap: 10px;
}
.form-row input {
  min-width: 0;
  flex: 1;
  height: 54px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 0 18px;
  background: white;
  color: var(--ink);
  outline: none;
}
.form-row input:focus { box-shadow: 0 0 0 4px rgba(212,146,193,.25); }
.form-row .button { background: var(--pink); color: var(--ink); box-shadow: none; }
.form-row .button:hover { background: #e2a5cd; }
.form-note {
  margin-top: 12px;
  color: #c8c1cf;
  font-size: .8rem;
}
.form-status { min-height: 24px; margin-top: 8px; font-weight: 700; color: #e7c7ef; }

.site-footer {
  padding: 55px 0;
  background: #231f2d;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}
.footer-brand { margin-bottom: 12px; }
.footer-grid > div:first-child > p { color: #c9c2d0; }
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a { color: #ded8e3; text-decoration: none; font-weight: 700; }
.footer-links a:hover { color: white; }
.copyright {
  grid-column: 1 / -1;
  padding-top: 30px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #9f98a8;
  font-size: .85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero-grid,
  .how-grid,
  .mission-card,
  .founders-grid,
  .faq-grid,
  .waitlist-card {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 30px; }
  .hero-art { min-height: 510px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .how-copy { position: static; }
  .mission-card, .waitlist-card { padding: 48px; }
  .faq-grid { gap: 40px; }
  .float-card-one { left: 3%; }
  .float-card-two { right: 2%; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .section { padding: 82px 0; }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
  }
  .primary-nav {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,253,249,.98);
    box-shadow: var(--shadow-soft);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 10px 12px; }
  .primary-nav .button { margin-top: 6px; }

  .hero { min-height: auto; padding-top: 66px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-art { min-height: 430px; }
  .package-card { width: min(320px, 82vw); }
  .package-body { height: 245px; }
  .package-lid { height: 98px; }
  .item-tea { width: 96px; height: 96px; left: 20px; bottom: 27px; }
  .item-note { width: 126px; height: 95px; right: 20px; top: 34px; }
  .item-comfort { width: 84px; height: 84px; right: 42px; }
  .item-snack { width: 64px; height: 76px; left: 130px; top: 25px; }
  .floating-card { padding: 11px 12px; }
  .float-card-one { top: 12%; }
  .float-card-two { bottom: 8%; }
  .intro-grid { grid-template-columns: 1fr; gap: 10px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; }
  .mission-card, .waitlist-card { padding: 30px 24px; }
  .founder-card {
    grid-template-columns: 68px 1fr;
    padding: 22px;
  }
  .founder-avatar { width: 68px; }
  .form-row { flex-direction: column; }
  .form-row .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 480px) {
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .trust-row { gap: 8px 14px; }
  .hero-art { min-height: 390px; }
  .floating-card small { display: none; }
  .step { grid-template-columns: 54px 1fr; gap: 14px; }
  .founder-card { grid-template-columns: 1fr; }
}


/* Expanded founder story */
.about-founders {
  background:
    radial-gradient(circle at 8% 12%, rgba(212,146,193,.18), transparent 26%),
    radial-gradient(circle at 92% 72%, rgba(152,193,227,.18), transparent 28%),
    #fffdf9;
}
.about-hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 10px solid rgba(255,255,255,.82);
}
.about-photo-wrap::before {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  left: -28px; top: -28px;
  border-radius: 50%;
  background: rgba(169,142,214,.22);
  z-index: -1;
}
.about-photo-wrap::after {
  content: "";
  position: absolute;
  width: 160px; height: 160px;
  right: -30px; bottom: -34px;
  border-radius: 44% 56% 56% 44%;
  background: rgba(202,233,250,.5);
  z-index: -1;
}
.about-photo-tag {
  position: absolute;
  right: -20px;
  bottom: 34px;
  max-width: 210px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-soft);
  font-family: "Poppins";
  font-weight: 700;
  line-height: 1.25;
}
.about-story > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}
.about-lede {
  font-size: 1.14rem;
  color: var(--ink) !important;
}
.about-story blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 5px solid var(--pink);
  border-radius: 0 18px 18px 0;
  background: #f8e9f1;
  font-family: "Poppins";
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
}
.founder-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 70px;
}
.founder-profile {
  position: relative;
  min-height: 340px;
  padding: 34px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(47,43,58,.09);
}
.founder-profile-ashlie { background: linear-gradient(145deg, #f7e4ed, #fff8f5); }
.founder-profile-sara { background: linear-gradient(145deg, #e9e1f6, #edf7fc); }
.profile-number {
  position: absolute;
  right: 24px; top: 12px;
  font-family: "Poppins";
  font-size: 4.8rem;
  font-weight: 800;
  color: rgba(47,43,58,.07);
}
.profile-kicker {
  color: #806293;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .75rem;
}
.founder-profile h3 {
  margin-top: 42px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}
.founder-profile > p:last-child {
  margin-top: 18px;
  color: #5f5969;
}
.promise-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  margin-top: 24px;
  padding: 52px;
  border-radius: 30px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.promise-card .eyebrow { color: #d8b7e3; }
.promise-copy p { color: #d7d0dc; }
.promise-copy p + p { margin-top: 18px; }

@media (max-width: 980px) {
  .about-hero, .promise-card { grid-template-columns: 1fr; }
  .about-hero { gap: 46px; }
  .about-photo {
    aspect-ratio: 16 / 11;
    object-position: center 34%;
  }
  .about-photo-tag { right: 22px; }
}
@media (max-width: 760px) {
  .founder-profile-grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }
  .about-photo {
    aspect-ratio: 1 / 1.12;
    border-width: 7px;
  }
  .about-photo-tag {
    right: 12px;
    bottom: 18px;
    max-width: 175px;
    font-size: .86rem;
  }
  .founder-profile {
    min-height: auto;
    padding: 28px 24px;
  }
  .promise-card {
    padding: 34px 24px;
    gap: 24px;
  }
}
