:root {
  --text: #2e2f52;
  --muted: #5f667a;
  --line: #d8d6e0;
  --frame-glass: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(248, 249, 252, 0.88) 42%,
    rgba(236, 241, 249, 0.82) 100%
  );
  --frame-glass-muted: linear-gradient(
    158deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(246, 248, 252, 0.68) 48%,
    rgba(236, 240, 248, 0.62) 100%
  );
  --frame-hero: linear-gradient(168deg, #ffffff 0%, #fafbfd 40%, #f0f4fa 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background-color: #66a8bb;
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

.page-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("./assets/hunny-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px) brightness(0.8);
  transform: scale(1.03);
  z-index: 0;
  pointer-events: none;
}

.thought-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.thought-bubble-wrap {
  position: absolute;
  will-change: transform;
}

.thought-bubble-wrap--1 {
  top: 12%;
  left: 4%;
}

.thought-bubble-wrap--2 {
  top: 38%;
  right: 3%;
  left: auto;
}

.thought-bubble-wrap--3 {
  bottom: 14%;
  left: 8%;
}

.thought-bubble-wrap--4 {
  top: 18%;
  left: 36%;
}

.thought-bubble-wrap--5 {
  top: 52%;
  right: 2%;
  left: auto;
}

.thought-bubble-wrap--6 {
  top: 28%;
  left: 1%;
}

.thought-bubble-wrap--7 {
  top: 68%;
  left: 4%;
}

.thought-bubble-wrap--8 {
  bottom: 26%;
  right: 4%;
  left: auto;
}

.thought-bubble-wrap--9 {
  top: 8%;
  right: 14%;
  left: auto;
}

.thought-bubble-wrap--10 {
  top: 42%;
  left: 28%;
}

.thought-bubble-wrap--11 {
  bottom: 12%;
  left: 18%;
}

.thought-bubble-wrap--12 {
  top: 76%;
  right: 18%;
  left: auto;
}

.thought-bubble-wrap--13 {
  bottom: 38%;
  left: 2%;
}

.thought-bubble {
  position: relative;
  margin: 0;
  max-width: min(280px, calc(100vw - 3rem));
  padding: 0.85rem 1rem 1rem;
  font-size: clamp(0.72rem, 1.35vw, 0.88rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: rgba(42, 51, 72, 0.88);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px 22px 22px 6px;
  box-shadow: 0 10px 28px rgba(30, 45, 70, 0.08), 0 2px 8px rgba(30, 45, 70, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: thought-float 7s ease-in-out infinite;
}

.thought-bubble::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.55);
  bottom: -8px;
  left: 18px;
  box-shadow: 0 4px 10px rgba(30, 45, 70, 0.08);
}

.thought-bubble--1 {
  animation-delay: 0s;
}

.thought-bubble--2 {
  border-radius: 22px 22px 6px 22px;
  animation-delay: -2.3s;
}

.thought-bubble--2::after {
  left: auto;
  right: 22px;
  bottom: -8px;
}

.thought-bubble--tail-right {
  border-radius: 22px 22px 6px 22px;
}

.thought-bubble--tail-right::after {
  left: auto;
  right: 22px;
  bottom: -8px;
}

.thought-bubble--3 {
  animation-delay: -4.6s;
}

.thought-bubble--4 {
  animation-delay: -0.8s;
}

.thought-bubble--5 {
  animation-delay: -3.1s;
}

.thought-bubble--6 {
  animation-delay: -5.4s;
}

.thought-bubble--7 {
  animation-delay: -1.5s;
}

.thought-bubble--8 {
  animation-delay: -4s;
}

.thought-bubble--9 {
  animation-delay: -6.2s;
}

.thought-bubble--10 {
  animation-delay: -2.7s;
}

.thought-bubble--11 {
  animation-delay: -5s;
}

.thought-bubble--12 {
  animation-delay: -1.1s;
}

.thought-bubble--13 {
  animation-delay: -3.8s;
}

@keyframes thought-float {
  0%,
  100% {
    transform: translate(0, 0) rotate(-0.5deg);
  }
  50% {
    transform: translate(4px, -10px) rotate(0.5deg);
  }
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  padding: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Subtle hover enlargement on main frames (fine pointer + motion preference only) */
@media (hover: hover) and (pointer: fine) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-card,
    .egg-frame,
    .about-layout,
    .features-layout,
    .thoughts-panel,
    .contact-layout,
    .features-alerts,
    .time-box,
    .feeling-inner,
    .stakes-panel,
    .demo-flow-inner,
    .why-works-inner,
    .comparison-inner,
    .setup-inner,
    .trust-pillars-inner,
    .positioning-inner,
    .comparison-inner,
    .final-close-inner {
      transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
      transform: scale(1);
      transform-origin: center center;
    }

    .hero-card:hover,
    .egg-frame:hover,
    .about-layout:hover,
    .features-layout:hover,
    .thoughts-panel:hover,
    .contact-layout:hover,
    .features-alerts:hover,
    .time-box:hover,
    .feeling-inner:hover,
    .stakes-panel:hover,
    .demo-flow-wrap:hover .demo-flow-inner,
    .demo-flow-inner:hover,
    .why-works-inner:hover,
    .comparison-inner:hover,
    .setup-inner:hover,
    .trust-pillars-inner:hover,
    .positioning-inner:hover,
    .comparison-inner:hover,
    .final-close-inner:hover {
      transform: scale(1.024);
    }
  }
}

.hero-card {
  width: min(1120px, 100%);
  background: var(--frame-hero);
  border-radius: 20px;
  box-shadow: 0 24px 44px rgba(21, 34, 50, 0.24);
  overflow: hidden;
}

.egg-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
}

.cloud-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
}

.about-layout {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(360px, 1fr);
  align-items: center;
  gap: 0.35rem;
}

.about-media {
  display: grid;
  place-items: center;
  z-index: 3;
}

.about-chat-image {
  width: min(340px, 92%);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(22, 34, 52, 0.28));
  margin-right: -150px;
}

.about-layout .cloud-frame {
  width: 100%;
  z-index: 2;
}

