:root {
  color-scheme: light;
  --brand-red: #bb1b21;
  --brand-red-deep: #95161c;
  --brand-red-soft: #fff0f1;
  --ink: #161313;
  --ink-soft: #4f4747;
  --muted: #766f6f;
  --line: #eadfdf;
  --paper: #fffaf7;
  --surface: #ffffff;
  --surface-warm: #fff5ef;
  --green: #1b8f3a;
  --green-soft: #eaf8ee;
  --blue: #2563eb;
  --yellow: #f9c74f;
  --shadow: 0 18px 50px rgba(27, 17, 17, 0.12);
  --shadow-soft: 0 10px 30px rgba(27, 17, 17, 0.08);
  --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;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 240, 241, 0.7), rgba(255, 250, 247, 0) 440px),
    var(--paper);
  color: var(--ink);
  font-family: inherit;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.lock-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-shell {
  overflow: hidden;
}

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  color: #ffffff;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.brand-name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

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

.button-primary {
  background: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(187, 27, 33, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-red-deep);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(16px);
}

.hero {
  position: relative;
  min-height: 86vh;
  padding: 104px 0 64px;
  background:
    linear-gradient(90deg, rgba(16, 8, 8, 0.9) 0%, rgba(32, 14, 14, 0.72) 46%, rgba(35, 12, 12, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.86) 100%),
    url("onboarding-bg.jpg") center / cover no-repeat;
  color: #ffffff;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 250, 247, 0), var(--paper));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero h1 {
  margin: 16px 0 0;
  font-size: 56px;
  line-height: 0.92;
  letter-spacing: 0;
}

.tagline {
  margin: 16px 0 0;
  color: #fff1f1;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.08;
}

.hero-copy {
  max-width: 690px;
}

.hero-copy p {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.hero-download {
  display: grid;
  gap: 14px;
  width: min(100%, 340px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(15, 9, 9, 0.58);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-download strong,
.download-card strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.hero-download span,
.download-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.35;
}

.qr-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qr-code {
  display: grid;
  flex: 0 0 auto;
  width: 112px;
  height: 112px;
  padding: 8px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.qr-pattern {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background:
    linear-gradient(#111 0 0) 0 0 / 28px 28px no-repeat,
    linear-gradient(#111 0 0) 56px 0 / 28px 28px no-repeat,
    linear-gradient(#111 0 0) 0 56px / 28px 28px no-repeat,
    repeating-linear-gradient(90deg, #111 0 8px, transparent 8px 14px),
    repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.72) 0 7px, transparent 7px 16px);
}

.qr-pattern::after {
  position: absolute;
  inset: 16px;
  content: "";
  background:
    linear-gradient(#ffffff 0 0) 0 0 / 16px 16px no-repeat,
    linear-gradient(#ffffff 0 0) 52px 0 / 16px 16px no-repeat,
    linear-gradient(#ffffff 0 0) 0 52px / 16px 16px no-repeat,
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(255, 255, 255, 0.82) 8px 12px);
}

.section {
  position: relative;
  padding: 74px 0;
}

.section-tight {
  padding-top: 46px;
}

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

.section-kicker {
  margin: 0 0 12px;
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy {
  max-width: 690px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
}

.intro-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.intro-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.intro-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.intro-point b {
  color: var(--ink);
}

.intro-point p {
  margin: 3px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.check-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.phone-stage {
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(100%, 330px);
  padding: 12px;
  border-radius: 30px;
  background: #111111;
  box-shadow: var(--shadow);
}

.phone-screen {
  overflow: hidden;
  min-height: 650px;
  border-radius: 22px;
  background: #ffffff;
  color: #181515;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px 10px;
  color: #5f5a5a;
  font-size: 12px;
  font-weight: 800;
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 16px 14px;
  border-bottom: 1px solid #eeeeee;
}

.app-head strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 23px;
  font-weight: 950;
}

.mini-logo {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: cover;
}

.location-chip,
.filter-chip,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #292525;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.phone-filters {
  display: flex;
  gap: 8px;
  overflow: hidden;
  padding: 14px 16px 0;
}

.meet-card {
  overflow: hidden;
  margin: 14px 16px;
  border: 1px solid #ece6e6;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(20, 14, 14, 0.08);
}

.meet-media {
  position: relative;
  height: 210px;
  background: #ddd;
}

.meet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.meet-body {
  padding: 17px;
}

.meet-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.meet-row h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: 0;
}

.date-box {
  min-width: 74px;
  padding: 9px;
  border-radius: var(--radius);
  background: #f8f5f5;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.meet-meta {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  color: #615a5a;
  font-size: 13px;
  font-weight: 750;
}

.join-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.mini-button-light {
  border: 1px solid #ded7d7;
  background: #ffffff;
}

.mini-button-dark {
  background: #111111;
  color: #ffffff;
}

.bottom-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 12px 8px 14px;
  border-top: 1px solid #f0eeee;
  background: #fbfbfb;
}

.tab {
  display: grid;
  gap: 4px;
  place-items: center;
  color: #656060;
  font-size: 11px;
  font-weight: 800;
}

.tab-active {
  color: #111111;
}

.tab-icon {
  width: 26px;
  height: 20px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.86;
}

.steps-band {
  background: #ffffff;
}

.steps-grid,
.why-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.step-card,
.why-card,
.interest-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.step-card,
.why-card {
  padding: 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--brand-red);
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
}

.step-card h3,
.why-card h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  line-height: 1.1;
}

.step-card p,
.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.why-card b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.interest-card {
  overflow: hidden;
  min-width: 0;
}

.interest-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.interest-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px 14px;
}

.interest-card strong {
  min-width: 0;
  font-size: 14px;
  line-height: 1.15;
}

.interest-card span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-red);
}

