:root {
  --ink: #171329;
  --muted: #625e70;
  --purple: #6432d5;
  --purple-dark: #3f178f;
  --pink: #ef5aa1;
  --lavender: #eee8ff;
  --cream: #fbf8f3;
  --white: #fff;
  --line: rgba(38, 24, 65, .13);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
html, body { overflow-x: hidden; }
body.menu-open { overflow: hidden; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: -.045em; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(251, 248, 243, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled { border-color: var(--line); }
.brand img { width: 118px; }
.main-nav { display: flex; gap: 30px; margin-left: auto; font-size: 14px; font-weight: 600; }
.main-nav a { color: #4d4858; transition: color .2s; }
.main-nav a:hover { color: var(--purple); }
.menu-toggle { display: none; }

.button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--purple); box-shadow: 0 12px 30px rgba(100, 50, 213, .25); }
.button-primary:hover { background: var(--purple-dark); }
.button-outline { border: 1px solid var(--purple); color: var(--purple); }
.button-light { background: white; color: var(--purple-dark); }
.button-small { min-height: 44px; padding: 0 20px; font-size: 14px; }
.text-link { font-weight: 700; color: var(--purple-dark); }
.text-link span { margin-left: 6px; }

.hero {
  min-height: 760px;
  padding: 145px clamp(24px, 7vw, 110px) 60px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 6vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 12%, rgba(239,90,161,.13), transparent 23%),
    radial-gradient(circle at 62% 75%, rgba(112,74,222,.13), transparent 22%);
}
.hero-copy { max-width: 680px; position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  display: block;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 11px;
  font-weight: 800;
  color: var(--purple);
}
.hero h1 { max-width: 720px; margin-bottom: 26px; font-size: clamp(52px, 6.2vw, 94px); line-height: .99; }
.hero h1 em { color: var(--purple); font-style: normal; }
.hero-lead { max-width: 620px; color: var(--muted); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.trust-line { margin-top: 42px; display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--muted); }
.trust-line p { margin: 0; }
.mini-faces { display: flex; }
.mini-faces i { width: 28px; height: 28px; margin-left: -7px; border: 3px solid var(--cream); border-radius: 50%; background: var(--lavender); }
.mini-faces i:nth-child(2) { background: #ffd9e8; }
.mini-faces i:nth-child(3) { background: #d7f1ea; }
.store-coming {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 4;
  width: min(420px, 92%);
  margin-top: 0;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 20px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 44px rgba(45, 26, 82, .14);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}
.store-coming p {
  margin: 0;
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.store-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.store-badge {
  min-width: 142px;
  min-height: 44px;
  padding: 6px 11px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(38, 24, 65, .13);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(251,250,255,.92);
  box-shadow: none;
  transition: transform .2s, border-color .2s, background .2s;
}
.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(100, 50, 213, .28);
  background: white;
}
.store-badge span:last-child {
  display: grid;
  gap: 1px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}
.store-badge small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.store-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  position: relative;
  display: grid;
  place-items: center;
}
.app-store-icon::before {
  content: "";
  width: 18px;
  height: 22px;
  border-radius: 45% 45% 50% 50%;
  background: var(--purple);
  box-shadow: inset -6px -5px 0 rgba(255,255,255,.18);
}
.app-store-icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 3px;
  width: 10px;
  height: 7px;
  border-radius: 10px 2px 10px 2px;
  background: var(--pink);
  transform: rotate(-28deg);
}
.play-store-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid var(--purple);
  filter: drop-shadow(8px 0 0 var(--pink));
}
.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.portrait-wrap {
  position: relative;
  z-index: 2;
  width: min(460px, 84%);
  aspect-ratio: 1;
  padding: 12px;
  overflow: hidden;
  border-radius: 48% 48% 44% 44%;
  background: rgba(255,255,255,.66);
  box-shadow: 0 40px 80px rgba(64, 26, 127, .18);
  transform: rotate(2deg);
}
.portrait-track {
  height: 100%;
  display: flex;
  border-radius: inherit;
  transition: transform .9s cubic-bezier(.2, .72, .2, 1);
}
.portrait-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.portrait-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  padding: 7px;
  display: flex;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 10px 28px rgba(45, 26, 82, .12);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}