.chat-image-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
}

.chat-image-frame {
  width: min(760px, 100%);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.chat-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.daily-activities-layout {
  width: min(940px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(320px, 1fr);
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.35rem 1.25rem 1.35rem 0.9rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #faf0d8 0%, #f1d7a6 48%, #e4c28a 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 40px rgba(74, 56, 28, 0.24);
  overflow: visible;
}

.daily-activities-copy {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.5rem 0.65rem 0.5rem 0.25rem;
  box-shadow: none;
  text-align: left;
}

.daily-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8b6f44;
}

.daily-activities-copy h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  color: #463d31;
}

.daily-activities-copy p {
  margin: 0;
  color: #655846;
  line-height: 1.7;
  max-width: 470px;
}

.daily-activities-layout .chat-image-frame {
  justify-self: center;
  width: min(330px, 100%);
  margin-left: -55px;
  margin-top: -16px;
  margin-bottom: -16px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 16px 24px rgba(20, 27, 62, 0.34));
}

/* --- Senior care stats (above everyday moments) --- */
.stats-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  scroll-margin-top: 2rem;
}

.stats-layout {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(320px, 1fr);
  align-items: start;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.35rem 1.25rem 1.35rem 0.9rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff8e8 0%, #f5e3be 48%, #e5c99a 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 40px rgba(74, 56, 28, 0.2);
}

.stats-copy {
  padding: 0.35rem 0.2rem 0;
}

.stats-copy h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  color: #463d31;
}

.stats-lead {
  margin: 0;
  color: #655846;
  line-height: 1.7;
  max-width: 420px;
  font-size: 0.98rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 0.75rem;
  align-content: start;
  justify-items: stretch;
}

.stat-card {
  border-radius: 18px;
  padding: 0.95rem 0.95rem 0.9rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.48) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 22px rgba(47, 49, 82, 0.06);
}

.stat-card--full {
  grid-column: 1 / -1;
}

.stat-value {
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #463d31;
  line-height: 1.05;
  margin-bottom: 0.35rem;
}

.stat-label {
  color: #655846;
  line-height: 1.55;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .stats-layout {
    grid-template-columns: 1fr;
    padding: 1.35rem 1.6rem 1.2rem;
  }

  .stats-copy {
    padding: 0;
    text-align: center;
  }

  .stats-lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .stats-layout {
    padding: 1.15rem 1rem 1.1rem;
    gap: 0.9rem;
  }

  .stat-card {
    padding: 0.9rem 0.85rem 0.85rem;
  }
}

.features-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
}

.features-layout {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.15fr);
  gap: 1.1rem;
  align-items: center;
  background: var(--frame-glass);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: 0 18px 34px rgba(24, 35, 52, 0.16);
}

/* --- Pain points → Solutions chart (above community voices) --- */
.pain-solutions-section {
  width: min(1120px, 100%);
  margin: 0 auto 1.5rem;
  scroll-margin-top: 2rem;
}

.pain-solutions-inner {
  width: 100%;
  max-width: min(920px, 100%);
  margin: 0 auto;
  padding: 0 0.25rem;
  text-align: center;
}

.pain-solutions-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.45rem;
}

.pain-solutions-emoji {
  font-size: 1.05em;
  line-height: 1;
}

.pain-solutions-section h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  line-height: 1.2;
  color: #283546;
}

.pain-solutions-lead {
  margin: 0 auto 1.35rem;
  max-width: 520px;
  font-size: 0.92rem;
  color: #5a6575;
  line-height: 1.65;
}

.pain-solutions-chart {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: ps-step;
  text-align: left;
}

.pain-solutions-chart--more {
  counter-reset: ps-step 3;
}

.ps-expand-wrap {
  display: flex;
  justify-content: center;
  margin: 0.35rem 0 0.15rem;
}

.ps-expand-btn {
  appearance: none;
  border: 1px solid rgba(107, 111, 133, 0.35);
  background: rgba(255, 255, 255, 0.72);
  color: #4a506e;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(24, 35, 52, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.ps-expand-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(24, 35, 52, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: #2f3152;
}

.ps-expand-btn:focus-visible {
  outline: 2px solid #6b7fd7;
  outline-offset: 3px;
}

.ps-more {
  margin-top: 0.35rem;
}

.ps-more[hidden] {
  display: none !important;
}

.ps-row {
  counter-increment: ps-step;
  position: relative;
  margin: 0 0 0.85rem;
  padding: 1.1rem 1.1rem 1.15rem 2.35rem;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 246, 250, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(24, 35, 52, 0.08);
}

.ps-row::before {
  content: counter(ps-step);
  position: absolute;
  left: 0.75rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #6b8bd4, #8b7bc9);
  border-radius: 8px;
  line-height: 1;
}

.ps-row:last-child {
  margin-bottom: 0;
}

.ps-quote {
  margin: 0 0 0.75rem;
  font-size: clamp(0.98rem, 1.9vw, 1.08rem);
  font-weight: 600;
  font-style: italic;
  color: #3d4560;
  line-height: 1.45;
}

.ps-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.65rem 0.5rem;
  align-items: stretch;
}

.ps-pain,
.ps-solution {
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.58;
}

.ps-pain {
  background: linear-gradient(160deg, #fff5f5 0%, #fdeeed 100%);
  border: 1px solid rgba(232, 180, 180, 0.35);
  color: #5c4a4a;
}

.ps-solution {
  background: linear-gradient(160deg, #f0faf9 0%, #e4f5f3 100%);
  border: 1px solid rgba(120, 190, 185, 0.35);
  color: #3d524f;
}

.ps-pain p,
.ps-solution p {
  margin: 0.35rem 0 0;
}

.ps-solution .ps-solution-title + p {
  margin-top: 0.55rem;
}

.ps-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b07a7a;
}

.ps-label--solution {
  color: #2b8e8f;
}

.ps-solution-title {
  margin: 0.25rem 0 0 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  font-style: normal !important;
  line-height: 1.35 !important;
  color: #1f5c5e !important;
}

.ps-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(90, 95, 130, 0.45);
  padding: 0 0.15rem;
  user-select: none;
}

