:root {
  --ivory: #faf7f2;
  --ink: #16131a;
  --muted: #5e5866;
  --brand: #a78bc7;
  --brand-dark: #7b5aa6;
  --lavender: #e8ddf4;
  --mist: #f5effa;
  --line: #d8ccdf;
  --green: #2f9e65;
  --coral: #e76f61;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgb(22 19 26 / 0.06);
  --shadow: 0 24px 70px rgb(22 19 26 / 0.09);
  --shadow-dark: 0 28px 78px rgb(22 19 26 / 0.18);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 32px;
  --font-display: "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.site-header,
main,
section,
.footer {
  width: 100%;
}

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

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

button,
summary {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-sm);
}

.shell {
  width: min(calc(100% - clamp(40px, 5vw, 96px)), 1520px);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(64px, 6.2vw, 96px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(216 204 223 / 0.72);
  background: rgb(250 247 242 / 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lavender);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links {
  gap: 28px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 720;
}

.legal-nav {
  display: flex;
}

.nav-links a:hover {
  color: var(--brand-dark);
}

.nav-cta {
  padding: 11px 19px;
  border-radius: 999px;
  background: var(--brand);
  color: white !important;
  box-shadow: 0 10px 24px rgb(123 90 166 / 0.18);
}

.nav-cta:hover {
  background: var(--brand-dark);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 8px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 880px;
  font-size: clamp(3.45rem, 7vw, 6.35rem);
}

h2 {
  font-size: clamp(2.15rem, 3.8vw, 3.85rem);
}

h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  line-height: 1.08;
}

p {
  margin: 0;
  color: var(--muted);
}

.eyebrow,
.tiny-label {
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-block: clamp(58px, 6vw, 88px) clamp(70px, 7vw, 98px);
  overflow: hidden;
}

.hero-grid,
.two-col,
.showcase-grid,
.pricing-grid,
.fit-grid,
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(48px, 6vw, 76px);
  align-items: center;
}

.hero-grid > *,
.two-col > *,
.showcase-grid > *,
.pricing-grid > *,
.fit-grid > *,
.founder-grid > *,
.split-heading > *,
.trust-grid > *,
.steps > *,
.before-after > *,
.packages > * {
  min-width: 0;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.86fr);
}

.hero-subtitle {
  margin-top: 26px;
  max-width: 660px;
  font-size: clamp(1.12rem, 1.55vw, 1.32rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-note {
  max-width: 640px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 25px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 14px 28px rgb(123 90 166 / 0.18);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--brand);
  background: var(--mist);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.section-cta p {
  max-width: 760px;
  color: var(--ink);
  font-weight: 750;
}

.legal-page {
  max-width: 880px;
}

.legal-page h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
}

.legal-page p:not(.eyebrow) {
  margin-top: 24px;
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.legal-page h2 {
  margin-top: 42px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.legal-page ul {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.legal-page li {
  margin-top: 10px;
}

.legal-page a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 32px;
}

.mini-proof span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
  box-shadow: 0 8px 20px rgb(22 19 26 / 0.04);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% -3% -5% 9%;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: var(--radius-lg);
  transform: rotate(2deg);
}

.audit-board {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgb(232 221 244 / 0.2);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-dark);
}

.audit-top {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
  align-items: center;
}

.audit-top img {
  width: 104px;
  height: 128px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 20px;
  border: 1px solid rgb(255 255 255 / 0.14);
}

.audit-top h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.05;
  color: white;
}

.audit-board .tiny-label {
  margin-bottom: 8px;
  color: var(--lavender);
}

.signal-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.signal-list article {
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 20px;
  background: rgb(255 255 255 / 0.07);
}

.signal-list p {
  margin-top: 8px;
  color: rgb(255 255 255 / 0.86);
}

.signal,
.state,
.badge,
.package-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.danger,
.bad {
  color: var(--coral);
}

.warn {
  color: var(--lavender);
}

.good,
.success {
  color: var(--green);
}

.trust-band {
  padding-block: 18px 32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.trust-grid div {
  padding: clamp(22px, 2.4vw, 30px);
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.trust-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.42;
}

.problem p,
.split-heading > p,
.centered p,
.pricing p,
.founder p {
  font-size: clamp(1.02rem, 1.25vw, 1.1rem);
  line-height: 1.68;
}

.problem h2,
.pricing h2,
.founder h2 {
  max-width: 900px;
}

.problem .two-col {
  align-items: start;
}

.problem .two-col > div:first-child > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 24px;
}