.portrait-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(63,23,143,.24);
  transition: width .25s ease, background .25s ease;
}
.portrait-dots span.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--purple);
}
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 460px; height: 460px; background: linear-gradient(135deg, #c9b5ff, #ffd2e7); }
.orb-two { width: 560px; height: 300px; bottom: 25px; background: rgba(255,255,255,.72); filter: blur(45px); }
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 18px;
  background: rgba(255,255,255,.87);
  box-shadow: 0 16px 40px rgba(45, 26, 82, .13);
  backdrop-filter: blur(12px);
}
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { min-width: 128px; font-size: 14px; transition: opacity .2s ease; }
.floating-card small { min-width: 128px; margin-top: 3px; color: var(--muted); font-size: 11px; transition: opacity .2s ease; }
.floating-card.is-changing strong,
.floating-card.is-changing small { opacity: 0; }
.card-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; color: var(--purple); background: var(--lavender); font-size: 19px; }
.card-chat { left: 0; top: 30%; }
.card-program { right: -3%; top: 50%; }

.purpose-strip {
  padding: 20px 5vw;
  display: flex;
  justify-content: center;
  gap: clamp(13px, 3vw, 48px);
  color: white;
  background: var(--purple-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
}
.purpose-strip p { margin: 0; }
.purpose-strip span { color: #a98bee; }
.section { padding: 110px clamp(24px, 7vw, 110px); }
.intro { background: white; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; align-items: end; }
.intro h2, .institution-heading h2, .trust-heading h2 { margin: 0; font-size: clamp(38px, 4.5vw, 67px); line-height: 1.05; }
.intro h2 span, .institution-heading h2 span, .trust-heading h2 span { color: var(--purple); }
.intro-grid > div p:first-child { color: var(--muted); font-size: 19px; line-height: 1.65; }
.note { padding-left: 18px; border-left: 2px solid var(--pink); color: #777180; font-size: 13px; line-height: 1.55; }
.steps { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  min-height: 286px;
  padding: 38px 22px 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(38, 24, 65, .1);
  border-radius: 24px;
  background: #fbfaff;
  box-shadow: 0 22px 58px rgba(52, 27, 99, .07);
}
.step-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -55px;
  height: 120px;
  background: rgba(238,232,255,.72);
  transform: rotate(-5deg);
  z-index: 0;
}
.step-card:nth-child(2)::after { background: rgba(255,217,232,.72); }
.step-card:nth-child(3)::after { background: rgba(215,241,234,.72); }
.step-visual {
  height: 78px;
  margin-bottom: 18px;
  display: grid;
  position: relative;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,244,255,.88));
  border: 1px solid rgba(38, 24, 65, .08);
  z-index: 1;
}
.step-avatar {
  width: 100px;
  height: 100px;
  position: absolute;
  right: 14px;
  top: -32px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 34px rgba(100,50,213,.16);
  z-index: 7;
}
.step-visual::after {
  content: "";
  position: absolute;
  right: 7px;
  top: -39px;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: rgba(255,255,255,.62);
  box-shadow: inset 0 0 0 1px rgba(100,50,213,.08);
  z-index: 6;
}
.step-label {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--lavender);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 1;
}
.step-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
  z-index: 1;
}
.step-visual h3 {
  max-width: calc(100% - 120px);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink);
  z-index: 5;
}
.step-card p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
  z-index: 1;
}
.chat-bubble {
  position: absolute;
  border-radius: 22px;
  background: #eee8ff;
  box-shadow: 0 14px 28px rgba(100,50,213,.1);
  opacity: .5;
}
.chat-bubble.large {
  width: 88px;
  height: 30px;
  left: 46%;
  top: 14px;
}
.chat-bubble.large::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -10px;
  border-width: 11px 10px 0 0;
  border-style: solid;
  border-color: #eee8ff transparent transparent transparent;
}
.chat-bubble.small {
  width: 46px;
  height: 23px;
  left: 58%;
  bottom: 13px;
  background: #ffd9e8;
}
.chat-dot {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 42%;
  top: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef5aa1, #6432d5);
  box-shadow: 0 14px 30px rgba(100,50,213,.2);
}
.guide-card {
  width: 86px;
  height: 38px;
  display: block;
  position: absolute;
  left: 48%;
  top: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7f4ff, #fff5fa);
  border: 1px solid rgba(38,24,65,.1);
  opacity: .55;
}
.guide-spark {
  width: 22px;
  height: 22px;
  position: absolute;
  left: 42%;
  top: 18px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 14px 30px rgba(100,50,213,.22);
}
.guide-spark::before,
.guide-spark::after {
  content: "";
  position: absolute;
  inset: 7px 10px;
  border-radius: 999px;
  background: white;
}
.guide-spark::after { transform: rotate(90deg); }
.guide-line {
  width: 52px;
  height: 5px;
  position: absolute;
  left: 62%;
  bottom: 18px;
  border-radius: 999px;
  background: #cfc6dd;
}
.guide-line.short { width: 36px; bottom: 31px; }
.network-node {
  position: absolute;
  border-radius: 50%;
  background: #ffd9e8;
  box-shadow: 0 0 0 8px rgba(255,217,232,.35);
  opacity: .62;
}
.network-node.main {
  width: 30px;
  height: 30px;
  background: var(--purple);
  left: 47%;
  top: 50%;
  transform: translateY(-50%);
}
.network-node.top {
  width: 21px;
  height: 21px;
  left: 67%;
  top: 16px;
  background: #d7f1ea;
  box-shadow: 0 0 0 8px rgba(215,241,234,.45);
}
.network-node.bottom {
  width: 21px;
  height: 21px;
  right: auto;
  left: 67%;
  bottom: 15px;
}
.step-network .network-node.main::before,
.step-network .network-node.main::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  background: rgba(100,50,213,.18);
  right: -60px;
  top: 50%;
  transform-origin: left center;
}
.step-network .network-node.main::before { transform: rotate(-28deg); }
.step-network .network-node.main::after { transform: rotate(28deg); }