@media (max-width: 720px) {
  .ps-split {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .ps-connector {
    transform: rotate(90deg);
    padding: 0.2rem 0;
    font-size: 1.1rem;
  }

  .ps-row {
    padding: 1rem 0.85rem 1rem 2.2rem;
  }
}

@media (max-width: 480px) {
  .ps-row::before {
    left: 0.55rem;
    top: 0.85rem;
    width: 1.35rem;
    height: 1.35rem;
    font-size: 0.65rem;
  }

  .ps-row {
    padding-left: 2rem;
  }
}

/* --- Community thoughts carousel (above contact) --- */
.thoughts-section {
  width: min(1120px, 100%);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  place-items: center;
  justify-items: center;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  scroll-margin-top: 2rem;
  min-width: 0;
  box-sizing: border-box;
}

.thoughts-shell {
  width: 100%;
  max-width: min(900px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  min-width: 0;
  box-sizing: border-box;
}

.thoughts-panel {
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding: 1.5rem 1.35rem 1.35rem;
  background: var(--frame-glass-muted);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(24, 35, 52, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.thoughts-section-kicker {
  margin-bottom: 0.35rem;
}

.thoughts-section h2,
.thoughts-panel h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  color: #283546;
}

.thoughts-section-lead {
  margin: 0 auto 1.15rem;
  max-width: 520px;
  font-size: 0.92rem;
  color: #5a6575;
  line-height: 1.65;
}

.thoughts-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.35rem 2.85rem 0.15rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.thoughts-viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 20px rgba(47, 49, 82, 0.06);
  margin: 0;
  min-width: 0;
  box-sizing: border-box;
}

.thoughts-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.thoughts-carousel.is-dragging .thoughts-track {
  transition: none;
}

.thoughts-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 2.25rem 1.75rem 2.5rem;
  box-sizing: border-box;
}

.thoughts-slide blockquote {
  margin: 0;
  position: relative;
  padding: 0 0.25rem;
}

.thoughts-slide blockquote::before {
  content: "“";
  position: absolute;
  left: -0.15rem;
  top: -0.35rem;
  font-size: 3.2rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(99, 110, 180, 0.22);
  pointer-events: none;
}

.thoughts-slide blockquote p {
  margin: 0;
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.65;
  color: #343a52;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.thoughts-attribution {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  color: #8b93a3;
  letter-spacing: 0.02em;
}

.thoughts-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  border: 1px solid rgba(200, 198, 220, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f4f3fb 100%);
  color: #4a4f72;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(47, 49, 82, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.thoughts-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(47, 49, 82, 0.14);
  color: #2f3152;
}

.thoughts-btn:focus-visible {
  outline: 2px solid #6b7fd7;
  outline-offset: 3px;
}

.thoughts-btn:active {
  transform: scale(0.98);
}

.thoughts-btn--prev {
  left: 0;
}

.thoughts-btn--next {
  right: 0;
}

.thoughts-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0 0.25rem;
}

.thoughts-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(106, 110, 150, 0.28);
  cursor: pointer;
  transition:
    width 0.35s ease,
    background 0.25s ease,
    transform 0.2s ease;
}

.thoughts-dot:hover {
  background: rgba(106, 110, 150, 0.45);
  transform: scale(1.15);
}

.thoughts-dot.is-active {
  width: 22px;
  background: linear-gradient(90deg, #7b8ce0, #9b7bc9);
  box-shadow: 0 2px 8px rgba(123, 140, 224, 0.35);
}

.thoughts-dot:focus-visible {
  outline: 2px solid #6b7fd7;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .thoughts-panel {
    padding: 1.2rem 0.9rem 1.1rem;
    border-radius: 22px;
  }

  .thoughts-carousel {
    padding: 0.25rem 2.2rem 0.1rem;
  }

  .thoughts-viewport {
    border-radius: 18px;
  }

  .thoughts-btn {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    font-size: 1.45rem;
  }

  .thoughts-slide {
    padding: 1.75rem 1.15rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thoughts-track {
    transition-duration: 0.01ms;
  }

  .thoughts-dot {
    transition-duration: 0.01ms;
  }
}

/* --- FAQ (accordion) --- */
.faq-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  scroll-margin-top: 2rem;
}

.faq-shell {
  width: 100%;
  max-width: min(900px, 100%);
}