.check-list,
.package-card ul,
.fit-card ul {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li,
.package-card li,
.fit-card li {
  position: relative;
  padding-left: 28px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.check-list li::before,
.package-card li::before,
.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.mistake-card,
.package-card,
.comparison,
.testimonial-mural article,
.fit-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
}

.mistake-card {
  padding: clamp(28px, 3vw, 38px);
}

.mistake-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.mistake-row span {
  color: var(--coral);
  font-weight: 900;
  font-size: 1.08rem;
}

.mistake-row p {
  color: var(--ink);
  font-weight: 760;
  line-height: 1.48;
}

.lilac {
  background: var(--mist);
}

.centered {
  text-align: center;
}

.narrow {
  max-width: 780px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.steps article {
  display: flex;
  min-height: 284px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 32px rgb(22 19 26 / 0.04);
}

.steps span {
  display: block;
  margin-bottom: 46px;
  color: rgb(167 139 199 / 0.72);
  font-size: clamp(2.1rem, 3vw, 2.75rem);
  line-height: 1;
  font-weight: 900;
}

.steps p {
  margin-top: 16px;
}

.compact-steps {
  grid-template-columns: repeat(3, 1fr);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: end;
}

.split-heading h2 {
  max-width: 850px;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.comparison {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.comparison-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
  color: var(--brand-dark);
  font-weight: 900;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.comparison-grid > div {
  padding: clamp(24px, 3vw, 32px);
}

.comparison-grid > div:first-child {
  border-right: 1px solid var(--line);
}

.comparison-grid p:last-child {
  margin-top: 10px;
  line-height: 1.58;
}

.showcase {
  background: white;
}

.showcase-grid {
  align-items: stretch;
}

.case-card {
  padding: clamp(30px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-dark);
}

.case-card h2 {
  color: white;
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  line-height: 1.03;
}

.case-card .eyebrow {
  color: var(--lavender);
}

.case-flow {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.case-flow div {
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 20px;
  background: rgb(255 255 255 / 0.06);
}

.case-flow p {
  margin-top: 8px;
  color: rgb(255 255 255 / 0.86);
}

.testimonial-mural {
  display: grid;
  gap: 16px;
  align-content: stretch;
}

.testimonial-mural article {
  padding: clamp(24px, 3vw, 30px);
}

.testimonial-mural p {
  color: var(--ink);
  font-size: clamp(1.02rem, 1.25vw, 1.1rem);
  line-height: 1.55;
  font-weight: 760;
}

.testimonial-mural span {
  display: block;
  margin-top: 18px;
  color: var(--brand-dark);
  font-weight: 850;
}

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

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(28px, 3vw, 36px);
}

.package-card.featured {
  border-color: var(--brand);
  background: var(--mist);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgb(123 90 166 / 0.16);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--brand-dark);
}

.package-kicker {
  margin-bottom: 14px;
  color: var(--brand-dark);
}

.package-card h3 {
  font-size: clamp(1.65rem, 2.2vw, 2rem);
}

.package-card p {
  margin-top: 16px;
}

.package-card .btn {
  margin-top: auto;
}

.package-card ul {
  margin-bottom: 32px;
}

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

.pricing h2,
.pricing strong {
  color: white;
}

.pricing p {
  margin-top: 22px;
  color: var(--lavender);
  max-width: 620px;
}

.eyebrow.dark {
  color: var(--lavender);
}

.price-cards {
  display: grid;
  gap: 16px;
}

.price-cards article {
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 22px;
  background: rgb(255 255 255 / 0.06);
}

.price-cards span {
  color: var(--lavender);
  font-weight: 900;
}

.price-cards strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.price-cards p {
  margin-top: 10px;
  font-size: 1rem;
}

.price-featured {
  border-color: rgb(167 139 199 / 0.72) !important;
  box-shadow: inset 0 0 0 1px rgb(167 139 199 / 0.72), 0 18px 46px rgb(0 0 0 / 0.14);
}

.fit-grid {
  align-items: stretch;
}

.fit-card {
  padding: clamp(30px, 4vw, 42px);
}

.fit-card h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.positive {
  border-color: rgb(47 158 101 / 0.42);
  background: linear-gradient(180deg, rgb(47 158 101 / 0.055), white 44%);
}

.negative {
  border-color: rgb(231 111 97 / 0.42);
  background: linear-gradient(180deg, rgb(231 111 97 / 0.055), white 44%);
}

.positive li::before {
  background: var(--green);
}

.negative li::before {
  background: var(--coral);
}

.guarantee {
  padding-block: clamp(68px, 8vw, 98px);
  background: var(--brand);
  color: white;
}

.guarantee-box {
  max-width: 1040px;
  text-align: center;
}

.guarantee .eyebrow,
.guarantee h2 {
  color: white;
}

.guarantee h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.45rem);
  line-height: 1.03;
}

.founder-grid {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.founder img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder p {
  margin-top: 20px;
}

.founder-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.founder-stats span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--brand-dark);
  font-weight: 850;
}

