@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,300..700,0..1,-50..200&display=swap");

:root {
  --navy: #06194b;
  --navy-soft: #16306b;
  --green: #09a85a;
  --green-dark: #008d49;
  --mint: #e9f8ee;
  --mint-strong: #c9f1d8;
  --sky: #dff3ff;
  --sky-strong: #aee1ff;
  --peach: #ffeadf;
  --peach-strong: #ffc9af;
  --ink-muted: #53617f;
  --line: #dfe7ef;
  --paper: #ffffff;
  --wash: #f7faf7;
  --lavender: #f4efff;
  --lavender-strong: #d8c8ff;
  --purple: #8a6df1;
  --yellow: #ffd96a;
  --yellow-soft: #fff3bd;
  --shadow-soft: 0 18px 55px rgba(6, 25, 75, 0.1);
  --shadow-card: 0 14px 36px rgba(6, 25, 75, 0.08);
  --shadow-neutral: 0 14px 30px rgba(6, 25, 75, 0.08);
  --shadow-green: 0 14px 28px rgba(9, 168, 90, 0.14);
  --shadow-blue: 0 14px 28px rgba(36, 106, 166, 0.12);
  --shadow-purple: 0 14px 28px rgba(138, 109, 241, 0.13);
  --shadow-peach: 0 14px 28px rgba(201, 95, 55, 0.12);
  --radius: 22px;
  color-scheme: light;
  font-family: "Baloo 2", ui-rounded, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--navy);
  background-color: #fff;
  background-image:
    linear-gradient(rgba(6, 25, 75, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 25, 75, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #ffffff 52%, #fbfcff 100%);
  background-size:
    44px 44px,
    44px 44px,
    auto;
  font-size: 16px;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.material-symbols-rounded {
  direction: ltr;
  display: inline-flex;
  flex-shrink: 0;
  font-family: "Material Symbols Rounded";
  font-feature-settings: "liga";
  font-variation-settings: "FILL" 0.12, "wght" 680, "GRAD" 20, "opsz" 40;
  font-size: 1em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
}

.site-header,
.section-shell,
.site-footer {
  width: min(1160px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 700;
}

.brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: var(--shadow-green);
}

.brand__text {
  font-size: clamp(1.45rem, 2.7vw, 2.55rem);
  letter-spacing: 0;
}

.brand__text span,
h1 em {
  color: var(--green);
  font-style: normal;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 9px;
  border: 1px solid transparent;
  padding: 0 24px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
  white-space: nowrap;
}

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

.button--ghost {
  color: var(--green-dark);
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 10px 26px rgba(9, 168, 90, 0.08);
}

.button--ghost:hover {
  background: var(--mint);
}

.button--primary {
  min-height: 60px;
  color: #fff;
  background: linear-gradient(180deg, #10b966 0%, #049c50 100%);
  box-shadow: 0 14px 28px rgba(6, 25, 75, 0.12), 0 10px 22px rgba(9, 168, 90, 0.16);
}

.button--primary:hover {
  box-shadow: 0 18px 34px rgba(6, 25, 75, 0.14), 0 12px 24px rgba(9, 168, 90, 0.2);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: 20px 0 32px;
}

.hero__copy {
  min-width: 0;
}

.eyebrow,
.small-tag {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2em 0;
  max-width: 100%;
  width: fit-content;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  padding: 7px 15px;
  font-size: 0.98rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0;
}

.small-tag {
  padding: 5px 12px;
  font-size: 0.78rem;
}

.eyebrow--purple {
  color: #6845c2;
  background: #ece4ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 600;
}

h1 {
  font-weight: 700;
  max-width: 500px;
  margin: 30px 0 22px;
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h1::first-line {
  letter-spacing: 0;
}

.hero__subhead {
  max-width: 620px;
  margin: -6px 0 14px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero__lead {
  max-width: 620px;
  color: var(--navy);
  font-size: clamp(1.1rem, 1.45vw, 1.32rem);
  line-height: 1.55;
}

.concept-mark {
  display: inline-block;
  margin: 0 0.08em;
  color: var(--green-dark);
  font-weight: 700;
  padding: 0 0.06em;
  white-space: nowrap;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(98px, 1fr));
  gap: clamp(12px, 2.6vw, 38px);
  padding: 34px 0 26px;
  margin: 0;
  list-style: none;
}

.hero-points li {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-points li:nth-child(2) .point-icon {
  --point-shadow: var(--shadow-blue);
  color: #246aa6;
  background: var(--sky);
  border-color: #c7e8fb;
}

.hero-points li:nth-child(3) .point-icon {
  --point-shadow: var(--shadow-purple);
  color: #6845c2;
  background: var(--lavender);
  border-color: var(--lavender-strong);
}

.hero-points li:nth-child(4) .point-icon {
  --point-shadow: var(--shadow-peach);
  color: #b85f40;
  background: var(--peach);
  border-color: var(--peach-strong);
}

.point-icon {
  --point-shadow: var(--shadow-green);
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint);
  border: 2px solid #d9f3e3;
  font-size: 1.72rem;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.54),
    var(--point-shadow);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  padding-top: 26px;
}

.hand-note {
  margin: 0;
  color: var(--purple);
  font-family: "Bradley Hand", "Comic Sans MS", "Segoe Print", cursive;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}

.hand-note--cta {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: none;
  font-size: 1.15rem;
  transform: rotate(-4deg);
  white-space: nowrap;
}

.cta-note__arrow {
  display: block;
  flex: 0 0 42px;
  width: 48px;
  height: 22px;
  overflow: visible;
  transform: rotate(2deg);
}

.cta-note__arrow-line,
.cta-note__arrow-head {
  fill: none;
  stroke: var(--purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(130px, 1fr);
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.phone-wrap {
  position: relative;
  justify-self: end;
}

.phone-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -8% 6% -8%;
  border-radius: 42px;
  background: rgba(6, 25, 75, 0.08);
  filter: blur(22px);
}

.phone {
  position: relative;
  width: min(390px, 76vw);
  aspect-ratio: 0.51;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(110deg, #111 0%, #3b3b3b 18%, #111 42%, #000 100%);
  box-shadow:
    inset 0 0 0 2px #0d0d0e,
    inset 0 0 0 5px #595959,
    0 18px 48px rgba(6, 25, 75, 0.18);
}

.phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 70%, #f7faf8 100%);
  padding: 18px 18px 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.phone__status,
.phone__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #071844;
  font-size: 0.76rem;
  font-weight: 700;
}

.phone__status-icons {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.phone__status-icons .material-symbols-rounded {
  font-size: 0.72rem;
}

.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 94px;
  height: 28px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #050505;
}

.phone__topbar {
  padding-top: 16px;
  font-size: 1.6rem;
}

.session-card {
  border: 1px solid #dde5ed;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  margin-top: 12px;
  box-shadow: 0 10px 22px rgba(6, 25, 75, 0.055);
}

.session-card--plain {
  padding: 6px 0 0;
  margin-top: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.session-card h2 {
  margin: 0 0 4px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.session-card h3 {
  margin: 0;
  font-size: 1rem;
}

.session-card p {
  margin: 0 0 3px;
  font-size: 0.86rem;
  font-weight: 600;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e0f3e8;
  color: #007744;
  padding: 4px 9px;
  font-size: 0.7rem;
  font-weight: 700;
}

.mini-pill.mini-pill--info {
  border: 1px solid #b8daf7;
  background: #dff0ff;
  color: #1769aa;
}

.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  margin: 18px 0 0;
  font-size: 2.1rem !important;
  line-height: 1;
  font-weight: 700 !important;
}

.price-label {
  color: var(--navy-soft);
}

.cost-list,
.story-rows {
  margin: 16px 0 0;
}

.cost-list div,
.story-rows div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}

.total-row,
.impact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e5ebf1;
  margin-top: 14px;
  padding-top: 14px;
  font-weight: 700;
}

.phone-button {
  width: 100%;
  min-height: 44px;
  margin-top: 20px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #11b967, #04994f);
  font-weight: 700;
}

.kitty-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  position: relative;
  padding-bottom: 34px;
}

.kitty-card img {
  width: 52px;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(9, 168, 90, 0.13);
}

.kitty-balance {
  font-size: 1.6rem !important;
  line-height: 1.05;
  font-weight: 700 !important;
}

.kitty-card footer {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.hand-note--phone {
  position: relative;
  display: block;
  max-width: 210px;
  padding: 0 0 70px;
  color: var(--purple);
  font-size: 1.28rem;
  transform: rotate(-2deg);
}

.phone-note__text {
  position: relative;
  z-index: 1;
  display: block;
}

.phone-note__rays {
  position: absolute;
  left: 8px;
  top: -86px;
  display: grid;
  gap: 12px;
}

.phone-note__rays span {
  display: block;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--purple);
  transform-origin: left center;
}

.phone-note__rays span:nth-child(1) {
  transform: rotate(-52deg);
}

.phone-note__rays span:nth-child(2) {
  transform: rotate(-18deg);
}

.phone-note__rays span:nth-child(3) {
  transform: rotate(18deg);
}

.phone-note__arrow {
  position: absolute;
  right: 42px;
  bottom: 14px;
  width: 74px;
  height: 64px;
  overflow: visible;
  transform: rotate(2deg);
}

.phone-note__arrow path {
  fill: none;
  stroke: var(--purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.community {
  padding: 34px 0 28px;
}

.how-it-works {
  padding: 14px 0 28px;
}

.section-card,
.waitlist-panel {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(224, 232, 238, 0.68);
  padding: clamp(26px, 4vw, 42px);
}

.section-card h2,
.section-heading h2,
.waitlist-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.feature-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  min-height: 190px;
  text-align: center;
  padding: 10px 14px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  max-width: 210px;
  color: var(--navy-soft);
  font-weight: 500;
}

.feature-illo {
  --feature-color: var(--green);
  --feature-soft: var(--mint);
  --feature-soft-strong: var(--mint-strong);
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 86px;
  margin-bottom: 2px;
  border: 2px solid rgba(6, 25, 75, 0.92);
  border-radius: 24px;
  color: var(--feature-color);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.28)),
    linear-gradient(135deg, var(--feature-soft), var(--feature-soft-strong));
  font-size: 2.7rem;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.32),
    8px 8px 0 color-mix(in srgb, var(--feature-color) 16%, transparent),
    0 14px 26px color-mix(in srgb, var(--feature-color) 12%, transparent);
}