.faq-panel {
  text-align: left;
  padding: 1.5rem 1.35rem 1.5rem;
  background: var(--frame-glass-muted);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(24, 35, 52, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.faq-kicker {
  text-align: center;
  margin-bottom: 0.35rem;
}

.faq-section h2 {
  text-align: center;
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
  color: #283546;
}

.faq-lead {
  margin: 0 auto 1.1rem;
  max-width: 560px;
  text-align: center;
  font-size: 0.92rem;
  color: #5a6575;
  line-height: 1.65;
}

.faq-category {
  margin-top: 1.35rem;
}

.faq-category:first-of-type {
  margin-top: 0.65rem;
}

.faq-category-title {
  margin: 0 0 0.7rem;
  padding-bottom: 0.45rem;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  font-weight: 700;
  color: #2f3152;
  border-bottom: 1px solid rgba(47, 49, 82, 0.1);
}

.faq-item {
  border: 1px solid rgba(200, 198, 220, 0.55);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.45rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(160, 155, 200, 0.45);
  box-shadow: 0 6px 20px rgba(47, 49, 82, 0.07);
}

.faq-summary {
  cursor: pointer;
  list-style: none;
  padding: 0.88rem 2.35rem 0.88rem 1rem;
  font-weight: 600;
  font-size: 0.93rem;
  line-height: 1.45;
  color: #2f3152;
  position: relative;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::marker {
  content: "";
}

.faq-summary::after {
  content: "";
  position: absolute;
  right: 1.05rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.28rem;
  border-right: 2px solid #6a6e82;
  border-bottom: 2px solid #6a6e82;
  transform: rotate(45deg);
  transition: transform 0.22s ease, margin-top 0.22s ease;
}

.faq-item[open] .faq-summary::after {
  margin-top: -0.12rem;
  transform: rotate(-135deg);
}

.faq-summary:focus-visible {
  outline: 2px solid #6b7fd7;
  outline-offset: 2px;
  border-radius: 12px;
}

.faq-answer {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(47, 49, 82, 0.07);
}

.faq-answer p,
.faq-answer ul {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5a6575;
}

.faq-answer p:first-child,
.faq-answer ul:first-child {
  margin-top: 0.75rem;
}

.faq-answer ul {
  padding-left: 1.25rem;
}

.faq-answer li {
  margin: 0.28rem 0;
}

.faq-answer strong {
  color: #343a52;
}

.faq-answer a {
  color: #4d5eb8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: #2f3152;
}

.faq-answer-list--plain {
  list-style: none;
  padding-left: 0;
}

.faq-answer-list--plain li {
  margin: 0.4rem 0;
}

@media (max-width: 640px) {
  .faq-panel {
    padding: 1.2rem 0.9rem 1.25rem;
    border-radius: 22px;
  }

  .faq-summary {
    padding: 0.82rem 2.1rem 0.82rem 0.85rem;
    font-size: 0.88rem;
  }

  .faq-summary::after {
    right: 0.85rem;
  }

  .faq-answer {
    padding: 0 0.85rem 0.9rem;
  }

  .faq-answer p,
  .faq-answer ul {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-summary::after {
    transition-duration: 0.01ms;
  }
}

.contact-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  margin-top: 0.2rem;
}

.contact-layout {
  grid-template-columns: 1fr;
  width: min(760px, 100%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: linear-gradient(185deg, #fffdf9 0%, #f8ebd8 45%, #f1e0c8 100%);
  border: 1px solid #e7d4b3;
  border-radius: 34px 34px 52px 52px / 26px 26px 44px 44px;
  box-shadow: 0 16px 30px rgba(88, 63, 33, 0.18);
  isolation: isolate;
}

.contact-layout::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: min(37vw, 300px) solid transparent;
  border-right: min(37vw, 300px) solid transparent;
  border-bottom: min(13vw, 100px) solid #efd7b1;
  z-index: 0;
  opacity: 0.95;
}

.contact-layout::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: min(12vw, 84px);
  background:
    radial-gradient(130% 160% at 0% 0%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 65%),
    radial-gradient(130% 160% at 100% 0%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 65%),
    linear-gradient(180deg, #f7ebd8 0%, #f2e1c3 100%);
  border-bottom-left-radius: 44% 100%;
  border-bottom-right-radius: 44% 100%;
  z-index: 0;
}

.contact-layout .features-copy {
  position: relative;
  z-index: 1;
  padding: 2.25rem 1.5rem 2.8rem;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.contact-layout .cta-wrap {
  align-items: center;
  width: 100%;
}

.contact-details {
  margin: 1.35rem auto 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(183, 154, 112, 0.35);
  max-width: 420px;
  text-align: center;
}

.contact-detail {
  margin: 0 0 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #5c5348;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7a68;
}

.contact-social-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.contact-social-sep {
  color: rgba(92, 83, 72, 0.45);
  user-select: none;
}

.contact-link {
  color: #4a6a8c;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.contact-link:hover {
  text-decoration: underline;
  color: #2d4a6e;
}

.contact-handle {
  font-style: italic;
  color: #7a6f62;
  font-weight: 500;
}

.waitlist-block {
  scroll-margin-top: 1.25rem;
  width: 100%;
  max-width: min(420px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.waitlist-block > p {
  margin: 0 auto 1.15rem;
}

.waitlist-form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  text-align: left;
  width: 100%;
  min-width: 0;
}

.waitlist-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  width: 100%;
  margin-bottom: 0.75rem;
}

.waitlist-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a7a68;
  text-align: left;
}

.waitlist-optional {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #9a8b7a;
}

.waitlist-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  color: #283546;
  border: 1px solid rgba(183, 154, 112, 0.55);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-input::placeholder {
  color: rgba(76, 91, 107, 0.45);
}

.waitlist-input:hover {
  border-color: rgba(138, 122, 104, 0.75);
}

.waitlist-input:focus {
  outline: none;
  border-color: #6b8aab;
  box-shadow: 0 0 0 3px rgba(107, 138, 171, 0.22);
}

.waitlist-hp {
  position: absolute;
  left: -10000px;
  top: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.waitlist-hp-label,
.waitlist-hp input {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
}

.waitlist-submit {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.7px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6b6f85;
  border: 2px solid #d9d6e1;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  align-self: center;
}

.waitlist-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(60, 64, 92, 0.16);
}

.waitlist-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.waitlist-status {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #3d5a40;
  text-align: center;
}

.waitlist-status[hidden] {
  display: none !important;
  margin: 0;
}

.waitlist-status--error {
  color: #a04545;
}

.waitlist-privacy {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #7a6f62;
  text-align: center;
}

.features-copy h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.2;
  color: #283546;
}

.features-copy p {
  margin: 0;
  color: #4c5b6b;
  line-height: 1.72;
  max-width: 420px;
}

.features-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b6f85;
}

.features-alerts {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  margin: 0;
}

.alerts-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 3;
  margin-bottom: -2.2rem; /* overlap the next section slightly */
}

.alerts-layout {
  width: min(980px, 100%);
  display: grid;
  place-items: center;
}

.features-alert-image {
  width: min(980px, 100%);
  max-width: none;
  height: auto;
  display: block;
  border-radius: 0;
  flex: 0 1 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 0.7rem;
}

.feature-card {
  border-radius: 16px;
  padding: 0.82rem 0.85rem 0.88rem;
  min-height: 116px;
  box-shadow: 0 10px 18px rgba(31, 33, 53, 0.12);
}

.feature-card h3 {
  margin: 0 0 0.28rem;
  font-size: 1rem;
  color: #243245;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #445466;
}

.feature-card-purple {
  background: linear-gradient(135deg, #ece8ff 0%, #dcd4ff 100%);
}

.feature-card-lime {
  background: linear-gradient(135deg, #eef7c8 0%, #d8ef8f 100%);
}

.feature-card-orange {
  background: linear-gradient(135deg, #ffe9ca 0%, #ffd09a 100%);
}

.feature-card-green {
  background: linear-gradient(135deg, #dff5ce 0%, #b9ea99 100%);
}

.cloud-frame {
  width: min(860px, 100%);
  min-height: 290px;
  padding: 1rem;
  position: relative;
  overflow: visible;
  border-radius: 47% 44% 46% 42% / 56% 52% 48% 44%;
  background: linear-gradient(158deg, #f2faff 0%, #e2f2fa 52%, #d4eaf5 100%);
  box-shadow: 0 20px 36px rgba(18, 34, 53, 0.2);
}

.cloud-content {
  width: 100%;
  min-height: 100%;
  position: relative;
  z-index: 2;
  border-radius: 47% 44% 46% 42% / 56% 52% 48% 44%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(
    160deg,
    rgba(250, 253, 255, 0.9) 0%,
    rgba(238, 248, 252, 0.74) 52%,
    rgba(228, 242, 248, 0.68) 100%
  );
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.6rem;
  padding: 2.2rem 2.2rem;
}

.cloud-frame::before,
.cloud-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(158deg, #f2faff 0%, #e2f2fa 52%, #d4eaf5 100%);
  z-index: 0;
}

.cloud-frame::before {
  width: 180px;
  height: 130px;
  left: 8%;
  top: -34px;
}

.cloud-frame::after {
  width: 160px;
  height: 118px;
  right: 10%;
  top: -28px;
}

.cloud-content::before,
.cloud-content::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(
    160deg,
    rgba(250, 253, 255, 0.88) 0%,
    rgba(236, 246, 252, 0.72) 100%
  );
  z-index: -1;
}

.cloud-content::before {
  width: 120px;
  height: 86px;
  left: 14%;
  top: -20px;
}

.cloud-content::after {
  width: 110px;
  height: 80px;
  right: 16%;
  top: -16px;
}

.cloud-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4b7b90;
}

.cloud-content h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  color: #2a4456;
}

.cloud-content p {
  margin: 0;
  color: #3f5e71;
  line-height: 1.75;
  max-width: 600px;
}

.egg-frame {
  width: min(760px, 100%);
  min-height: 320px;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 46% 46% / 58% 58% 42% 42%;
  background: linear-gradient(158deg, #fff9f0 0%, #f8e8c8 52%, #f0d9b0 100%);
  box-shadow: 0 20px 36px rgba(18, 34, 53, 0.2);
}

.egg-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/countdown-egg.png");
  background-size: 128%;
  background-position: center 64%;
  background-repeat: no-repeat;
  opacity: 0.38;
  z-index: 0;
  pointer-events: none;
}

.egg-content {
  width: 100%;
  min-height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 50% 50% 46% 46% / 58% 58% 42% 42%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(
    160deg,
    rgba(255, 252, 246, 0.92) 0%,
    rgba(255, 246, 230, 0.72) 100%
  );
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.6rem;
  padding: 2.2rem 2rem;
}

.egg-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b6f44;
}

.egg-content h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: #463d31;
}

.egg-content p {
  margin: 0;
  color: #655846;
  line-height: 1.7;
  max-width: 520px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(85px, 1fr));
  gap: 0.75rem;
  width: min(560px, 100%);
  margin-top: 0.4rem;
}

