:root {
  --bg: #fff8fa;
  --surface: #ffffff;
  --ink: #251723;
  --muted: #6f606a;
  --line: rgba(61, 31, 53, 0.12);
  --coral: #fb5b72;
  --plum: #5d244b;
  --rose: #f5a1b4;
  --teal: #1f9c95;
  --mint: #e6f7f1;
  --sun: #f8c24b;
  --shadow: 0 24px 70px rgba(93, 36, 75, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(37, 23, 35, 0.12);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 850;
  color: var(--plum);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--plum);
  box-shadow: inset 0 -8px 18px rgba(0, 0, 0, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(37, 23, 35, 0.78);
  font-size: 0.92rem;
  font-weight: 720;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(93, 36, 75, 0.08);
  outline: none;
}

.site-nav .nav-cta {
  color: #ffffff;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 8px;
  background: #ffffff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(22px, 5vw, 72px) 72px;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 248, 250, 0.96) 0%, rgba(255, 248, 250, 0.82) 34%, rgba(255, 248, 250, 0.2) 66%, rgba(37, 23, 35, 0.18) 100%),
    linear-gradient(0deg, rgba(255, 248, 250, 0.9) 0%, rgba(255, 248, 250, 0.06) 34%);
}

.hero-content {
  width: min(720px, 100%);
  padding-bottom: 2vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  color: var(--plum);
  font-size: clamp(4.2rem, 12vw, 9.2rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-copy {
  width: min(640px, 100%);
  margin: 28px 0 0;
  color: rgba(37, 23, 35, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 0.96rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #ffffff;
  background: var(--plum);
  box-shadow: 0 18px 38px rgba(93, 36, 75, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(37, 23, 35, 0.13);
}

.proof-band {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: -34px auto 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-band div {
  min-height: 118px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.proof-band strong {
  display: block;
  color: var(--plum);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.proof-band span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 680;
  line-height: 1.35;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.split p {
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.mission-card {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(93, 36, 75, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.96)),
    var(--mint);
  box-shadow: 0 20px 54px rgba(31, 156, 149, 0.13);
}

.mission-card img {
  width: 102px;
  filter: drop-shadow(0 16px 26px rgba(251, 91, 114, 0.28));
}

.mission-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 760;
}

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

.pillar-grid article,
.feature-card,
.impact-grid article,
.roadmap div,
.safety-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.pillar-grid article {
  position: relative;
  min-height: 250px;
  padding: 22px;
  overflow: hidden;
}

.pillar-grid span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.card-illustration {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 64px;
  height: 64px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(93, 36, 75, 0.1);
}

.pillar-grid p,
.feature-card p,
.roadmap p {
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.product-section {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1120px) / 2));
  background: #f4fbf8;
  border-block: 1px solid rgba(31, 156, 149, 0.12);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.phone-shell {
  width: min(360px, 100%);
  margin: 0 auto;
  padding: 12px;
  border-radius: 42px;
  background: #22151f;
  box-shadow: 0 32px 90px rgba(37, 23, 35, 0.28);
}

.phone-screen {
  min-height: 640px;
  padding: 22px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(248, 194, 75, 0.45), transparent 30%),
    linear-gradient(180deg, #fff7f9, #ffffff 54%, #eefaf6);
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  color: var(--plum);
  font-weight: 900;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}

.request-card,
.feed-card {
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(93, 36, 75, 0.12);
}

.request-card small {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.request-card strong,
.feed-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
}

.request-card p,
.feed-card p {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.mini-map {
  position: relative;
  height: 220px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(37, 23, 35, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(37, 23, 35, 0.07) 1px, transparent 1px),
    #e7f3ef;
  background-size: 44px 44px;
}

.mini-map span {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 10px 22px rgba(251, 91, 114, 0.32);
}

.mini-map span:nth-child(1) {
  left: 20%;
  top: 30%;
}

.mini-map span:nth-child(2) {
  right: 18%;
  top: 42%;
  background: var(--teal);
}

.mini-map span:nth-child(3) {
  left: 48%;
  bottom: 22%;
  background: var(--sun);
}

.steps article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(37, 23, 35, 0.12);
}

.steps h2 {
  margin-bottom: 22px;
}

.steps span {
  color: var(--plum);
  font-size: 1.05rem;
  font-weight: 900;
}

.steps p {
  margin: 0;
}

.impact-section {
  padding-bottom: 88px;
}

.impact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 28px;
  align-items: end;
}

.impact-hero img {
  width: 140px;
  justify-self: end;
  filter: drop-shadow(0 22px 30px rgba(248, 194, 75, 0.26));
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.impact-grid article {
  position: relative;
  min-height: 178px;
  padding: 22px;
  overflow: hidden;
}

.impact-grid strong {
  display: block;
  padding-right: 54px;
  color: var(--plum);
  font-size: 1.1rem;
}

.mini-illustration {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
}

.impact-grid span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.safety-section {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1120px) / 2));
  background: #271922;
  color: #ffffff;
}

.safety-section h2,
.safety-section p {
  color: #ffffff;
}

.safety-section p {
  opacity: 0.78;
}

.safety-list {
  display: grid;
  gap: 10px;
}

.safety-list div {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.list-illustration {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
}

.safety-list strong,
.safety-list span {
  display: block;
  padding-right: 52px;
}

.safety-list strong {
  color: #ffffff;
}

.safety-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p {
  margin: 0;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  background: #ffffff;
  overflow: hidden;
}

.feature-card.wide {
  grid-column: span 2;
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 70px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.feature-illustration {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 74px;
  height: 74px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 248, 250, 0.95);
  box-shadow: 0 18px 40px rgba(93, 36, 75, 0.1);
}

.download-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px);
  border: 1px solid rgba(93, 36, 75, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 20%, rgba(248, 194, 75, 0.26), transparent 34%),
    linear-gradient(135deg, #ffffff, #fff0f4);
  box-shadow: var(--shadow);
}

.download-copy p:not(.eyebrow) {
  width: min(610px, 100%);
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.store-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(37, 23, 35, 0.12);
  border-radius: 999px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(37, 23, 35, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(93, 36, 75, 0.14);
}

.qr-card img {
  width: min(240px, 100%);
  border-radius: 24px;
}

.qr-card strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.qr-card span {
  color: var(--muted);
  font-weight: 720;
  text-align: center;
}

.roadmap-section {
  border-top: 1px solid var(--line);
}

.roadmap-section h2 {
  width: min(820px, 100%);
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.roadmap div {
  min-height: 260px;
  padding: 24px;
}

.roadmap strong {
  display: block;
  margin-bottom: 70px;
  color: var(--coral);
}

.roadmap span {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.faq-section {
  padding-top: 40px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.cta-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 5vw, 56px);
  border-radius: 26px;
  color: #ffffff;
  background:
    linear-gradient(110deg, rgba(93, 36, 75, 0.96), rgba(251, 91, 114, 0.86)),
    var(--plum);
  box-shadow: 0 30px 90px rgba(93, 36, 75, 0.22);
}

.cta-section .eyebrow,
.cta-section h2 {
  color: #ffffff;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.cta-section .button-primary {
  color: var(--ink);
  background: #ffffff;
  box-shadow: none;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  min-height: 118px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 42px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--plum);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a {
  color: var(--plum);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.legal-page {
  background:
    radial-gradient(circle at top right, rgba(245, 161, 180, 0.28), transparent 34rem),
    var(--bg);
}

.legal-main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 56px;
}

.legal-hero {
  padding: 42px 0 28px;
}

.legal-hero h1 {
  margin: 0;
  color: var(--plum);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.9;
}

.legal-hero p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin: 18px 0 0;
  color: var(--plum);
  font-size: clamp(1.24rem, 2vw, 1.65rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  color: rgba(37, 23, 35, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-content a {
  color: var(--plum);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, 680px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 10px;
    right: 10px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    min-height: 86vh;
    padding: 118px 22px 60px;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255, 248, 250, 0.94) 0%, rgba(255, 248, 250, 0.78) 48%, rgba(255, 248, 250, 0.32) 100%),
      linear-gradient(90deg, rgba(255, 248, 250, 0.95), rgba(255, 248, 250, 0.42));
  }

  .proof-band,
  .pillar-grid,
  .impact-grid,
  .community-grid,
  .roadmap {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .product-layout,
  .section-heading,
  .download-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .cta-section {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 58px;
    padding-left: 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 84vh;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 6.6rem);
  }

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

  .proof-band,
  .pillar-grid,
  .impact-grid,
  .community-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .proof-band {
    margin-top: -18px;
  }

  .section {
    padding-block: 64px;
  }

  .mission-card {
    min-height: 260px;
  }

  .phone-screen {
    min-height: 560px;
  }

  .steps article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .impact-hero {
    grid-template-columns: 1fr;
  }

  .impact-hero img {
    justify-self: start;
    width: 112px;
  }

  .feature-card.wide {
    grid-column: auto;
  }

  .feature-card,
  .pillar-grid article,
  .roadmap div {
    min-height: 210px;
  }

  .feature-card span,
  .roadmap strong,
  .pillar-grid span {
    margin-bottom: 38px;
  }

  .card-illustration {
    width: 56px;
    height: 56px;
  }

  .feature-illustration {
    width: 62px;
    height: 62px;
  }

  .download-section {
    width: min(100% - 32px, 520px);
    padding: 30px 20px;
    border-radius: 22px;
  }

  .store-badges span {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .legal-main {
    padding-top: 104px;
  }
}