.brand-context {
  color: var(--ink) !important;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin-top: 36px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 20px 62px 20px 24px;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 22px;
  color: var(--brand-dark);
  font-size: 1.4rem;
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 24px 22px;
  line-height: 1.65;
}

.final-cta {
  padding-block: clamp(82px, 8vw, 108px);
}

.final-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  max-width: 900px;
}

.footer {
  padding-block: 30px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-weight: 750;
}

.footer-grid div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 1024px) {
  .section-pad {
    padding-block: 64px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .two-col,
  .showcase-grid,
  .pricing-grid,
  .fit-grid,
  .founder-grid,
  .split-heading {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-grid {
    align-items: start;
  }

  .trust-grid,
  .steps,
  .before-after,
  .packages {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-box {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-cta .btn {
    flex: 0 0 auto;
  }

  .package-card.featured {
    transform: none;
  }

  .nav-links {
    position: absolute;
    inset: 76px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .legal-nav a {
    padding: 10px 12px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .menu-button {
    display: block;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 40px), 1200px);
  }

  .nav {
    gap: 12px;
  }

  .section-pad {
    padding-block: 42px;
  }

  .hero {
    min-height: auto;
    padding-block: 38px 46px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 3.85rem);
    line-height: 0.98;
  }

  .legal-page h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
    line-height: 1.02;
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .hero-actions,
  .hero-actions .btn,
  .final-cta .btn,
  .package-card .btn,
  .section-cta .btn {
    width: 100%;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-note {
    margin-top: 16px;
    font-size: 0.94rem;
  }

  .mini-proof {
    margin-top: 24px;
  }

  .mini-proof span {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }

  .trust-grid,
  .steps,
  .before-after,
  .packages,
  .comparison-grid,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .packages {
    gap: 18px;
    margin-top: 28px;
  }

  .package-card {
    padding: 24px;
  }

  .package-card ul {
    margin-block: 22px 26px;
  }

  .package-card li {
    margin-top: 10px;
  }

  .section-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
    padding: 24px;
  }

  .trust-grid div,
  .comparison-grid > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .audit-top {
    grid-template-columns: 88px 1fr;
    gap: 16px;
  }

  .audit-top img {
    width: 88px;
    height: 108px;
  }

  .audit-board {
    border-radius: 26px;
  }

  .hero-visual {
    display: none;
  }

  .hero-visual::before {
    inset: 4% -4% -4% 7%;
    border-radius: 26px;
  }

  .final-cta-box {
    padding: 28px;
  }

  .footer-grid,
  .footer-grid div {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-nav a:not(.nav-cta) {
    display: none;
  }

  .legal-nav .nav-cta {
    margin-top: 0;
    padding-inline: 12px;
    font-size: 0.86rem;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Prelaunch waitlist: scoped so the existing legal pages retain their layout. */
.waitlist-page {
  --wait-ink: #16131a;
  --wait-paper: #faf7f2;
  --wait-acid: #a78bc7;
  --wait-purple: #7b5aa6;
  --wait-lavender: #e8ddf4;
  --wait-soft: #f5effa;
  --wait-orange: #e76f61;
  --wait-line: #d8ccdf;
  --wait-muted: #5e5866;
  background: var(--wait-paper);
  color: var(--wait-ink);
  font-family: var(--font-body);
}

.waitlist-page .shell {
  width: min(calc(100% - 40px), 1200px);
}

.waitlist-page h1,
.waitlist-page h2,
.waitlist-page h3 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}

.waitlist-page h1 {
  max-width: 800px;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.96;
}

.waitlist-page h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.15rem);
  line-height: 1;
}

.waitlist-page h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.06;
}

.waitlist-page .waitlist-header {
  position: relative;
  border-bottom: 1px solid var(--wait-line);
  background: var(--wait-paper);
  backdrop-filter: none;
}

.waitlist-nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.waitlist-brand {
  color: var(--wait-ink);
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.waitlist-brand span {
  color: var(--wait-acid);
}

.waitlist-nav-links,
.waitlist-footer-grid > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.waitlist-nav-links {
  justify-content: center;
  color: var(--wait-muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.waitlist-nav-links a,
.waitlist-footer a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.waitlist-nav-links a:hover,
.waitlist-nav-links a:focus-visible,
.waitlist-footer a:hover,
.waitlist-footer a:focus-visible {
  text-decoration-color: currentcolor;
}

.waitlist-header-cta,
.waitlist-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--wait-acid);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.waitlist-header-cta {
  min-height: 40px;
  padding-inline: 15px;
  background: var(--wait-acid);
  color: white;
  font-size: 0.88rem;
}

.waitlist-header-cta:hover,
.waitlist-header-cta:focus-visible,
.waitlist-button-primary:hover,
.waitlist-button-primary:focus-visible {
  background: var(--wait-purple);
  border-color: var(--wait-purple);
  color: white;
  box-shadow: 0 10px 20px rgb(123 90 166 / 0.22);
  transform: translateY(-2px);
}

.waitlist-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 6vw, 64px) clamp(38px, 4vw, 48px);
}

.waitlist-hero::before {
  content: none;
}

.waitlist-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.7fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: end;
}

.waitlist-kicker,
.countdown-label {
  color: var(--wait-ink) !important;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.waitlist-kicker {
  margin-bottom: 22px;
}

.waitlist-kicker span {
  color: var(--wait-acid);
}

.waitlist-lead {
  max-width: 660px;
  margin-top: 30px;
  color: var(--wait-ink) !important;
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.52;
}

.waitlist-promise {
  max-width: 580px;
  margin-top: 18px;
  color: var(--wait-muted) !important;
  font-size: 0.98rem;
  line-height: 1.5;
}

.waitlist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.waitlist-button {
  gap: 12px;
}

.waitlist-button-primary {
  background: var(--wait-acid);
  color: white;
}

.waitlist-button-secondary {
  background: transparent;
  color: var(--wait-ink);
}

.waitlist-button-secondary:hover,
.waitlist-button-secondary:focus-visible {
  border-color: var(--wait-acid);
  background: var(--wait-soft);
  box-shadow: 0 8px 18px rgb(123 90 166 / 0.14);
  transform: translateY(-2px);
}

.countdown-panel {
  position: relative;
  padding: clamp(26px, 3.4vw, 42px);
  border: 1px solid var(--wait-line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
  color: var(--wait-ink);
}

.countdown-label {
  color: var(--wait-purple) !important;
  margin-bottom: 14px;
}

.countdown-panel h2 {
  color: var(--wait-ink);
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.countdown-official-time {
  margin-top: 18px;
  color: var(--wait-purple) !important;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.86rem;
  font-weight: 800;
}

.countdown-country {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid var(--wait-line);
  border-radius: 14px;
  background: var(--wait-soft);
}

.countdown-country label {
  display: block;
  color: var(--wait-purple);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.countdown-country select {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  padding: 8px 34px 8px 11px;
  border: 1px solid var(--wait-line);
  border-radius: 10px;
  background: white;
  color: var(--wait-ink);
  font: inherit;
  font-size: 0.9rem;
}

.countdown-country select:focus-visible {
  outline: 3px solid var(--wait-purple);
  outline-offset: 2px;
}

.countdown-local-time {
  margin-top: 10px;
  color: var(--wait-muted) !important;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--wait-line);
  background: var(--wait-line);
}

.countdown div {
  padding: 14px;
  background: var(--wait-soft);
}

.countdown strong,
.countdown span {
  display: block;
}

.countdown strong {
  color: var(--wait-purple);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
}

.countdown span,
.countdown-footnote {
  color: var(--wait-muted) !important;
  font-size: 0.78rem;
}

.countdown span {
  margin-top: 7px;
  text-transform: uppercase;
}

.countdown-footnote {
  margin-top: 16px;
  line-height: 1.45;
}

.countdown-open {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--wait-acid);
  border-radius: 14px;
  background: var(--wait-soft);
  color: var(--wait-ink) !important;
  font-weight: 800;
}

.waitlist-strip {
  border-block: 1px solid var(--wait-line);
  background: var(--wait-lavender);
}

.waitlist-strip .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.waitlist-strip p {
  padding: 14px 20px;
  border-right: 1px solid var(--wait-line);
  color: var(--wait-ink) !important;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.8rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.waitlist-strip p:last-child {
  border-right: 0;
}

.waitlist-strip span {
  margin-right: 8px;
  color: var(--wait-purple);
}

.waitlist-section {
  padding-block: clamp(36px, 5vw, 54px);
}

.waitlist-signup {
  background: var(--wait-paper);
  padding-top: clamp(26px, 4vw, 38px);
}

.waitlist-signup-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: end;
  padding: clamp(24px, 3.2vw, 36px);
  border: 1px solid var(--wait-line);
  border-radius: var(--radius-lg);
  background: var(--wait-soft);
  box-shadow: var(--shadow-sm);
}

.waitlist-signup-box > div:last-child p {
  color: var(--wait-muted) !important;
  font-size: 1.06rem;
  line-height: 1.55;
}

.waitlist-signup-reassurance {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-left: 14px;
  border-left: 3px solid var(--wait-acid);
}

.waitlist-signup-reassurance p {
  font-size: 0.92rem !important;
  line-height: 1.42 !important;
}

.waitlist-signup-box .waitlist-button {
  margin-top: 24px;
}

.waitlist-section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  gap: 22px clamp(30px, 7vw, 110px);
  align-items: end;
}

.waitlist-section-heading .waitlist-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.waitlist-section-heading > p {
  color: var(--wait-muted) !important;
  font-size: 1.03rem;
  line-height: 1.55;
}

.waitlist-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
  margin-top: 36px;
  border: 0;
}

.waitlist-offer-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--wait-line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
}