.time-box {
  border-radius: 16px;
  padding: 0.75rem 0.6rem 0.68rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 252, 245, 0.55) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(60, 46, 22, 0.08);
  display: grid;
  place-items: center;
  gap: 0.15rem;
}

.time-value {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1;
  font-weight: 800;
  color: #463d31;
}

.time-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b6f44;
  font-weight: 700;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.8rem;
  border-bottom: 1px solid #eceaf1;
  position: relative;
  z-index: 5;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.logo-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #2f3152;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.77rem;
  text-transform: uppercase;
  font-weight: 600;
}

.menu a {
  display: inline-flex;
  align-items: center;
  color: #747688;
  text-decoration: none;
  line-height: 1;
  padding: 0.38rem 0.18rem;
  margin: -0.38rem -0.18rem;
}

.menu a:hover {
  color: #2f3152;
}

.login-btn {
  border: 1px solid var(--line);
  padding: 0.44rem 0.85rem;
  border-radius: 999px;
  color: #6a6e82;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: linear-gradient(150deg, #fce8c8 0%, #f8e4ba 42%, #efd4a0 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.copy {
  padding: 4.5rem 2.8rem 4rem 3.1rem;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  background: #e8f9f8;
  color: #2b8e8f;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 1.3rem;
  letter-spacing: 0.2px;
}

.description {
  margin: 0 0 2.15rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  font-size: 0.99rem;
}

.hero-micro-trust {
  margin: 0.5rem 0 0;
  padding-left: 0.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #5a6575;
  line-height: 1.45;
  max-width: 520px;
}

.hero-quiz-link-wrap {
  margin: 0.65rem 0 0;
  padding-left: 0.15rem;
}

.hero-quiz-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2d4a6e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-quiz-link:hover {
  color: #1a3550;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.cta-subline {
  margin: 0;
  padding-left: 0.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b85c5c;
  line-height: 1.3;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.7px;
  font-weight: 700;
  color: #6b6f85;
  border: 2px solid #d9d6e1;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(60, 64, 92, 0.16);
}

.cta--secondary {
  min-width: 0;
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(107, 111, 133, 0.35);
  color: #5a5f78;
}

.cta--secondary:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: #c9c5d8;
  color: #2f3152;
}

.art {
  position: relative;
  overflow: visible;
  min-height: 560px;
  z-index: 1;
  pointer-events: none;
}

.character {
  position: absolute;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(20, 33, 52, 0.25));
  opacity: 0;
  transform-origin: bottom center;
}

.character-girl {
  width: min(72%, 470px);
  right: -74px;
  bottom: 0;
  z-index: 3;
  animation: pop-in-right 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
}

.character-boy {
  width: min(69%, 450px);
  right: 122px;
  bottom: -18px;
  z-index: 2;
  animation: pop-in-right-soft 1.02s cubic-bezier(0.16, 1, 0.3, 1) 0.24s forwards;
}