.feature-illo::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--feature-color) 32%, #fff);
}

.feature-illo__main,
.feature-illo__badge {
  display: grid;
  place-items: center;
}

.feature-illo__main {
  color: var(--feature-color);
  font-size: 2.65rem;
  font-variation-settings: "FILL" 0.08, "wght" 700, "GRAD" 35, "opsz" 48;
}

.feature-illo__badge {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(6, 25, 75, 0.88);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  font-size: 1.18rem;
  font-variation-settings: "FILL" 0.12, "wght" 700, "GRAD" 20, "opsz" 32;
  box-shadow: 0 8px 16px color-mix(in srgb, var(--feature-color) 15%, transparent);
}

.feature-illo--kitty {
  --feature-color: var(--green-dark);
  --feature-soft: var(--mint);
  --feature-soft-strong: var(--yellow-soft);
}

.feature-illo--people {
  --feature-color: #246aa6;
  --feature-soft: var(--sky);
  --feature-soft-strong: var(--lavender);
}

.feature-illo--calendar {
  --feature-color: #d58a00;
  --feature-soft: #fff9db;
  --feature-soft-strong: var(--yellow-soft);
}

.feature-illo--basket {
  --feature-color: #c95f37;
  --feature-soft: var(--peach);
  --feature-soft-strong: #fff7df;
}