.waitlist-offer-grid article:last-child {
  border-right: 1px solid var(--wait-line);
}

.waitlist-offer-grid article > span {
  color: var(--wait-purple);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.82rem;
  font-weight: 900;
}

.waitlist-offer-grid h3 {
  margin-top: 30px;
}

.waitlist-offer-grid p {
  margin-top: 18px;
  color: var(--wait-muted) !important;
  line-height: 1.52;
}

.waitlist-offer-grid .waitlist-featured-offer {
  border-color: var(--wait-acid);
  background: var(--wait-lavender);
  box-shadow: 0 18px 42px rgb(123 90 166 / 0.14);
}

.waitlist-featured-offer h3 {
  color: var(--wait-ink);
}

.waitlist-featured-offer p {
  color: var(--wait-muted) !important;
}

.waitlist-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid var(--wait-line);
  border-radius: var(--radius);
  background: var(--wait-soft);
}

.waitlist-inline-cta p {
  color: var(--wait-ink) !important;
  font-weight: 750;
}

.waitlist-fit {
  border-top: 1px solid var(--wait-line);
}

.waitlist-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 94px);
}

.waitlist-fit-content {
  max-width: 760px;
}

.waitlist-not-for {
  padding: clamp(28px, 4vw, 48px);
  background: var(--wait-soft);
}