.character-bunny {
  width: min(62%, 390px);
  left: -58px;
  bottom: 0;
  z-index: 1;
  animation: pop-in-left 0.98s cubic-bezier(0.16, 1, 0.3, 1) 0.38s forwards;
}

@keyframes pop-in-right {
  0% {
    opacity: 0;
    transform: translate(120px, 145px) scale(0.52) rotate(-12deg);
  }
  36% {
    opacity: 1;
    transform: translate(28px, 28px) scale(0.9) rotate(-6deg);
  }
  74% {
    opacity: 1;
    transform: translate(0, -16px) scale(1.12) rotate(-2deg);
  }
  88% {
    opacity: 1;
    transform: translate(0, 5px) scale(0.97) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

@keyframes pop-in-right-soft {
  0% {
    opacity: 0;
    transform: translate(102px, 126px) scale(0.56) rotate(-20deg);
  }
  36% {
    opacity: 1;
    transform: translate(20px, 22px) scale(0.9) rotate(-12deg);
  }
  72% {
    opacity: 1;
    transform: translate(0, -13px) scale(1.1) rotate(-6deg);
  }
  88% {
    opacity: 1;
    transform: translate(0, 4px) scale(0.975) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(-5deg);
  }
}

@keyframes pop-in-left {
  0% {
    opacity: 0;
    transform: translate(-105px, 120px) scale(0.56) rotate(-19deg);
  }
  38% {
    opacity: 1;
    transform: translate(-18px, 22px) scale(0.9) rotate(-10deg);
  }
  74% {
    opacity: 1;
    transform: translate(0, -12px) scale(1.1) rotate(-5deg);
  }
  90% {
    opacity: 1;
    transform: translate(0, 4px) scale(0.98) rotate(-4deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(-4deg);
  }
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    isolation: isolate;
  }

  .copy {
    padding: 2.8rem 1.6rem 2.5rem;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .art {
    position: relative;
    z-index: 0;
    /* Tall enough for full figures; overflow visible so heads/feet aren’t clipped */
    min-height: clamp(360px, 62vw, 480px);
    overflow: visible;
    padding: 0 0.5rem 1rem;
    box-sizing: border-box;
  }

  .character-girl {
    width: min(54%, 280px);
    right: max(0px, env(safe-area-inset-right, 0px));
  }

  .character-boy {
    width: min(52%, 270px);
    right: clamp(36px, 14vw, 72px);
    bottom: -6px;
  }

  .character-bunny {
    width: min(46%, 250px);
    left: max(0px, env(safe-area-inset-left, 0px));
  }

  .menu {
    gap: 0.55rem 1.1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .menu a {
    display: inline-flex;
    white-space: nowrap;
  }

  .egg-frame {
    min-height: 300px;
  }

  .cloud-frame {
    min-height: 270px;
  }

  .chat-image-frame {
    width: min(680px, 100%);
  }

  .daily-activities-layout {
    width: min(820px, 100%);
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1rem;
  }

  .features-layout {
    width: min(860px, 100%);
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.05rem;
  }

  .about-layout {
    width: min(860px, 100%);
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-chat-image {
    width: min(330px, 100%);
    margin-right: 0;
  }

  .features-copy {
    text-align: center;
    justify-self: center;
  }

  .features-copy p {
    max-width: 620px;
  }

  .daily-activities-copy {
    text-align: center;
    padding: 0.25rem 0.4rem 0.5rem;
  }

  .daily-activities-layout .chat-image-frame {
    width: min(360px, 100%);
    margin: -8px auto 2px;
    transform: rotate(-4deg);
  }

  .cloud-frame::before {
    width: 145px;
    height: 105px;
    top: -30px;
  }

  .cloud-frame::after {
    width: 130px;
    height: 94px;
    top: -24px;
  }

  .cloud-content::before,
  .cloud-content::after {
    display: none;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(72px, 1fr));
  }
}

@media (max-width: 540px) {
  .thought-bubble {
    max-width: min(220px, calc(100vw - 2.5rem));
    font-size: 0.68rem;
    padding: 0.65rem 0.75rem 0.8rem;
  }

  .thought-bubble-wrap--1 {
    top: 8%;
    left: 2%;
  }

  .thought-bubble-wrap--2 {
    top: 32%;
    right: 2%;
  }

  .thought-bubble-wrap--3 {
    bottom: 8%;
    left: 2%;
  }

  .thought-bubble-wrap--4 {
    top: 14%;
    left: 50%;
    margin-left: calc(-1 * min(110px, 50vw - 1.25rem));
  }

  .thought-bubble-wrap--5 {
    top: 40%;
    right: 1%;
    left: auto;
  }

  .thought-bubble-wrap--6 {
    top: 26%;
    left: 1%;
  }

  .thought-bubble-wrap--7 {
    display: none;
  }

  .thought-bubble-wrap--8 {
    bottom: 20%;
    right: 1%;
    left: auto;
  }

  .thought-bubble-wrap--9 {
    top: 6%;
    right: 1%;
    left: auto;
  }

  .thought-bubble-wrap--10,
  .thought-bubble-wrap--11,
  .thought-bubble-wrap--12,
  .thought-bubble-wrap--13 {
    display: none;
  }

  .nav {
    padding: 0.9rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .menu {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem 0.85rem;
    font-size: 0.7rem;
  }

  .art {
    min-height: clamp(320px, 68vw, 420px);
    padding: 0 0.35rem 0.5rem;
  }

  .page {
    gap: 1.4rem;
    padding: 1rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .character-girl {
    width: min(50%, 200px);
    right: 0;
  }

  .character-boy {
    width: min(48%, 195px);
    right: clamp(18px, 12vw, 44px);
    bottom: -2px;
  }

  .character-bunny {
    width: min(44%, 180px);
    left: 0;
    bottom: 0;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
  }

  .egg-frame {
    min-height: 260px;
    padding: 0.8rem;
  }

  .egg-content {
    padding: 1.6rem 1.2rem;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(90px, 1fr));
    gap: 0.55rem;
  }

  .cloud-frame {
    min-height: 240px;
    padding: 0.75rem;
  }

  .cloud-content {
    padding: 1.5rem 1.2rem;
  }

  .chat-image-frame {
    width: min(520px, 100%);
    padding: 0.55rem;
    border-radius: 18px;
  }

  .chat-image {
    border-radius: 12px;
  }

  .daily-activities-copy {
    padding: 1.05rem 1rem;
  }

  .daily-activities-layout .chat-image-frame {
    width: min(280px, 100%);
    margin: -6px auto 0;
    transform: rotate(-2deg);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .about-chat-image {
    width: min(280px, 100%);
    margin-right: 0;
  }

  .alerts-layout {
    width: min(560px, 100%);
  }

  .alerts-section {
    margin-bottom: -1.2rem;
  }

  .features-alerts {
    flex-direction: column;
    gap: 0.85rem;
  }

  .features-alert-image {
    width: min(560px, 100%);
    max-width: none;
  }
}

@media (max-width: 768px) {
  .page {
    align-items: stretch;
  }
}

/* --- Narrative sections (new landing copy) --- */
.stakes-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  scroll-margin-top: 2rem;
}

.stakes-panel {
  width: 100%;
  max-width: min(1040px, calc(100% - 0.01px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.35rem, 3.5vw, 2.35rem);
  align-items: center;
  padding: clamp(1.45rem, 3.5vw, 2.15rem) clamp(1.25rem, 3.5vw, 2rem);
  background: linear-gradient(148deg, #f6f0e6 0%, #efe4d6 45%, #e2d5c5 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(24, 35, 52, 0.14);
  position: relative;
  z-index: 2;
}

.stakes-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5a6478;
}

.stakes-copy h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.9vw, 2rem);
  line-height: 1.2;
  font-weight: 800;
  color: #3d2f26;
}

.stakes-lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.55;
  font-weight: 500;
  color: #4a382e;
  max-width: 34ch;
}

.stakes-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.stakes-stat-card {
  margin: 0;
  padding: 0.95rem 1rem;
  background: linear-gradient(160deg, rgba(255, 254, 250, 0.97) 0%, rgba(252, 248, 238, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(45, 36, 28, 0.06);
}

.stakes-stat-card--wide {
  grid-column: 1 / -1;
}

.stakes-stat-value {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
  color: #3d2f26;
}

.stakes-stat-text {
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 500;
  color: #4a382e;
}

@media (max-width: 820px) {
  .stakes-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stakes-lead {
    margin-inline: auto;
    max-width: 42ch;
  }

  .stakes-stat-grid {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .stakes-stat-grid {
    grid-template-columns: 1fr;
  }

  .stakes-stat-card--wide {
    grid-column: auto;
  }
}

.feeling-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  scroll-margin-top: 2rem;
}

.feeling-inner {
  width: fit-content;
  max-width: min(600px, calc(100% - 2rem));
  margin-inline: auto;
  text-align: center;
  padding: 1.5rem clamp(1.1rem, 4vw, 1.65rem) 1.65rem;
  background: var(--frame-glass);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(24, 35, 52, 0.14);
  position: relative;
  z-index: 2;
}

.feeling-kicker {
  justify-self: center;
}

.feeling-inner h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.2;
  color: #283546;
}

.feeling-sub {
  margin: 0 0 1.25rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #4a506e;
}

.feeling-bullets {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  text-align: left;
  display: grid;
  gap: 0.65rem;
  color: #445466;
  font-size: 0.95rem;
  line-height: 1.55;
}

.feeling-bullets li {
  position: relative;
  padding-left: 1.15rem;
}

.feeling-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2b8e8f;
  opacity: 0.85;
}

.cloud-lead {
  font-weight: 600;
  color: #2a4456;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.55;
  max-width: 560px;
  margin: 0;
}

.shift-steps-wrap.features-layout {
  grid-template-columns: 1fr;
  width: min(1040px, 100%);
  margin-top: 0.85rem;
}

.shift-steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.demo-flow-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  scroll-margin-top: 2rem;
}

.demo-flow-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: calc(100% - 2rem);
  gap: 0;
}

.demo-flow-inner {
  width: fit-content;
  max-width: min(520px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 1.45rem clamp(1.1rem, 4vw, 1.5rem) 1.55rem;
  background: var(--frame-glass);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(24, 35, 52, 0.14);
  text-align: center;
  position: relative;
  z-index: 1;
}

.demo-flow-wrap .demo-flow-inner {
  margin-inline: 0;
}

@keyframes demo-flow-bunny-peek {
  0% {
    transform: translate3d(-0.65rem, 0.12rem, 0) rotate(-2.2deg);
  }
  100% {
    transform: translate3d(0.55rem, -0.1rem, 0) rotate(1.6deg);
  }
}

.demo-flow-bunny {
  flex: 0 0 auto;
  height: clamp(15rem, 52vw, 26rem);
  width: auto;
  margin-left: clamp(-3.5rem, -10vw, -1.5rem);
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 3;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
  align-self: flex-end;
  /* Black matte in source asset: let page show through */
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: no-preference) {
  .demo-flow-bunny {
    animation: demo-flow-bunny-peek 3.1s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
    will-change: transform;
  }
}

.demo-flow-inner > .features-kicker {
  text-align: center;
}

.demo-flow-inner h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  color: #283546;
}

.demo-flow {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}

.demo-flow-step {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f6fcff 0%, #eaf4fb 50%, #ddeef8 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 18px rgba(24, 35, 52, 0.08);
  text-align: center;
}

.demo-flow-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4b7b90;
  margin-bottom: 0.35rem;
}