.preview-band {
  background:
    linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}

.preview-grid {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.shot-frame {
  overflow: hidden;
  height: 380px;
  border: 10px solid #111111;
  border-radius: 30px;
  background: #111111;
  box-shadow: var(--shadow);
}

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.story-panel {
  display: grid;
  gap: 14px;
}

.story-line {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.story-line strong {
  display: block;
  font-size: 17px;
}

.story-line p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.52;
}

.download-section {
  padding: 82px 0;
  background:
    linear-gradient(135deg, rgba(187, 27, 33, 0.94), rgba(149, 22, 28, 0.94)),
    #bb1b21;
  color: #ffffff;
}

.download-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.download-section .section-kicker,
.download-section .section-copy {
  color: rgba(255, 255, 255, 0.82);
}

.download-section .section-title {
  max-width: 680px;
}

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

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 170px;
  min-height: 54px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: #111111;
  color: #ffffff;
  text-decoration: none;
}

.store-button span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 750;
}

.store-button strong {
  display: block;
  margin-top: 1px;
  font-size: 18px;
  line-height: 1;
}

.store-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 12px;
  font-weight: 950;
}

.download-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(69, 8, 11, 0.28);
  backdrop-filter: blur(18px);
}

.footer {
  padding: 34px 0;
  background: #111111;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 950;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  font-weight: 800;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}

.legal-header .topbar {
  position: static;
  color: var(--ink);
  padding: 14px 0;
}

.legal-header .nav-links a {
  color: var(--ink-soft);
}

.legal-header .nav-cta {
  background: var(--brand-red);
  color: #ffffff;
}

.legal-hero {
  padding: 62px 0 26px;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.legal-doc {
  padding: 24px 0 78px;
}

.legal-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.legal-aside {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.legal-aside strong {
  display: block;
  margin-bottom: 8px;
}

.legal-aside a {
  display: block;
  padding: 9px 0;
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration: none;
}

.legal-content {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin: 30px 0 10px;
  font-size: 23px;
  line-height: 1.1;
}

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

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.68;
}

.legal-content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content .effective {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-red-soft);
  color: var(--brand-red-deep);
  font-size: 13px;
  font-weight: 900;
}

@media (min-width: 700px) {
  .topbar {
    width: min(1180px, calc(100% - 48px));
  }

  .nav-links {
    display: flex;
  }

  .hero {
    min-height: 86vh;
    padding-top: 132px;
  }

  .hero-grid,
  .container {
    width: min(1180px, calc(100% - 48px));
  }

  .hero h1 {
    font-size: 86px;
  }

  .tagline {
    font-size: 31px;
  }

  .hero-copy p {
    font-size: 20px;
  }

  .hero-download {
    width: 360px;
  }

  .section-title {
    font-size: 48px;
  }

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

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

  .preview-grid,
  .download-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .legal-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: end;
  }

  .hero h1 {
    font-size: 112px;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
  }

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

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

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

@media (max-width: 600px) {
  .topbar,
  .hero-grid,
  .container {
    max-width: calc(100% - 32px);
  }

  .nav-cta {
    display: none;
  }

  .hero-copy,
  .hero-copy p,
  .section-title,
  .section-copy {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .button {
    white-space: normal;
    text-align: center;
  }

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

  .hero-grid {
    gap: 24px;
  }

  .hero-copy p {
    margin-top: 14px;
    line-height: 1.45;
  }

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

  .hero-trust {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-trust li {
    max-width: 100%;
    min-height: 30px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero-download {
    padding: 14px;
  }
}

@media (max-width: 420px) {

  .hero h1 {
    font-size: 48px;
  }

  .tagline {
    font-size: 22px;
  }

  .hero-copy p,
  .section-copy {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .qr-row {
    align-items: flex-start;
  }

  .qr-code {
    width: 96px;
    height: 96px;
  }

  .interest-grid {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    width: min(100%, 310px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