.use-cases-section {
  background:
    linear-gradient(135deg, rgba(238,232,255,.74), rgba(255,255,255,.88) 46%, rgba(255,217,232,.52)),
    white;
}
.use-cases-heading {
  max-width: 980px;
}
.use-cases-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 70px);
  line-height: 1.05;
}
.use-cases-heading h2 span { color: var(--purple); }
.use-cases-heading p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.use-cases-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.use-case-card {
  min-height: 620px;
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(38, 24, 65, .12);
  border-radius: 30px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 28px 70px rgba(52, 27, 99, .09);
  backdrop-filter: blur(12px);
}
.use-case-card.user-world {
  color: white;
  border-color: rgba(255,255,255,.22);
  background: linear-gradient(145deg, #241345, #5d2bc2 58%, #b44595);
}
.use-case-card.institution-world { background: rgba(255,255,255,.9); }
.case-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 42px;
  font: 800 12px "Manrope";
  text-transform: uppercase;
  letter-spacing: .14em;
}
.case-topline span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--purple);
  letter-spacing: 0;
}
.user-world .case-topline span {
  background: rgba(255,255,255,.15);
  color: white;
}
.case-topline strong { color: var(--purple-dark); }
.user-world .case-topline strong { color: #eadfff; }
.use-case-card h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.07;
}
.use-case-card > p {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.user-world > p { color: #e3daf8; }
.case-list {
  display: grid;
  gap: 14px;
}
.case-list div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(63,23,143,.14);
}
.user-world .case-list div { border-color: rgba(255,255,255,.18); }
.case-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--purple);
  background: #f1ecfc;
  font-weight: 800;
}
.user-world .case-list span {
  color: white;
  background: rgba(255,255,255,.14);
}
.case-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.case-list strong { color: var(--ink); }
.user-world .case-list p { color: #d8ccec; }
.user-world .case-list strong { color: white; }
.case-link {
  margin-top: auto;
  padding-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--purple-dark);
  font-weight: 800;
}
.user-world .case-link { color: white; }
.case-link span { font-size: 15px; }