.demo-flow-step p {
  margin: 0;
  color: #2e3f4d;
  font-size: 0.95rem;
  line-height: 1.5;
}

.demo-flow-quote {
  font-style: italic;
  font-weight: 500;
}

.demo-flow-arrow {
  margin: 0;
  font-size: 1.25rem;
  color: #6b6f85;
  line-height: 1;
}

.demo-flow-caption {
  margin: 1.1rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #5a6575;
}

.why-works-visual.alerts-section {
  margin-bottom: -0.5rem;
}

.why-works-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  scroll-margin-top: 2rem;
}

.why-works-inner {
  width: fit-content;
  max-width: min(680px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 1.45rem clamp(1.1rem, 4vw, 1.55rem) 1.55rem;
  background: var(--frame-glass);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(24, 35, 52, 0.14);
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-works-inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  color: #283546;
  line-height: 1.22;
}

.why-works-body {
  margin: 0 auto 1rem;
  max-width: 620px;
  color: #445466;
  line-height: 1.7;
  font-size: 0.98rem;
}

.anchor-line {
  margin: 0 auto;
  max-width: 560px;
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: #3d4f63;
  line-height: 1.55;
}

.comparison-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  scroll-margin-top: 2rem;
}

.comparison-inner {
  width: min(880px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 1.45rem clamp(1rem, 3vw, 1.35rem) 1.5rem;
  text-align: center;
  background: var(--frame-glass);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(24, 35, 52, 0.14);
}

.comparison-inner > .features-kicker {
  text-align: center;
}

.comparison-inner h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  color: #283546;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  text-align: left;
}

