:root {
  --paper: #f5f2eb;
  --ink: #12120f;
  --muted: #686861;
  --line: rgba(18, 18, 15, 0.18);
  --coral: #ff5a3c;
  --coral-dark: #d93c22;
  --acid: #dff533;
  --white: #fffef9;
  --display: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  letter-spacing: 0;
  overflow-x: hidden;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { letter-spacing: 0; }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: background .25s ease, color .25s ease, height .25s ease;
}
.site-header.scrolled {
  height: 64px;
  color: var(--ink);
  background: rgba(245,242,235,.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-size: 20px; font-weight: 800; }
.brand-mark { width: 22px; height: 20px; display: flex; align-items: flex-end; gap: 2px; }
.brand-mark span { width: 6px; background: currentColor; border-radius: 1px; }
.brand-mark span:nth-child(1) { height: 9px; }
.brand-mark span:nth-child(2) { height: 19px; }
.brand-mark span:nth-child(3) { height: 14px; }
.desktop-nav { display: flex; gap: 32px; font-size: 13px; font-weight: 600; }
.desktop-nav a { opacity: .78; transition: opacity .2s ease; }
.desktop-nav a:hover { opacity: 1; }
.header-cta {
  justify-self: end;
  color: var(--ink);
  background: var(--acid);
  border: 0;
  border-radius: 2px;
  padding: 11px 15px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 36%; filter: saturate(.72) contrast(1.04); animation: heroScale 1.4s cubic-bezier(.2,.75,.25,1) both; }
.hero-shade { background: linear-gradient(90deg, rgba(8,8,6,.87) 0%, rgba(8,8,6,.57) 48%, rgba(8,8,6,.05) 78%), linear-gradient(0deg, rgba(8,8,6,.66), transparent 38%); }
.hero-copy { position: relative; z-index: 2; width: min(760px, 86vw); margin: 0 0 clamp(66px, 9vh, 110px) clamp(20px, 7vw, 112px); }
.eyebrow { margin: 0 0 22px; font: 500 11px/1.4 var(--mono); letter-spacing: 0; }
.hero h1 { margin: 0; font-size: clamp(66px, 11vw, 150px); line-height: .82; letter-spacing: 0; font-weight: 800; }
.hero-statement { margin: 24px 0 0; font-size: clamp(31px, 4.1vw, 62px); line-height: 1.02; letter-spacing: 0; font-weight: 500; }
.hero-description { max-width: 560px; margin: 25px 0 0; color: rgba(255,255,255,.74); font-size: clamp(15px, 1.25vw, 19px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 31px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; border: 0; border-radius: 2px; padding: 0 20px; cursor: pointer; font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--coral); }
.button-primary:hover { background: var(--coral-dark); }
.button-quiet { color: var(--white); border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.hero-status { position: absolute; z-index: 2; right: clamp(20px, 4vw, 64px); bottom: 31px; display: flex; gap: 24px; font: 400 10px var(--mono); }
.hero-status span { display: flex; align-items: center; gap: 8px; }
.pulse { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 0 rgba(223,245,51,.6); animation: pulse 1.8s infinite; }
.reveal { animation: rise .8s cubic-bezier(.2,.7,.25,1) both; }
.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
.reveal:nth-child(4) { animation-delay: .24s; }
.reveal:nth-child(5) { animation-delay: .32s; }

.signal-strip { min-height: 68px; padding: 0 clamp(20px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 24px; overflow: hidden; color: var(--white); background: var(--coral); }
.signal-strip p { margin: 0; white-space: nowrap; font: 500 11px var(--mono); }
.signal-strip span { color: rgba(255,255,255,.55); }

.product-section, .steps-section, .faq-section { padding: clamp(88px, 12vw, 170px) clamp(20px, 7vw, 112px); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 48px; align-items: start; margin-bottom: clamp(48px, 7vw, 92px); }
.section-heading h2, .privacy-copy h2, .final-cta h2 { margin: 0; font-size: clamp(44px, 6.2vw, 94px); line-height: .96; letter-spacing: 0; font-weight: 600; }
.section-heading h2 em, .privacy-copy h2 em { color: var(--coral); font-family: Georgia, serif; font-weight: 400; }
.section-heading > p:last-child { margin: 4px 0 0; color: var(--muted); line-height: 1.7; font-size: 15px; }
.demo-stage { position: relative; min-height: min(70vw, 780px); padding: 5vw 10vw; background: #d8d5cc; overflow: hidden; }
.demo-stage::before { content: "STASHCUE / LIVE"; position: absolute; left: 25px; top: 24px; font: 500 10px var(--mono); }
.call-scene { position: relative; height: min(55vw, 650px); overflow: hidden; background: #1b1b19; box-shadow: 0 24px 80px rgba(18,18,15,.18); }
.call-scene > img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: saturate(.7); }
.call-topbar { position: absolute; top: 0; left: 0; right: 0; height: 52px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.8); background: rgba(12,12,10,.65); font: 400 10px var(--mono); backdrop-filter: blur(9px); }
.call-caption { position: absolute; left: 28px; bottom: 28px; max-width: 460px; padding: 14px 18px; color: white; background: rgba(10,10,8,.77); backdrop-filter: blur(10px); }
.call-caption span { color: var(--acid); font: 500 9px var(--mono); }
.call-caption p { margin: 6px 0 0; font-size: 15px; line-height: 1.45; }
.answer-overlay { position: absolute; z-index: 3; right: 4.3vw; top: 19%; width: min(390px, 34vw); padding: 18px; color: #181813; background: rgba(255,254,249,.93); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 24px 70px rgba(18,18,15,.25); backdrop-filter: blur(18px); }
.overlay-top, .answer-meta { display: flex; align-items: center; justify-content: space-between; font: 500 9px var(--mono); }
.overlay-top > span:first-child { display: flex; align-items: center; gap: 7px; }
.overlay-controls { color: #8a8982; font-size: 14px; word-spacing: 8px; }
.question-tag, .answer-label { margin-top: 30px; color: var(--coral); font: 500 9px var(--mono); }
.detected-question { margin: 9px 0 17px; font-size: 14px; line-height: 1.5; font-weight: 700; }
.answer-rule { height: 1px; background: var(--line); }
.answer-label { color: var(--muted); }
.typed-answer { min-height: 132px; margin: 8px 0 28px; font-size: clamp(13px, 1.1vw, 16px); line-height: 1.62; }
.answer-meta { color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; }
.answer-meta span:first-child { color: #476300; }

.live-demo-section { padding: clamp(88px, 12vw, 170px) clamp(20px, 7vw, 112px); color: var(--white); background: var(--ink); }
.live-demo-heading { display: grid; grid-template-columns: 2fr 1fr; gap: 70px; align-items: end; margin-bottom: clamp(44px, 6vw, 80px); }
.live-demo-heading h2 { margin: 0; font-size: clamp(44px, 6.2vw, 94px); line-height: .96; font-weight: 600; }
.live-demo-heading h2 em { color: var(--acid); font-family: Georgia, serif; font-weight: 400; }
.live-demo-heading > p { max-width: 460px; margin: 0 0 8px; color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.7; }
.video-shell { position: relative; width: min(100%, 1120px); margin: 0 auto; padding: 42px 42px 0; background: #272723; }
.video-label { position: absolute; top: 16px; left: 19px; display: flex; align-items: center; gap: 9px; font: 500 9px var(--mono); color: rgba(255,255,255,.72); }
.video-shell video { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #fff; }

.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid article { min-height: 250px; padding: 50px clamp(20px, 5vw, 72px); display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }
.proof-grid article:last-child { border: 0; }
.proof-grid strong { font-size: clamp(56px, 7vw, 100px); line-height: 1; font-weight: 500; }
.proof-grid p { max-width: 250px; margin: 30px 0 0; color: var(--muted); line-height: 1.5; }

.steps-section { background: var(--white); }
.section-heading.compact { grid-template-columns: 1fr 3fr; }
.steps-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.steps-list li { min-height: 180px; display: grid; grid-template-columns: 1fr 3fr auto; align-items: center; gap: 40px; border-bottom: 1px solid var(--line); }
.step-number { font: 500 12px var(--mono); color: var(--coral); }
.steps-list h3 { margin: 0 0 10px; font-size: clamp(25px, 2.8vw, 42px); font-weight: 600; }
.steps-list p { max-width: 660px; margin: 0; color: var(--muted); line-height: 1.6; }
.step-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; font-size: 20px; }

.privacy-section { min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; color: var(--white); background: var(--ink); }
.privacy-visual { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; background: repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,.035) 40px), repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,.035) 40px); }
.privacy-window { width: min(440px, 70%); aspect-ratio: 1.25; padding: 38px; border: 1px solid rgba(255,255,255,.17); background: #1a1a17; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.lock-icon { width: 58px; height: 58px; display: grid; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-size: 31px; }
.privacy-window p { margin: 40px 0 24px; color: rgba(255,255,255,.44); font: 400 10px var(--mono); }
.share-lines { display: grid; gap: 13px; }
.share-lines span { height: 8px; background: rgba(255,255,255,.08); }
.share-lines span:nth-child(2) { width: 72%; }
.share-lines span:nth-child(3) { width: 48%; }
.privacy-cue { position: absolute; right: 9%; bottom: 15%; padding: 14px 18px; display: flex; gap: 10px; align-items: center; color: var(--ink); background: var(--white); font: 500 10px var(--mono); box-shadow: 0 15px 45px rgba(0,0,0,.28); }
.privacy-copy { padding: clamp(80px, 10vw, 150px) clamp(30px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.privacy-copy > p:nth-of-type(2) { max-width: 560px; margin: 34px 0 46px; color: rgba(255,255,255,.58); font-size: 16px; line-height: 1.7; }
.privacy-copy ul { list-style: none; margin: 0; padding: 0; }
.privacy-copy li { display: flex; gap: 24px; padding: 17px 0; color: rgba(255,255,255,.8); border-top: 1px solid rgba(255,255,255,.13); font-size: 13px; }
.privacy-copy li span { color: var(--acid); font: 400 10px var(--mono); }

.manifesto { padding: clamp(100px, 16vw, 230px) max(20px, 7vw); text-align: center; }
.manifesto p { margin: 0 0 12px; color: var(--muted); font-family: Georgia, serif; font-size: clamp(27px, 4vw, 60px); font-style: italic; }
.manifesto h2 { max-width: 1100px; margin: 0 auto; font-size: clamp(42px, 6vw, 90px); line-height: 1; font-weight: 700; }

.faq-section { background: var(--white); }
.faq-list { max-width: 920px; margin-left: auto; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: clamp(17px, 1.8vw, 24px); font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--coral); font-size: 22px; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 680px; margin: -8px 0 30px; color: var(--muted); line-height: 1.7; }

.final-cta { min-height: 720px; padding: 110px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--white); background: var(--coral); }
.final-cta h2 { max-width: 1100px; font-size: clamp(53px, 8vw, 120px); }
.final-cta > p:nth-of-type(2) { max-width: 490px; margin: 30px 0; color: rgba(255,255,255,.8); line-height: 1.6; }
.button-light { min-width: 235px; color: var(--ink); background: var(--white); }
.availability { margin-top: 20px; font: 400 9px var(--mono); color: rgba(255,255,255,.7); }

footer { min-height: 120px; padding: 25px clamp(20px, 4vw, 64px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: rgba(255,255,255,.7); background: var(--ink); font-size: 11px; }
footer p:last-child { justify-self: end; }
.brand-footer { color: var(--white); }

.waitlist-dialog { width: min(560px, calc(100vw - 28px)); max-height: calc(100svh - 28px); padding: clamp(30px, 6vw, 58px); color: var(--ink); background: var(--paper); border: 0; border-radius: 0; box-shadow: 0 30px 100px rgba(0,0,0,.36); overflow-y: auto; }
.waitlist-dialog::backdrop { background: rgba(12,12,10,.72); backdrop-filter: blur(6px); }
.waitlist-dialog[open] { animation: dialogIn .28s ease both; }
.dialog-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 24px; }
.dialog-kicker { display: flex; align-items: center; gap: 9px; font: 500 10px var(--mono); }
.waitlist-dialog h2 { margin: 28px 0 18px; font-size: clamp(39px, 6vw, 63px); line-height: .96; }
.waitlist-dialog > p { margin: 0 0 30px; color: var(--muted); line-height: 1.6; }
.waitlist-dialog form { display: grid; }
.waitlist-dialog label { margin: 15px 0 7px; font: 500 10px var(--mono); }
.waitlist-dialog input { width: 100%; min-height: 52px; padding: 0 14px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 0; outline: none; }
.waitlist-dialog input:focus { border-color: var(--coral); box-shadow: 0 0 0 2px rgba(255,90,60,.12); }
.button-submit { width: 100%; margin-top: 22px; color: var(--white); background: var(--ink); }
.button-submit:disabled { opacity: .55; cursor: wait; }
.form-status { min-height: 20px; margin: 12px 0 0; color: var(--coral-dark); font-size: 12px; }
.form-status.success { color: #446000; }

@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroScale { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(223,245,51,0); } 100% { box-shadow: 0 0 0 0 rgba(223,245,51,0); } }
@keyframes dialogIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero-copy { margin-left: 28px; }
  .section-heading { grid-template-columns: 1fr 2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .answer-overlay { width: 42vw; right: 2.5vw; }
  .live-demo-heading { grid-template-columns: 1.5fr 1fr; gap: 40px; }
  .proof-grid article { padding: 36px 25px; }
  .privacy-section { grid-template-columns: 1fr; }
  .privacy-visual { min-height: 550px; }
  footer { grid-template-columns: 1fr 1fr; gap: 20px; }
  footer > p:nth-child(2) { display: none; }
}

@media (max-width: 640px) {
  .site-header { height: 62px; padding: 0 17px; }
  .brand { font-size: 17px; }
  .brand-mark { transform: scale(.86); transform-origin: left; margin-right: -3px; }
  .header-cta { padding: 9px 11px; }
  .hero { min-height: 92svh; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,8,6,.93) 0%, rgba(8,8,6,.63) 68%, rgba(8,8,6,.18) 100%); }
  .hero-copy { width: auto; margin: 0 18px 82px; }
  .hero h1 { font-size: clamp(62px, 21vw, 100px); }
  .hero-statement { margin-top: 17px; font-size: 31px; }
  .hero-description { margin-top: 18px; font-size: 14px; line-height: 1.55; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 23px; }
  .button { min-height: 49px; }
  .hero-status { left: 18px; right: auto; bottom: 22px; }
  .hero-status span:last-child { display: none; }
  .signal-strip { justify-content: flex-start; min-height: 56px; }
  .signal-strip p:nth-of-type(n+3), .signal-strip span:nth-of-type(n+3) { display: none; }
  .signal-strip span { margin-left: auto; }
  .product-section, .steps-section, .faq-section { padding: 82px 18px; }
  .section-heading, .section-heading.compact { display: block; }
  .section-heading h2 { margin-top: 18px; }
  .section-heading > p:last-child { margin-top: 25px; }
  .demo-stage { min-height: 660px; padding: 56px 13px 20px; }
  .call-scene { height: 360px; }
  .call-scene > img { object-position: 57% center; }
  .call-caption { left: 12px; right: 12px; bottom: 12px; padding: 11px; }
  .call-caption p { font-size: 12px; }
  .answer-overlay { top: 310px; left: 27px; right: 12px; width: auto; min-height: 325px; }
  .typed-answer { min-height: 95px; font-size: 13px; }
  .live-demo-section { padding: 82px 18px; }
  .live-demo-heading { display: block; }
  .live-demo-heading > p { margin-top: 24px; }
  .video-shell { padding: 38px 10px 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid article:last-child { border-bottom: 0; }
  .steps-list li { min-height: 220px; grid-template-columns: 42px 1fr; gap: 15px; align-items: start; padding: 30px 0; }
  .step-icon { display: none; }
  .steps-list h3 { font-size: 26px; }
  .steps-list p { font-size: 14px; }
  .privacy-visual { min-height: 430px; }
  .privacy-window { width: 76%; padding: 25px; }
  .privacy-cue { right: 6%; bottom: 12%; }
  .privacy-copy { padding: 82px 20px; }
  .privacy-copy h2 { font-size: 48px; }
  .manifesto { padding: 110px 18px; }
  .faq-section .section-heading { margin-bottom: 48px; }
  summary { min-height: 78px; font-size: 17px; }
  .final-cta { min-height: 620px; padding: 90px 18px; }
  .final-cta h2 { font-size: 53px; }
  footer { min-height: 100px; padding: 22px 18px; }
  footer p:last-child { margin: 0; }
}

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


/* -- platforms + price ------------------------------------------------ */
.platforms-section {
  padding: 96px 6vw;
  text-align: center;
  border-top: 1px solid rgba(18, 18, 15, .1);
}
.platforms-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.02em;
  margin: 0 0 14px;
}
.platforms-lede {
  max-width: 46ch;
  margin: 0 auto 34px;
  color: var(--muted, #68685f);
  font-size: 16px;
  line-height: 1.6;
}
.platform-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 760px;
}
.platform-list li {
  flex: 1 1 200px;
  max-width: 240px;
  padding: 18px 16px;
  border: 1px solid rgba(18, 18, 15, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
}
.platform-list strong { display: block; font-size: 15px; font-weight: 700; }
.platform-list span { display: block; margin-top: 4px; font-size: 13px; color: var(--muted, #68685f); }
.platforms-price {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 26px;
}

.platforms-price .price-unit {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted, #68685f);
  letter-spacing: 0;
}
.price-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted, #68685f);
}

/* -- plan cards -------------------------------------------------------- */
.plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 8px auto 26px;
  max-width: 760px;
}
.plan {
  flex: 1 1 280px;
  max-width: 340px;
  text-align: left;
  padding: 26px 24px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(18, 18, 15, .14);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.plan-pro {
  border-color: rgba(0, 127, 115, .55);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 30px rgba(0, 127, 115, .1);
}
.plan-name {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 8px;
}
.plan-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 127, 115, .12);
  color: #007f73;
  font-size: 10px;
  letter-spacing: .04em;
}
.plan-price {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 18px;
}
.plan-alt { font-size: 16px; font-weight: 600; color: var(--muted, #68685f); }
.plan-list { list-style: none; padding: 0; margin: 0 0 22px; }
.plan-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.5;
}
.plan-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #007f73;
  font-weight: 800;
}
.plan .button { margin-top: auto; align-self: flex-start; }