.waitlist-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.waitlist-list li {
  position: relative;
  padding-left: 28px;
  color: var(--wait-ink);
  line-height: 1.45;
}

.waitlist-list li::before {
  position: absolute;
  left: 0;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-weight: 900;
}

.waitlist-list-positive li::before {
  content: "+";
  color: var(--wait-orange);
}

.waitlist-list-negative li::before {
  content: "×";
  color: var(--wait-orange);
}

.waitlist-early {
  background: var(--wait-lavender);
  color: var(--wait-ink);
}

.waitlist-early .waitlist-kicker,
.waitlist-early h2 {
  color: var(--wait-ink) !important;
}

.waitlist-early .waitlist-kicker {
  color: var(--wait-purple) !important;
}

.waitlist-early-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(36px, 7vw, 96px);
}

.waitlist-early ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: early-benefits;
}

.waitlist-early li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgb(123 90 166 / 0.24);
  color: var(--wait-ink);
  font-size: clamp(1.05rem, 1.6vw, 1.27rem);
  line-height: 1.38;
  counter-increment: early-benefits;
}

.waitlist-early li::before {
  content: "0" counter(early-benefits);
  color: var(--wait-purple);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.76rem;
  font-weight: 900;
}

.waitlist-founder-note {
  grid-column: 2;
  margin: 4px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--wait-acid);
  color: var(--wait-muted) !important;
  font-size: 0.92rem;
  line-height: 1.48;
}