.comparison-col {
  border-radius: 20px;
  padding: 1.1rem 1.15rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 28px rgba(24, 35, 52, 0.1);
}

.comparison-col--without {
  background: linear-gradient(155deg, #fff8f8 0%, #fff2f2 48%, #fce8e8 100%);
}

.comparison-col--with {
  background: linear-gradient(155deg, #f6fff9 0%, #e8faf0 48%, #dff5e8 100%);
}

.comparison-col h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: #283546;
}

.comparison-col ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: #445466;
  font-size: 0.92rem;
  line-height: 1.65;
  display: grid;
  gap: 0.45rem;
}

.setup-trust-pair {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.85rem);
  align-items: stretch;
  scroll-margin-top: 2rem;
}

.setup-section {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  scroll-margin-top: 2rem;
}

.setup-inner {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding: 1.55rem clamp(1.15rem, 3.5vw, 1.65rem) 1.6rem;
  background: var(--frame-glass);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  box-shadow:
    0 22px 44px rgba(24, 35, 52, 0.11),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
}

.setup-inner h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  color: #283546;
  letter-spacing: -0.02em;
}

.setup-steps {
  counter-reset: setup-step;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: 17.5rem;
  color: #445466;
  line-height: 1.65;
  font-size: 0.95rem;
  display: grid;
  gap: 0.65rem;
  flex: 1 1 auto;
}

.setup-steps li {
  counter-increment: setup-step;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.setup-steps li::before {
  content: counter(setup-step);
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(232, 249, 248, 0.95), rgba(212, 240, 239, 0.75));
  border: 1px solid rgba(43, 142, 143, 0.22);
  box-shadow: 0 2px 8px rgba(43, 142, 143, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #237a7b;
  flex-shrink: 0;
}

.setup-reinforce {
  list-style: none;
  margin: 0 auto;
  padding: 1.1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5a6575;
  margin-top: auto;
}

.setup-reinforce li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(232, 249, 248, 0.88);
  border: 1px solid rgba(43, 142, 143, 0.18);
  box-shadow: 0 2px 6px rgba(43, 142, 143, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .setup-reinforce li:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(43, 142, 143, 0.12);
  }
}

.trust-pillars-section {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  scroll-margin-top: 2rem;
}

.trust-pillars-inner {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding: 1.55rem clamp(1.15rem, 3.5vw, 1.65rem) 1.6rem;
  background: linear-gradient(145deg, #fbf9ff 0%, #eee6ff 38%, #e2ecff 72%, #dce8fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  box-shadow:
    0 22px 44px rgba(36, 28, 72, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
}

.trust-pillars-inner h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  color: #283546;
  letter-spacing: -0.02em;
}

.trust-pillars-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 19rem;
  text-align: left;
  display: grid;
  gap: 0.55rem;
  color: #445466;
  font-size: 0.95rem;
  flex: 1 1 auto;
}

.trust-pillars-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-left: 0;
}

.trust-pillars-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  background: rgba(43, 142, 143, 0.12);
  border: 1px solid rgba(43, 142, 143, 0.2);
  display: grid;
  place-items: center;
  color: #1f7a7b;
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1;
}

.trust-pillars-line {
  margin: 0;
  padding-top: 1.1rem;
  margin-top: auto;
  font-weight: 700;
  color: #3d4f63;
  font-size: 0.95rem;
  line-height: 1.45;
}

.positioning-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  scroll-margin-top: 2rem;
}

.positioning-inner {
  width: fit-content;
  max-width: min(720px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 1.35rem clamp(1.1rem, 4vw, 1.45rem) 1.45rem;
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--frame-glass);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(24, 35, 52, 0.12);
}

.positioning-inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  color: #283546;
  line-height: 1.2;
}

.positioning-sub {
  margin: 0;
  font-size: 1rem;
  color: #5a6575;
  line-height: 1.65;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.final-close-section {
  width: min(1120px, 100%);
  display: grid;
  place-items: center;
  scroll-margin-top: 2rem;
}

.final-close-inner {
  width: fit-content;
  max-width: min(680px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 1.65rem clamp(1.1rem, 4vw, 1.75rem) 1.75rem;
  background: linear-gradient(158deg, #fffaf0 0%, #fae8c4 48%, #f0d5a8 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(74, 56, 28, 0.18);
  text-align: center;
  position: relative;
  z-index: 2;
}

.final-close-inner h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  color: #463d31;
  line-height: 1.2;
}

.final-close-body {
  margin: 0 0 0.5rem;
  color: #655846;
  line-height: 1.65;
  font-size: 0.98rem;
}

.final-close-cta-line {
  margin: 0 0 1rem;
  font-weight: 700;
  color: #463d31;
  font-size: 1rem;
}

.final-close-cta {
  margin: 0 auto;
}

@media (max-width: 900px) {
  .shift-steps-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .setup-trust-pair {
    grid-template-columns: 1fr;
  }
}
