@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap");

:root {
  --red: #d32f2f;
  --red-dark: #9f1f24;
  --red-soft: #fbeaea;
  --navy: #111b33;
  --navy-soft: #eef3fb;
  --ink: #1a1c1e;
  --muted: #667085;
  --line: #e9ecef;
  --surface: #ffffff;
  --wash: #f8fafc;
  --shadow: 0 18px 45px rgba(17, 27, 51, 0.09);
  --radius: 18px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.68;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(233, 236, 239, 0.86);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: max-content;
}

.brand img {
  width: 86px;
  height: auto;
  object-fit: contain;
}

.brand-word {
  display: block;
  line-height: 1.1;
}

.brand-word span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  border-radius: 999px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 11px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--red-soft);
  color: var(--red-dark);
}

.nav-links .download {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(211, 47, 47, 0.22);
  padding-left: 15px;
  padding-right: 15px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.section,
.hero,
.page-hero,
.cta-band,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 84px;
  padding: 90px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px -40px auto auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.13), rgba(211, 47, 47, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 28px -70px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(211, 47, 47, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(211, 47, 47, 0.16);
  border-radius: 999px;
  background: #fff5f5;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 12px;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 12px;
  color: var(--navy);
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h2 {
  margin: 0 0 18px;
  color: var(--red);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.2;
  max-width: 720px;
}

.lead {
  max-width: 670px;
  color: #475467;
  font-size: clamp(1.12rem, 1.7vw, 1.3rem);
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  padding: 13px 20px;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(211, 47, 47, 0.24);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--navy);
}

.hero-note {
  margin-top: 14px;
  color: #667085;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trust span {
  border: 1px solid rgba(17, 27, 51, 0.08);
  border-radius: 999px;
  background: #fff;
  color: #344054;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 12px;
  box-shadow: 0 10px 26px rgba(17, 27, 51, 0.05);
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.phone-mockup {
  position: relative;
  width: min(326px, 78vw);
  border: 10px solid #101828;
  border-radius: 42px;
  background: #101828;
  box-shadow: 0 28px 70px rgba(17, 27, 51, 0.22);
  transform: rotate(0.5deg);
}

.phone-top {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 88px;
  height: 24px;
  border-radius: 999px;
  background: #101828;
  transform: translateX(-50%);
}

.phone-mockup img {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 31px;
  object-fit: cover;
  background: #fff;
}

.app-proof-card {
  position: absolute;
  width: 228px;
  border: 1px solid rgba(233, 236, 239, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 40px rgba(17, 27, 51, 0.14);
  padding: 16px;
}

.proof-one {
  right: -74px;
  top: 86px;
}

.proof-two {
  left: -72px;
  bottom: 78px;
}

.app-proof-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
}

.app-proof-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 82px 0;
}

.section.compact-proof {
  padding: 22px 0 56px;
}

.section.soft {
  width: 100%;
  max-width: none;
  background: var(--wash);
}

.section.soft > .section-inner,
.section .section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(1.95rem, 3.1vw, 3.15rem);
  line-height: 1.12;
}

h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.muted {
  color: var(--muted);
}

.card .muted,
.flow-card .muted {
  font-size: 0.98rem;
}

.step-card h3 {
  font-size: 1.1rem;
}

.step-card p {
  margin-top: 10px;
  font-size: 0.96rem;
}

.section-head .muted,
.notice,
.proof-strip span {
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.stat-card,
.step-card,
.flow-card,
.story-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 27, 51, 0.05);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.card:hover,
.step-card:hover,
.stat-card:hover {
  border-color: rgba(211, 47, 47, 0.16);
  box-shadow: 0 18px 38px rgba(17, 27, 51, 0.08);
  transform: translateY(-2px);
}

.card,
.flow-card,
.story-card {
  padding: 28px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red);
}

.icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card {
  position: relative;
  min-height: 190px;
  padding: 28px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.stat-card {
  padding: 28px 20px;
  text-align: center;
}

.stat-value {
  color: var(--red);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

.page-hero-wrap {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero {
  padding: 70px 0 58px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.page-hero .lead {
  max-width: 800px;
}

.flow-card ol,
.content-list {
  margin: 18px 0 0;
  padding-left: 22px;
  color: #475467;
}

.flow-card li,
.content-list li {
  margin: 8px 0;
}

.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(211, 47, 47, 0.18);
  border-radius: var(--radius);
  background: #fff7f7;
  color: #5e1f24;
  padding: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 27, 51, 0.06);
  padding: 16px;
}

.proof-strip div {
  border-radius: 16px;
  background: var(--wash);
  padding: 20px;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--navy);
  font-weight: 900;
}

.proof-strip span {
  color: var(--muted);
  margin-top: 4px;
}

.cta-wrap {
  background:
    radial-gradient(circle at 85% 18%, rgba(211, 47, 47, 0.24), transparent 26%),
    var(--navy);
  color: #fff;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 54px 0;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .section-kicker {
  color: #ffb4b4;
}

.store-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  display: grid;
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: #fff;
  color: var(--navy);
  padding: 10px 16px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.store-button span {
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  color: #667085;
}

.store-button strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font: inherit;
  font-weight: 900;
}

.faq-answer {
  display: none;
  color: var(--muted);
  padding: 0 20px 18px;
}

.faq-item.open .faq-answer {
  display: block;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.form label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(211, 47, 47, 0.55);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.form .button {
  width: fit-content;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.92rem;
}

.policy {
  display: grid;
  gap: 20px;
}

.policy .card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  gap: 54px;
  max-width: 1320px;
}

.legal-toc {
  position: sticky;
  top: 24px;
  display: grid;
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-right: 1px solid var(--line);
  padding: 10px 28px 10px 0;
}

.legal-toc span {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.legal-toc a {
  border-left: 3px solid transparent;
  color: #667085;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.42;
  padding: 10px 0 10px 14px;
}

.legal-toc a:hover {
  border-left-color: var(--red);
  color: var(--red-dark);
  background: linear-gradient(90deg, rgba(211, 47, 47, 0.07), transparent);
}

.legal-doc {
  display: grid;
  gap: 8px;
  max-width: 940px;
}

.legal-intro,
.legal-section {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: 24px;
}

.legal-intro {
  display: grid;
  gap: 16px;
  padding: 0 0 42px;
}

.legal-date {
  width: fit-content;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-dark);
  font-weight: 900;
  padding: 9px 14px;
}

.legal-section {
  position: relative;
  overflow: hidden;
  padding: 42px 0;
}

.legal-section h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  line-height: 1.22;
}

.legal-section p,
.legal-intro p {
  color: #475467;
  font-size: 1.1rem;
  line-height: 1.88;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul {
  margin-top: 16px;
}

.legal-section ul {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 9px;
  margin: 16px 0 0;
  padding-left: 28px;
  color: #475467;
}

.legal-section li::marker {
  color: var(--red);
}

.legal-section li {
  padding-left: 3px;
  font-size: 1.07rem;
  line-height: 1.72;
}

.site-footer {
  background: #0d1528;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.4fr);
  gap: 34px;
  padding: 48px 0 30px;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 86px;
  height: auto;
  object-fit: contain;
}

.footer-brand span {
  color: #ffb4b4;
  font-size: 0.86rem;
  font-weight: 900;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  padding: 20px 0 26px;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 90px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 12px;
  }

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

  .nav-links a {
    border-radius: 12px;
  }

  .hero,
  .grid.two,
  .grid.three,
  .grid.four,
  .cta-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    gap: 42px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .cta-band {
    text-align: left;
  }

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

  .proof-one {
    right: -8px;
  }

  .proof-two {
    left: -8px;
  }

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-toc {
    position: relative;
    top: auto;
    max-height: none;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(17, 27, 51, 0.05);
    padding: 20px;
  }

  .legal-toc a {
    border-left: 0;
    border-radius: 10px;
    padding: 9px 10px;
  }

  .legal-toc a:hover {
    background: var(--red-soft);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 54px 0;
  }

  .nav {
    min-height: 78px;
  }

  .nav-links {
    inset: 78px 16px auto;
  }

  .hero {
    padding: 46px 0 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero h2 {
    font-size: 1.32rem;
  }

  .hero-visual {
    min-height: auto;
    padding: 18px 0 34px;
  }

  .app-proof-card {
    position: static;
    width: auto;
    max-width: none;
    margin-top: 12px;
  }

  .form,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: min(300px, 88vw);
    transform: none;
  }

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

  .legal-intro,
  .legal-section {
    border-radius: 14px;
  }

  .legal-section {
    padding: 34px 0;
  }

  .legal-section h2 {
    font-size: 1.45rem;
  }

  .legal-section p,
  .legal-intro p,
  .legal-section li {
    font-size: 1rem;
    line-height: 1.76;
  }

  .legal-section ul {
    grid-template-columns: 1fr;
  }
}