.story {
  padding: 18px 0 20px;
}

.section-heading {
  margin: 0 0 20px 34px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--navy-soft);
  font-size: 1.08rem;
  font-weight: 600;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.94fr 0.82fr;
  gap: 28px;
}

.story-card {
  min-width: 0;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.story-card h3 {
  font-size: 1.16rem;
}

.story-card--breakdown {
  padding-top: 0;
  overflow: hidden;
}

.story-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 -20px 18px;
  padding: 18px 20px;
  background: linear-gradient(90deg, #f4fbf5, #e0f4e8 58%, var(--yellow-soft));
}

.story-card__top h3 {
  margin: 0;
}

.story-card__top span {
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.story-subtext {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 14px;
  margin-top: -2px;
  color: var(--navy);
  font-weight: 500;
}

.story-subtext .material-symbols-rounded {
  color: #c95f37;
  font-size: 1.05rem;
}

.impact-row {
  margin-top: 20px;
}

.impact-row span,
.impact-row small {
  display: block;
}

.impact-row small {
  margin-top: 6px;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.impact-row strong {
  color: var(--green);
  font-size: 1.24rem;
  white-space: nowrap;
}

.coverage-list {
  display: grid;
}

.coverage-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid #edf1f5;
}

.coverage-item:last-child {
  border-bottom: 0;
}

.coverage-item p {
  margin: 4px 0 0;
  color: var(--navy-soft);
  font-weight: 500;
}

.coverage-item b {
  color: var(--green);
  white-space: nowrap;
}

.coverage-icon {
  --coverage-shadow: var(--shadow-neutral);
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(6, 25, 75, 0.08);
  font-size: 1.82rem;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.42),
    var(--coverage-shadow);
}

.coverage-icon--green,
.coverage-icon--mint {
  --coverage-shadow: var(--shadow-green);
  color: var(--green-dark);
  background: linear-gradient(135deg, var(--mint), var(--mint-strong));
  border-color: #bdeaca;
}

.coverage-icon--mint {
  color: var(--green);
  background: linear-gradient(135deg, var(--mint-strong), var(--yellow-soft));
  border-color: #c9ebbd;
}

.coverage-icon--yellow {
  --coverage-shadow: var(--shadow-peach);
  color: #a64e2e;
  background: linear-gradient(135deg, var(--yellow-soft), var(--peach));
  border-color: var(--peach-strong);
}

.story-card--extras {
  background: rgba(255, 255, 255, 0.94);
}

.story-card--extras .small-tag {
  padding: 6px 14px;
  font-size: 0.86rem;
}

.story-card--extras h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.story-card--extras p:not(.small-tag) {
  margin-top: 18px;
  color: var(--navy);
  font-weight: 600;
}

.extras-list {
  display: grid;
  gap: 14px;
  padding: 8px 0 0;
  margin: 0;
  list-style: none;
  font-weight: 500;
}

.extras-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.extras-list span {
  --extras-shadow: var(--shadow-purple);
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #6845c2;
  background: rgba(255, 255, 255, 0.76);
  font-size: 1.22rem;
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.44),
    var(--extras-shadow);
}