.women-section { padding-bottom: 0; display: grid; grid-template-columns: 1fr .9fr; gap: 8vw; color: white; background: #241345; overflow: hidden; }
.women-copy { padding-bottom: 100px; }
.section-kicker.light, .eyebrow.light { color: #c8b6f2; }
.women-copy h2 { max-width: 700px; font-size: clamp(40px, 4.8vw, 70px); line-height: 1.05; }
.women-copy > p { max-width: 600px; color: #cfc6dc; font-size: 18px; line-height: 1.65; }
.benefit-list { margin-top: 45px; }
.benefit-list > div { padding: 20px 0; display: flex; gap: 20px; border-top: 1px solid rgba(255,255,255,.16); }
.benefit-list span { color: #a98bee; font: 700 12px "Manrope"; }
.benefit-list p { margin: 0; color: #cfc6dc; line-height: 1.5; }
.benefit-list strong { color: white; }
.phone-stage { position: relative; min-height: 730px; display: grid; place-items: end center; }
.phone-frame { position: relative; z-index: 2; width: min(390px, 84%); height: 670px; overflow: hidden; border: 9px solid #0c0911; border-bottom: 0; border-radius: 47px 47px 0 0; background: white; box-shadow: 0 25px 80px rgba(0,0,0,.38); }
.phone-frame img { width: 100%; }
.phone-glow { position: absolute; width: 520px; height: 520px; bottom: 0; border-radius: 50%; background: radial-gradient(circle, rgba(221,85,191,.6), transparent 66%); }
.screen-badge { position: absolute; z-index: 3; right: 0; top: 20%; padding: 10px 14px; border-radius: 12px; color: var(--purple-dark); background: white; font-size: 11px; font-weight: 700; }

.institution-section { background: #f1ecfc; }
.institution-heading { max-width: 940px; }
.institution-heading > p { max-width: 720px; margin-top: 28px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.institution-layout { margin-top: 65px; display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; }
.institution-panels { display: grid; gap: 22px; }
.impact-panel { min-height: 430px; padding: 28px; border: 1px solid rgba(81,44,149,.12); border-radius: 30px; background: white; box-shadow: 0 30px 60px rgba(52, 27, 99, .1); }
.impact-top { display: flex; justify-content: space-between; font-weight: 700; font-size: 13px; }
.status-dot { color: #27836c; }
.status-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #42b293; }
.mock-chart { height: 260px; margin: 34px 0 22px; padding-top: 25px; display: flex; align-items: flex-end; gap: 12px; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to bottom, transparent 0 61px, rgba(42,25,75,.06) 62px); }
.chart-bar { width: 100%; height: var(--h); border-radius: 9px 9px 0 0; background: #dcd5e8; }
.chart-bar.active { background: linear-gradient(to top, var(--purple), #a876ee); }
.impact-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.impact-footer div { padding: 16px; border-radius: 16px; background: #f8f5fc; }
.impact-footer strong, .impact-footer small { display: block; }
.impact-footer strong { color: var(--purple); }
.impact-footer small { margin-top: 5px; color: var(--muted); }
.concept-label { margin: 18px 0 0; color: #91899b; font-size: 10px; text-align: center; }
.institution-benefits article { padding: 24px 0; display: grid; grid-template-columns: 42px 1fr; border-top: 1px solid rgba(63,23,143,.17); }
.institution-benefits article > span { color: var(--purple); font: 800 12px "Manrope"; }
.institution-benefits h3 { margin-bottom: 8px; font-size: 21px; }
.institution-benefits p { margin: 0; color: var(--muted); line-height: 1.55; }
.sos-dashboard {
  min-height: 430px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(226, 58, 72, .2);
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #fff7f8);
  box-shadow: 0 28px 70px rgba(107, 49, 94, .12);
}
.sos-carousel {
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
}
.sos-carousel-track {
  height: 100%;
  display: flex;
  transition: transform 1s ease;
}
.sos-slide {
  min-width: 100%;
  min-height: 386px;
  padding: 6px;
  display: flex;
  flex-direction: column;
}
.sos-alert-banner {
  padding: 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(226, 58, 72, .18);
  border-radius: 20px;
  background: #fff0f2;
  box-shadow: 0 14px 32px rgba(226, 58, 72, .1);
}
.sos-alert-banner span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #e22d36;
  border: 2px solid #ff9ea6;
  border-radius: 50%;
  font-weight: 900;
}
.sos-alert-banner strong {
  display: block;
  color: #8a6268;
  text-transform: uppercase;
  font: 800 13px "Manrope";
  letter-spacing: .02em;
}
.sos-alert-banner p {
  margin: 4px 0 0;
  color: #a37b82;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
.sos-dashboard-head {
  margin: 6px 0 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.sos-dashboard-head .section-kicker {
  margin-bottom: 10px;
  color: #e22d36;
}
.sos-dashboard-head h3 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 1.12;
}
.sos-live-pill,
.sos-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: #df2029;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.sos-live-pill { padding: 9px 13px; }
.sos-case-card {
  flex: 1;
  margin-top: 16px;
  padding: 20px;
  border: 1px solid rgba(226, 58, 72, .5);
  border-radius: 24px;
  background: #fff4f5;
  box-shadow: 0 16px 40px rgba(226, 58, 72, .13);
}
.sos-case-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.sos-case-top strong {
  margin-right: 8px;
  font: 800 20px "Manrope";
}
.sos-case-top span:not(.sos-status) {
  padding: 4px 8px;
  border: 1px solid #dbe4ef;
  border-radius: 7px;
  color: #58708e;
  background: white;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}
.sos-case-top small {
  display: block;
  margin-top: 8px;
  color: #9aa9bc;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 900;
}
.sos-status { padding: 8px 14px; }
.sos-case-card blockquote {
  margin: 22px 0 18px;
  padding: 18px;
  border-radius: 16px;
  color: #421818;
  background: white;
  font-size: clamp(16px, 1.4vw, 19px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.55;
}
.sos-coordinates {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.sos-coordinates span {
  padding: 9px 12px;
  border: 1px solid #e7edf5;
  border-radius: 10px;
  color: #627691;
  background: white;
  font-size: 13px;
  font-weight: 800;
}
.sos-timeline {
  margin-top: auto;
  display: grid;
  gap: 14px;
}
.sos-timeline div {
  padding: 17px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(226, 58, 72, .13);
  border-radius: 18px;
  background: white;
}
.sos-timeline span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: #df2029;
  font-weight: 900;
}
.sos-timeline p {
  margin: 0;
  color: #744f56;
  font-weight: 800;
}
.sos-summary-grid {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.sos-summary-grid div {
  padding: 17px;
  border: 1px solid rgba(226, 58, 72, .13);
  border-radius: 18px;
  background: white;
}
.sos-summary-grid strong,
.sos-summary-grid small {
  display: block;
}
.sos-summary-grid strong {
  color: #df2029;
  font: 900 25px "Manrope";
}
.sos-summary-grid small {
  margin-top: 4px;
  color: #8c6b72;
  line-height: 1.4;
}
.sos-case-card button,
.sos-slide > button {
  min-height: 48px;
  margin-top: 18px;
  margin-left: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  color: white;
  background: #df2029;
  text-transform: uppercase;
  font: 900 14px "DM Sans";
  box-shadow: 0 10px 22px rgba(226, 58, 72, .22);
}
.institution-cta { margin-top: 70px; padding: 30px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: white; border-radius: 25px; background: var(--purple); }
.institution-cta p { margin: 0; font-size: 18px; }

.trust-section { background: white; }
.trust-heading { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; }
.trust-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.trust-card {
  min-height: 370px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(38, 24, 65, .1);
  border-radius: 24px;
  background: #fbfaff;
  box-shadow: 0 22px 58px rgba(52, 27, 99, .07);
}
.trust-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -55px;
  height: 120px;
  background: rgba(238,232,255,.72);
  transform: rotate(-5deg);
}
.trust-card:nth-child(2)::after { background: rgba(215,241,234,.72); }
.trust-card:nth-child(3)::after { background: rgba(255,217,232,.72); }
.trust-card:nth-child(4)::after { background: rgba(255,244,213,.78); }
.trust-visual {
  height: 118px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(38, 24, 65, .08);
  z-index: 1;
}
.trust-label {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--lavender);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 1;
}
.trust-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.12;
  z-index: 1;
}
.trust-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; z-index: 1; }
.toggle {
  width: 70px;
  height: 28px;
  position: absolute;
  left: 28px;
  border-radius: 999px;
  background: #eee8ff;
}
.toggle::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 3px 8px rgba(38,24,65,.16);
}
.toggle.on {
  top: 27px;
  background: var(--purple);
}
.toggle.on::after { left: 45px; }
.toggle:not(.on) { bottom: 28px; }
.consent-dot {
  width: 46px;
  height: 46px;
  position: absolute;
  right: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef5aa1, #6432d5);
  box-shadow: 0 14px 30px rgba(100,50,213,.2);
}
.consent-dot::before {
  content: "";
  position: absolute;
  inset: 13px 11px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
}
.privacy-card {
  width: 126px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7f4ff, #eef8f5);
  border: 1px solid rgba(38,24,65,.1);
}
.privacy-card::before,
.privacy-card::after {
  content: "";
  position: absolute;
  left: calc(50% - 44px);
  height: 8px;
  border-radius: 999px;
  background: #cfc6dd;
}
.privacy-card::before { top: 45px; width: 62px; }
.privacy-card::after { top: 62px; width: 86px; }
.privacy-lock {
  width: 44px;
  height: 36px;
  position: absolute;
  right: 40px;
  bottom: 28px;
  border-radius: 10px;
  background: var(--purple);
}
.privacy-lock::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -20px;
  width: 24px;
  height: 26px;
  border: 5px solid var(--purple);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}
.human-node {
  position: absolute;
  border-radius: 50%;
  background: #ffd9e8;
  box-shadow: 0 0 0 8px rgba(255,217,232,.35);
}
.human-node.main {
  width: 56px;
  height: 56px;
  background: var(--purple);
}
.human-node.left {
  width: 38px;
  height: 38px;
  left: 34px;
  bottom: 30px;
}
.human-node.right {
  width: 38px;
  height: 38px;
  right: 34px;
  top: 30px;
  background: #d7f1ea;
  box-shadow: 0 0 0 8px rgba(215,241,234,.45);
}
.trust-human .trust-visual::before,
.trust-human .trust-visual::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 2px;
  background: rgba(100,50,213,.18);
}
.trust-human .trust-visual::before { transform: rotate(-28deg); }
.trust-human .trust-visual::after { transform: rotate(28deg); }
.access-line {
  width: 118px;
  height: 12px;
  margin: 6px 0;
  display: block;
  border-radius: 999px;
  background: var(--purple);
}
.access-line.short { width: 76px; background: #ef5aa1; }
.access-line.long { width: 146px; background: #d6c8fa; }

.pending-section { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 8vw; }
.pending-section h2 { font-size: clamp(38px, 4vw, 60px); line-height: 1.08; }
.pending-section p { color: var(--muted); line-height: 1.65; }
.screens-preview {
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
}
.screens-preview::before {
  content: "";
  position: absolute;
  width: min(480px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,90,161,.18), rgba(100,50,213,.09) 48%, transparent 68%);
}
.preview-phone {
  position: absolute;
  width: clamp(168px, 15vw, 220px);
  aspect-ratio: 9 / 19.5;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 32px;
  background: #171329;
  box-shadow: 0 24px 54px rgba(48, 26, 88, .22);
}
.preview-phone::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 14px;
  border-radius: 999px;
  background: #171329;
  transform: translateX(-50%);
}
.preview-phone-left {
  left: 4%;
  top: 74px;
  z-index: 1;
  transform: rotate(-10deg);
}
.preview-phone-main {
  z-index: 3;
  width: clamp(190px, 17vw, 250px);
  transform: translateY(-6px);
}
.preview-phone-right {
  right: 4%;
  top: 72px;
  z-index: 2;
  transform: rotate(10deg);
}
.preview-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.reality-hero {
  min-height: 720px;
  padding: 150px clamp(24px, 7vw, 110px) 80px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 8vw;
  background:
    radial-gradient(circle at 84% 20%, rgba(239,90,161,.17), transparent 24%),
    linear-gradient(135deg, #fff, #f5efff 55%, #fff0f6);
}
.reality-hero-copy h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(52px, 6vw, 92px);
  line-height: .99;
}
.reality-hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.6;
}
.reality-fact-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 34px;
  color: white;
  background: linear-gradient(145deg, #241345, #6432d5 58%, #ef5aa1);
  box-shadow: 0 34px 90px rgba(64, 26, 127, .24);
}
.reality-fact-panel span {
  display: block;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #e6d9ff;
  font-size: 11px;
  font-weight: 800;
}
.reality-fact-panel strong {
  display: block;
  font: 800 clamp(72px, 8vw, 118px) "Manrope";
  line-height: .9;
}
.reality-fact-panel p {
  margin: 20px 0 30px;
  color: #eadfff;
  font-size: 18px;
  line-height: 1.5;
}
.reality-fact-panel a {
  font-weight: 800;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.55);
}
.reality-section { background: white; }
.reality-intro {
  max-width: 930px;
}
.reality-intro h2,
.news-heading h2,
.reality-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.05;
}
.reality-intro p,
.news-heading p {
  max-width: 780px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.reality-cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.reality-card {
  min-height: 380px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fcfbff;
}
.reality-card.urgent {
  color: white;
  border-color: var(--purple);
  background: var(--purple);
}
.reality-tag {
  width: fit-content;
  margin-bottom: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--lavender);
  font-size: 11px;
  font-weight: 800;
}
.urgent .reality-tag {
  color: white;
  background: rgba(255,255,255,.16);
}
.reality-card h3 {
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.14;
}
.reality-card p {
  color: var(--muted);
  line-height: 1.62;
}
.urgent p { color: #e3daf8; }
.reality-card a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--purple-dark);
  font-weight: 800;
}
.urgent a { color: white; }
.reality-news-section {
  background: #f1ecfc;
}
.news-heading {
  max-width: 900px;
}
.news-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.news-card {
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(81,44,149,.12);
  border-radius: 26px;
  background: white;
  box-shadow: 0 24px 55px rgba(52, 27, 99, .08);
}
.news-card span {
  margin-bottom: 46px;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 800;
}
.news-card h3 {
  font-size: 25px;
  line-height: 1.15;
}
.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.reality-cta {
  margin: 0 clamp(20px, 4vw, 60px) 60px;
  padding: 78px clamp(24px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  color: white;
  border-radius: 36px;
  background: linear-gradient(125deg, #351270, #6b32cf 58%, #a83b9b);
}
.reality-cta p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #e5dbf7;
  font-size: 18px;
  line-height: 1.6;
}

.contact-section { padding: 0 clamp(20px, 4vw, 60px) 60px; background: var(--cream); }
.contact-inner {
  padding: clamp(30px, 5vw, 64px);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: white;
  border-radius: 36px;
  background: linear-gradient(125deg, #351270, #6b32cf 58%, #a83b9b);
}
.contact-copy h2 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.03;
}
.contact-copy p {
  max-width: 620px;
  margin: 0;
  color: #e5dbf7;
  font-size: 18px;
  line-height: 1.6;
}
.contact-assurance {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}
.contact-assurance span {
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #f4edff;
  background: rgba(255,255,255,.09);
  font-size: 13px;
  font-weight: 800;
}
.contact-form {
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 26px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 80px rgba(24, 10, 52, .24);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #3f3650;
  font-size: 13px;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(38, 24, 65, .14);
  border-radius: 14px;
  color: var(--ink);
  background: #fbfaff;
  font: 500 15px "DM Sans", sans-serif;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-form input,
.contact-form select { min-height: 50px; padding: 0 14px; }
.contact-form textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9a92a8; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
  background: white;
  box-shadow: 0 0 0 4px rgba(100, 50, 213, .12);
}
.contact-form button {
  width: fit-content;
  margin-top: 4px;
  border: 0;
  color: white;
  background: var(--purple);
  cursor: pointer;
}
.contact-form button:hover { background: var(--purple-dark); }
.contact-form button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: #4f465b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.form-status.success { color: #246b50; }
.form-status.error { color: #9f274c; }
.contact-form small {
  display: block;
  color: #82798f;
  font-size: 12px;
  line-height: 1.45;
}
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(23, 19, 41, .48);
  backdrop-filter: blur(12px);
}
.modal-overlay[hidden] { display: none; }
.contact-modal {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(239,90,161,.12), transparent 30%),
    rgba(255,255,255,.98);
  box-shadow: 0 30px 90px rgba(24, 10, 52, .3);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--purple-dark);
  background: var(--lavender);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.modal-mark {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #246b50;
  font-size: 26px;
  font-weight: 800;
}
.modal-overlay.is-error .modal-mark {
  background: #9f274c;
}
.contact-modal h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.5vw, 43px);
  line-height: 1.08;
}
.contact-modal p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.modal-note {
  padding-left: 16px;
  border-left: 2px solid var(--pink);
  font-size: 13px !important;
}
.contact-modal .button {
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

footer { padding: 38px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; border-top: 1px solid var(--line); background: white; color: var(--muted); font-size: 13px; }
footer img { width: 90px; }
footer p { margin: 0; }
footer div { display: flex; gap: 22px; font-weight: 600; }
footer small { grid-column: 1 / -1; color: #9a95a1; }

.response-page {
  min-height: 100vh;
  padding: 32px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 78% 16%, rgba(239,90,161,.14), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(100,50,213,.14), transparent 30%),
    var(--cream);
}
.response-card {
  width: min(680px, 100%);
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 30px 80px rgba(45, 26, 82, .12);
}
.response-card img {
  width: 112px;
  margin-bottom: 38px;
}
.response-card h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
}
.response-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.response-note {
  padding-left: 18px;
  border-left: 2px solid var(--pink);
  font-size: 14px !important;
}
.response-card .button { margin-top: 14px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { height: 72px; }
  .main-nav { position: fixed; inset: 72px 0 0; padding: 50px 30px; display: none; flex-direction: column; align-items: center; background: var(--cream); font-size: 22px; }
  .menu-open .main-nav { display: flex; }
  .header-cta { display: none; }
  .menu-toggle { margin-left: auto; width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; border: 0; background: transparent; }
  .menu-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .2s; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 125px; text-align: center; }
  .hero-copy { margin: auto; }
  .hero-actions, .trust-line { justify-content: center; }
  .hero-visual { min-height: 500px; }
  .intro-grid, .use-cases-grid, .women-section, .institution-layout, .pending-section, .reality-hero, .reality-cta, .contact-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .use-case-card { min-height: auto; }
  .women-copy { padding-bottom: 20px; }
  .trust-heading { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .reality-cards, .news-grid { grid-template-columns: 1fr 1fr; }
  .institution-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .brand img { width: 96px; }
  .hero { min-height: auto; padding-inline: 20px; }
  .hero h1 { font-size: 49px; }
  .hero-actions { flex-direction: column; }
  .store-coming { position: relative; left: auto; bottom: auto; width: 100%; margin: 8px auto 0; transform: none; }
  .store-links { justify-content: center; }
  .store-badge { min-width: 145px; }
  .hero-visual { min-height: 410px; }
  .portrait-wrap { width: 82%; }
  .portrait-dots { bottom: 18px; }
  .orb-one { width: 330px; height: 330px; }
  .floating-card { transform: scale(.88); }
  .floating-card strong,
  .floating-card small { min-width: 118px; }
  .card-chat { left: -24px; top: 17%; }
  .card-program { right: -28px; top: 50%; }
  .purpose-strip { gap: 8px; overflow: hidden; font-size: 9px; }
  .section { padding: 80px 20px; }
  .intro-grid > div p:first-child { margin-top: 28px; font-size: 17px; }
  .use-cases-grid { margin-top: 40px; }
  .use-case-card { padding: 24px; border-radius: 24px; }
  .case-topline { margin-bottom: 30px; }
  .use-case-card h3 { font-size: 30px; }
  .case-list div { grid-template-columns: 36px 1fr; }
  .case-list span { width: 30px; height: 30px; }
  .reality-hero { min-height: auto; padding: 120px 20px 70px; }
  .reality-hero-copy h1 { font-size: 46px; text-align: left; }
  .reality-fact-panel { border-radius: 26px; }
  .reality-cards, .news-grid { grid-template-columns: 1fr; }
  .reality-card, .news-card { min-height: auto; padding: 24px; }
  .reality-tag, .news-card span { margin-bottom: 28px; }
  .reality-cta { margin: 0 12px 30px; padding: 62px 20px; border-radius: 25px; }
  .reality-cta h2 { font-size: 39px; }
  .phone-stage { min-height: 620px; }
  .phone-frame { height: 590px; }
  .screen-badge { right: -15px; }
  .institution-heading h2, .trust-heading h2 { font-size: 39px; }
  .impact-panel { padding: 20px; }
  .sos-dashboard { padding: 18px; border-radius: 24px; }
  .sos-alert-banner { grid-template-columns: 1fr; padding: 16px; }
  .sos-dashboard-head, .sos-case-top { align-items: flex-start; flex-direction: column; }
  .sos-case-card blockquote { padding: 18px; }
  .sos-case-card button { width: 100%; margin-left: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .screens-preview { min-height: 430px; }
  .preview-phone { width: 158px; border-radius: 27px; padding: 5px; }
  .preview-phone::before { top: 10px; width: 42px; height: 11px; }
  .preview-phone img { border-radius: 21px; }
  .preview-phone-left { left: -16px; top: 66px; }
  .preview-phone-main { width: 176px; }
  .preview-phone-right { right: -16px; top: 66px; }
  .contact-section { padding: 0 12px 30px; }
  .contact-inner { padding: 70px 20px; border-radius: 25px; }
  .contact-copy h2 { font-size: 42px; }
  .contact-assurance span { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 20px; border-radius: 22px; }
  .contact-form button { width: 100%; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  footer small { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .portrait-track,
  .portrait-dots span,
  .floating-card strong,
  .floating-card small { transition: none; }
}