.waitlist-faq {
  border-top: 1px solid var(--wait-line);
  padding-block: clamp(56px, 7vw, 88px);
}

.waitlist-faq .shell {
  width: min(calc(100% - 40px), 1500px);
}

.faq-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.55fr);
  gap: clamp(48px, 5vw, 78px);
  align-items: center;
  position: relative;
  padding: clamp(32px, 4.5vw, 56px);
  border: 1px solid var(--wait-line);
  border-radius: 32px;
  background: rgb(255 255 255 / 0.55);
  box-shadow: 0 24px 70px rgb(123 90 166 / 0.08);
}

.faq-copy {
  min-width: 0;
}

.faq-copy h2 {
  max-width: 530px;
  font-size: clamp(2.5rem, 3.8vw, 3.75rem);
}

.faq-mascot-block {
  display: flex;
  width: 100%;
  align-items: center;
  margin: clamp(36px, 3vw, 48px) 0 0;
}

.faq-mascot-image {
  display: block;
}

.faq-mascot-image img {
  display: block;
  width: clamp(240px, 21vw, 340px);
  height: auto !important;
  max-width: 100%;
  max-height: none !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
  background: transparent;
}

.waitlist-faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: none;
  align-self: center;
  align-items: stretch;
}

.waitlist-faq-list details {
  min-height: 112px;
  height: 100%;
  border: 1px solid var(--wait-line);
  border-radius: 18px;
  background: rgb(255 255 255 / 0.82);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.waitlist-faq-list details:hover,
.waitlist-faq-list details[open] {
  border-color: var(--wait-acid);
  box-shadow: 0 8px 20px rgb(123 90 166 / 0.08);
}

.waitlist-faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 112px;
  cursor: pointer;
  padding: 18px 46px 18px 20px;
  color: var(--wait-ink);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.25;
  list-style: none;
  transition: background 180ms ease;
}

.waitlist-faq-list summary::-webkit-details-marker {
  display: none;
}

.waitlist-faq-list summary:hover {
  background: var(--wait-soft);
}

.waitlist-faq-list summary:focus-visible {
  outline: 3px solid var(--wait-purple);
  outline-offset: -3px;
}

.waitlist-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--wait-purple);
  font-size: 1.4rem;
  font-weight: 700;
}

.waitlist-faq-list details[open] summary::after {
  content: "−";
}

.waitlist-faq-list p {
  padding: 0 20px 20px;
  color: var(--wait-muted) !important;
  line-height: 1.5;
}

.waitlist-final {
  padding-block: clamp(64px, 8vw, 96px);
  border-top: 1px solid var(--wait-line);
  background: var(--wait-soft);
}

.waitlist-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.waitlist-closing-fit,
.waitlist-closing-cta {
  min-width: 0;
}

.waitlist-closing-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.waitlist-closing-cta h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4.2vw, 3.85rem);
}

.waitlist-closing-fit {
  padding-left: clamp(22px, 3vw, 34px);
  border-left: 1px solid var(--wait-line);
}

.waitlist-closing-fit h2 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.waitlist-closing-fit .waitlist-list {
  gap: 11px;
  margin-top: 24px;
}

.waitlist-final h2 {
  max-width: 900px;
}

.waitlist-final .waitlist-button {
  margin-top: 34px;
}