.extras-list li:nth-child(1) span {
  --extras-shadow: var(--shadow-peach);
  color: #c95f37;
  background: var(--peach);
}

.extras-list li:nth-child(2) span {
  --extras-shadow: var(--shadow-blue);
  color: #246aa6;
  background: var(--sky);
}

.extras-list li:nth-child(3) span {
  --extras-shadow: var(--shadow-green);
  color: var(--green-dark);
  background: var(--mint);
}

.extras-list li:nth-child(4) span {
  --extras-shadow: 0 14px 28px rgba(213, 138, 0, 0.11);
  color: #d58a00;
  background: var(--yellow-soft);
}

.waitlist {
  padding: 0 0 24px;
}

.waitlist-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 243, 255, 0.9) 62%, rgba(255, 255, 255, 0.94) 100%);
}

.waitlist-copy p:not(.eyebrow) {
  max-width: 360px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
}

.waitlist-copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 0.7em;
}

.trust-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 28px 0 0;
  margin: 0;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
}

.trust-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-points span {
  --trust-shadow: var(--shadow-purple);
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #6845c2;
  border: 2px solid #8a6df1;
  font-size: 1.18rem;
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.42),
    var(--trust-shadow);
}

.trust-points li:nth-child(1) span {
  --trust-shadow: var(--shadow-green);
  color: var(--green-dark);
  border-color: var(--green);
  background: var(--mint);
}

.trust-points li:nth-child(2) span {
  --trust-shadow: var(--shadow-blue);
  color: #246aa6;
  border-color: var(--sky-strong);
  background: var(--sky);
}

.trust-points li:nth-child(3) span {
  --trust-shadow: var(--shadow-peach);
  color: #c95f37;
  border-color: var(--peach-strong);
  background: var(--peach);
}

.waitlist-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9e1eb;
  border-radius: 7px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  padding: 13px 16px;
  outline: none;
  box-shadow: 0 8px 18px rgba(6, 25, 75, 0.035);
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease;
}

select {
  appearance: none;
  cursor: pointer;
  padding-right: 50px;
  background-image:
    url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 7 9 11.5 13.5 7' stroke='%2306194B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(90deg, transparent calc(100% - 46px), rgba(233, 248, 238, 0.78) calc(100% - 46px));
  background-position:
    right 15px center,
    center;
  background-repeat: no-repeat;
  background-size:
    18px 18px,
    100% 100%;
}

select:hover {
  border-color: #b8d7c6;
}

textarea {
  resize: vertical;
  min-height: 84px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(9, 168, 90, 0.14);
}

::placeholder {
  color: #667592;
}

.waitlist-form .button {
  width: 100%;
}

.form-small,
.form-message {
  margin: 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message {
  min-height: 1.4em;
  color: var(--green-dark);
  font-weight: 700;
}

.submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  border: 0;
}

#waitlist .waitlist-panel #mlb2-41881049.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedSubmit
  button.primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 60px !important;
  border: 1px solid transparent !important;
  border-radius: 9px !important;
  color: #fff !important;
  background: linear-gradient(180deg, #10b966 0%, #049c50 100%) !important;
  box-shadow: 0 14px 28px rgba(6, 25, 75, 0.12), 0 10px 22px rgba(9, 168, 90, 0.16) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  padding: 0 24px !important;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease !important;
}

#waitlist .waitlist-panel #mlb2-41881049.ml-form-embedContainer
  .ml-form-embedWrapper
  .ml-form-embedBody
  .ml-form-embedSubmit
  button.primary:hover {
  background: linear-gradient(180deg, #10b966 0%, #049c50 100%) !important;
  box-shadow: 0 18px 34px rgba(6, 25, 75, 0.14), 0 12px 24px rgba(9, 168, 90, 0.2) !important;
  transform: translateY(-1px);
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 12px 0 28px;
  color: var(--navy);
}

.site-footer p {
  margin: 0;
  color: var(--navy-soft);
  font-weight: 700;
  text-align: center;
}

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

  .hero__visual {
    grid-template-columns: minmax(280px, 390px) minmax(120px, 0.5fr);
    justify-content: start;
  }

  .phone-wrap {
    justify-self: start;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-card--extras {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    min-height: 78px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__text {
    font-size: 1.55rem;
  }

  .site-header .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  h1 {
    margin-top: 24px;
    font-size: clamp(2.65rem, 12vw, 4.1rem);
  }

  .hero-points,
  .feature-grid,
  .story-grid,
  .waitlist-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 24px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hand-note--cta {
    display: none;
  }

  .hero__visual {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .phone-wrap {
    justify-self: center;
  }

  .hand-note--phone {
    display: none;
  }

  .section-card,
  .waitlist-panel {
    padding: 24px 18px;
  }

  .feature-card {
    min-height: 0;
    padding: 12px 0 18px;
  }

  .section-heading {
    margin-left: 0;
  }

  .story-card {
    min-height: 0;
  }

  .trust-points {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 18px;
  }

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

  .site-footer {
    justify-items: center;
    text-align: center;
  }

}

@media (max-width: 460px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 22px, 430px);
  }

  .site-header .button {
    padding: 0 11px;
    font-size: 0.82rem;
  }

  .brand {
    gap: 9px;
  }

  .brand__text {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-points {
    gap: 14px 10px;
  }

  .hero-points li {
    font-size: 0.82rem;
  }

  .button--primary {
    min-height: 56px;
    padding-inline: 18px;
  }

  .phone {
    width: min(360px, 94vw);
    border-radius: 38px;
    padding: 10px;
  }

  .phone__screen {
    border-radius: 29px;
    padding: 16px 14px 14px;
  }

  .session-card {
    padding: 13px;
  }

  .kitty-card {
    grid-template-columns: 44px 1fr auto;
  }

  .kitty-card img {
    width: 44px;
  }

  .story-card__top,
  .cost-list div,
  .story-rows div,
  .total-row,
  .impact-row {
    gap: 8px;
  }

  .coverage-item {
    grid-template-columns: 48px 1fr;
  }

  .coverage-item b {
    grid-column: 2;
  }
}