.waitlist-final-note {
  margin-top: 20px;
  color: var(--wait-muted) !important;
  font-size: 0.9rem;
}

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

  .waitlist-closing-fit {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid var(--wait-line);
    border-left: 0;
  }

  .waitlist-closing-cta h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}

@media (max-width: 900px) {
  .faq-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: clamp(32px, 6vw, 48px);
  }

  .faq-mascot-block {
    margin-top: 24px;
  }

  .faq-mascot-image img {
    width: clamp(220px, 34vw, 280px);
  }
}

@media (max-width: 1100px) {
  .faq-card {
    grid-template-columns: 1fr;
  }

  .waitlist-faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .waitlist-faq-list {
    grid-template-columns: 1fr;
  }

  .waitlist-faq-list details,
  .waitlist-faq-list summary {
    min-height: auto;
  }

  .faq-mascot-image img {
    width: clamp(170px, 50vw, 240px);
  }
}

.waitlist-page .waitlist-footer {
  border-color: var(--wait-line);
  background: var(--wait-soft);
}

.waitlist-footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.waitlist-footer-grid > div {
  justify-content: flex-end;
  max-width: 660px;
  color: var(--wait-muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.waitlist-page a:focus-visible {
  outline: 3px solid var(--wait-purple);
  outline-offset: 3px;
}

@media (max-width: 850px) {
  .waitlist-hero-grid,
  .waitlist-signup-box,
  .waitlist-section-heading,
  .waitlist-fit-grid,
  .waitlist-early-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-hero-grid {
    gap: 30px;
  }

  .waitlist-section-heading .waitlist-kicker {
    grid-column: auto;
  }

  .waitlist-offer-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-offer-grid article,
  .waitlist-offer-grid article:last-child {
    min-height: 220px;
    border-right: 1px solid var(--wait-line);
    border-bottom: 1px solid var(--wait-line);
  }

  .waitlist-offer-grid article:last-child {
    border-bottom: 1px solid var(--wait-line);
  }

  .waitlist-founder-note {
    grid-column: auto;
  }

}

@media (max-width: 650px) {
  .waitlist-page .shell {
    width: min(calc(100% - 32px), 1200px);
  }

  .waitlist-nav {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-block: 14px;
  }

  .waitlist-nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 7px 14px;
    font-size: 0.78rem;
  }

  .waitlist-header-cta {
    min-height: 38px;
  }

  .waitlist-page h1 {
    font-size: clamp(3rem, 15vw, 4.75rem);
  }

  .waitlist-page h2 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .waitlist-hero {
    padding-block: 34px 38px;
  }

  .waitlist-actions,
  .waitlist-actions .waitlist-button,
  .waitlist-signup-box .waitlist-button,
  .waitlist-final .waitlist-button {
    width: 100%;
  }

  .countdown-panel {
    padding: 20px;
    box-shadow: var(--shadow-sm);
  }

  .countdown-country {
    margin-top: 14px;
  }

  .countdown-local-time {
    font-size: 0.8rem;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waitlist-strip .shell {
    grid-template-columns: 1fr;
  }

  .waitlist-strip p {
    border-right: 0;
    border-bottom: 1px solid var(--wait-line);
  }

  .waitlist-strip p:last-child {
    border-bottom: 0;
  }

  .waitlist-section {
    padding-block: 38px;
  }

  .waitlist-offer-grid {
    margin-top: 28px;
  }

  .waitlist-footer-grid,
  .waitlist-footer-grid > div {
    flex-direction: column;
  }

  .waitlist-footer-grid > div {
    gap: 11px;
    align-items: flex-start;
  }

  .waitlist-signup-box {
    padding: 24px;
    border-radius: 22px;
  }

  .waitlist-inline-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .waitlist-inline-cta .waitlist-button {
    width: 100%;
  }

  .faq-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .faq-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .faq-mascot-block {
    margin-top: 20px;
  }

  .faq-mascot-image img {
    width: clamp(170px, 50vw, 240px);
  }

  .waitlist-faq-list {
    gap: 10px;
  }

  .waitlist-faq-list summary {
    padding: 18px 52px 18px 18px;
  }

  .waitlist-faq-list summary::after {
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
  }

  .waitlist-faq-list p {
    padding: 0 18px 18px;
  }
}
