@font-face {
  font-family: "Rubik";
  src: url("assets/fonts/Rubik-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #1a146b;
  --brand-bright: #1009a5;
  --brand-soft: #ecebff;
  --surface: #ffffff;
  --surface-muted: #f3f6fc;
  --surface-blue: #e8efff;
  --text: #171821;
  --text-soft: #5f6472;
  --border: #dfe3ec;
  --border-strong: #c9ceda;
  --green: #07875f;
  --orange: #f6a800;
  --rose: #ff496c;
  --yellow: #f4c400;
  --shadow: 0 18px 48px rgb(26 20 107 / 10%);
  --container: 1240px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Rubik", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #4f8cff;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid rgb(223 227 236 / 75%);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgb(23 24 33 / 7%);
}

.header-inner {
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand-link {
  display: inline-flex;
  width: fit-content;
}

.brand-link img {
  width: 126px;
  height: auto;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.primary-navigation a {
  position: relative;
  padding: 10px 0;
  color: #343640;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.primary-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-navigation a:hover,
.primary-navigation a.is-active {
  color: var(--brand);
}

.primary-navigation a:hover::after,
.primary-navigation a.is-active::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 4px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button svg,
.text-link svg,
.hero-scroll svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 24px rgb(26 20 107 / 18%);
}

.button-primary:hover {
  background: #0f0a82;
  box-shadow: 0 13px 30px rgb(26 20 107 / 24%);
}

.button-secondary {
  color: var(--brand);
  background: rgb(255 255 255 / 88%);
  border-color: var(--brand);
}

.button-secondary:hover {
  background: #fff;
}

.header-cta {
  min-width: 166px;
  min-height: 50px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  background: var(--surface-muted);
}

.hero-grid,
.download-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(166 178 204 / 22%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(166 178 204 / 22%) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000 15%, rgb(0 0 0 / 86%) 60%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding-top: clamp(48px, 6vh, 72px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ffd44d;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  line-height: 1;
}

.hero-statement {
  max-width: 790px;
  margin: 18px auto 0;
  font-size: clamp(25px, 3.2vw, 42px);
  font-weight: 850;
  line-height: 1.08;
}

.hero-statement span {
  color: var(--brand-bright);
}

.hero-description {
  max-width: 760px;
  margin: 18px auto 0;
  color: #353947;
  font-size: clamp(16px, 1.8vw, 21px);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(260px, 22vw, 300px);
  margin-top: 22px;
  overflow: hidden;
}

.hero-app {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(980px, 76vw);
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100% - var(--container)) / 2));
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 5;
  color: #fff;
  background: var(--brand);
}

.trust-strip-inner {
  width: min(calc(100% - 40px), var(--container));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip-inner > div {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgb(255 255 255 / 14%);
  font-size: 14px;
  font-weight: 650;
}

.trust-strip-inner > div:last-child {
  border-right: 0;
}

.trust-strip svg,
.benefit-group-heading > svg,
.benefit-icon svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: clamp(80px, 9vw, 132px) 20px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading-left {
  max-width: none;
  margin: 0 0 28px;
  text-align: left;
}

.section-heading h2,
.feature-navigation h2,
.confidence-intro h2,
.download-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 1.05;
}

.section-heading > p:last-child,
.feature-intro,
.confidence-intro > p,
.download-copy > p {
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.7vw, 19px);
}

.section-heading-left > p:last-child {
  margin-left: 0;
}

.how-section {
  background: #fff;
}

.role-tabs {
  width: min(100%, 820px);
  margin: 0 auto 52px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #f0f0f3;
  border-radius: 7px;
}

.role-tab {
  min-height: 50px;
  color: #8b8d94;
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 750;
  cursor: pointer;
}

.role-tab.is-active {
  color: var(--brand);
  background: #fff;
  box-shadow: 0 2px 6px rgb(23 24 33 / 10%);
}

.journey-panel {
  width: min(100%, 1030px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.journey-panel[hidden] {
  display: none;
}

.journey-card {
  position: relative;
  min-width: 0;
  padding: 14px 14px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
}

.journey-number {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  min-width: 46px;
  min-height: 32px;
  padding: 5px 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.journey-image {
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  background: #f6f4f2;
  border-radius: 5px;
}

.journey-image img {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.journey-image-contain img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.journey-card h3 {
  margin: 20px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.journey-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.section-action {
  margin-top: 48px;
  text-align: center;
}

.benefits-section {
  position: relative;
  background-color: var(--surface-muted);
  background-image:
    linear-gradient(rgb(166 178 204 / 22%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(166 178 204 / 22%) 1px, transparent 1px);
  background-size: 110px 110px;
}

.benefit-columns {
  width: min(100%, 1090px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
}

.benefit-group {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  box-shadow: 0 12px 30px rgb(26 20 107 / 5%);
}

.benefit-group-heading {
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--border);
}

.benefit-group-heading > svg {
  width: 34px;
  height: 34px;
}

.benefit-group-heading span {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.benefit-group-heading h3 {
  margin: 1px 0 0;
  font-size: 26px;
}

.benefit-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  min-height: 88px;
  margin-top: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 7px;
}

.benefit-list li:first-child {
  margin-top: 0;
}

.benefit-purple {
  background: #f1f0f8;
}

.benefit-rose {
  background: #fff0f2;
}

.benefit-green {
  background: #effbef;
}

.benefit-yellow {
  background: #fff8d7;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--brand);
  background: #fff;
  border-radius: 50%;
}

.benefit-rose .benefit-icon {
  color: var(--rose);
}

.benefit-green .benefit-icon {
  color: #21bb53;
}

.benefit-yellow .benefit-icon {
  color: #e7b900;
}

.benefit-list strong,
.benefit-list div > span {
  display: block;
}

.benefit-list strong {
  font-size: 17px;
}

.benefit-list div > span {
  margin-top: 3px;
  color: #3f485c;
  font-size: 13px;
}

.features-section {
  background: #fff;
}

.feature-layout {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 410px minmax(0, 1fr);
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-navigation {
  padding: clamp(34px, 5vw, 58px);
  background: #fff;
  border-right: 1px solid var(--border);
}

.feature-navigation h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.feature-intro {
  font-size: 15px;
}

.feature-options {
  margin-top: 38px;
  display: grid;
  gap: 4px;
}

.feature-option {
  min-height: 58px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #475167;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #edf0f5;
  cursor: pointer;
}

.feature-option > span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 2px solid #ccd2dd;
  border-radius: 50%;
}

.feature-option.is-active {
  color: var(--text);
  font-weight: 750;
}

.feature-option.is-active > span {
  border: 6px solid #2c6bff;
}

.feature-preview {
  min-width: 0;
  padding: clamp(34px, 5vw, 58px);
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--surface-muted);
}

.feature-copy {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.feature-copy h3 {
  margin: 0;
  font-size: clamp(27px, 3.4vw, 43px);
  line-height: 1.08;
}

.feature-copy p {
  max-width: 650px;
  margin: 12px 0 0;
  color: #343a49;
  font-size: 17px;
}

.text-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-weight: 750;
}

.phone-stage {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 28px;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 330px;
  height: 660px;
  padding: 12px;
  overflow: hidden;
  background: #101116;
  border: 3px solid #2d3038;
  border-radius: 48px;
  box-shadow: 0 26px 50px rgb(13 14 20 / 24%);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  background: #fff;
  border-radius: 36px;
  transition: opacity 160ms ease;
}

.phone-frame img.is-switching {
  opacity: 0;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 50%;
  width: 96px;
  height: 25px;
  background: #090a0c;
  border-radius: 18px;
  transform: translateX(-50%);
}

.stage-accent {
  position: absolute;
  bottom: -140px;
  width: 650px;
  height: 410px;
  background: #ffd33e;
  clip-path: polygon(9% 8%, 95% 0, 84% 100%, 0 85%);
}

.confidence-section {
  padding-right: max(20px, calc((100% - 1240px) / 2));
  padding-left: max(20px, calc((100% - 1240px) / 2));
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  background: var(--surface-muted);
}

.confidence-intro {
  padding: 48px 40px;
  color: #fff;
  background: var(--brand);
  border-radius: 7px;
}

.confidence-intro h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.confidence-intro > p {
  color: rgb(255 255 255 / 80%);
  font-size: 16px;
}

.button-light {
  margin-top: 24px;
  color: var(--brand);
  background: #fff;
}

.confidence-cards {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.confidence-cards article {
  min-width: 0;
  padding: 34px 28px 26px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
}

.quote-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #151218;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.confidence-cards h3 {
  margin: 30px 0 10px;
  font-size: 20px;
}

.confidence-cards p {
  margin: 0;
  color: var(--text-soft);
}

.card-label {
  margin-top: auto;
  padding-top: 28px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-section {
  background: var(--surface-muted);
}

.faq-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 12px 32px rgb(26 20 107 / 5%);
}

.faq-list {
  padding: 4px 20px;
  background: #f1f5fd;
  border-radius: 7px;
}

.faq-item {
  border-bottom: 1px solid #dce3ef;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 750;
  cursor: pointer;
}

.faq-item button > span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.faq-item button > span::before,
.faq-item button > span::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--text);
  transition: transform 180ms ease;
}

.faq-item button > span::after {
  transform: rotate(90deg);
}

.faq-item.is-open button > span::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 36px 22px 0;
}

.faq-answer p {
  margin: 0;
  color: #3d4658;
}

.download-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: clamp(76px, 8vw, 110px) max(20px, calc((100% - 1240px) / 2));
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--brand);
}

.download-grid {
  opacity: 0.14;
  mask-image: none;
}

.download-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
}

.download-copy h2 {
  font-size: clamp(38px, 5vw, 62px);
}

.download-copy > p {
  color: rgb(255 255 255 / 82%);
}

.store-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  min-width: 200px;
  min-height: 62px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  background: #07070a;
  border: 1px solid #ffce27;
  border-radius: 7px;
  transition: transform 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.store-badge svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.2;
}

.store-badge span {
  font-size: 17px;
  font-weight: 750;
  line-height: 1.1;
}

.store-badge small {
  display: block;
  margin-bottom: 2px;
  color: #d7d7dc;
  font-size: 10px;
  font-weight: 450;
}

.download-note {
  font-size: 12px !important;
}

.download-app {
  position: absolute;
  right: max(-120px, calc((100% - 1440px) / 2));
  bottom: -130px;
  width: min(820px, 58vw);
  max-width: none;
  opacity: 0.95;
  pointer-events: none;
}

.site-footer {
  padding: 70px max(20px, calc((100% - 1240px) / 2)) 28px;
  color: #fff;
  background: #08058c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 0.8fr 1.2fr;
  gap: 60px;
}

.footer-brand img {
  width: 135px;
  height: auto;
}

.footer-brand p,
.footer-grid > div:last-child p {
  max-width: 350px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 75%);
  font-size: 14px;
}

.footer-grid h2 {
  margin: 0 0 18px;
  font-size: 15px;
}

.footer-grid a:not(.footer-email) {
  width: fit-content;
  margin: 10px 0;
  display: block;
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-email {
  margin-top: 18px;
  display: inline-block;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgb(255 255 255 / 68%);
  border-top: 1px solid rgb(255 255 255 / 16%);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-cta {
    grid-column: 3;
    grid-row: 1;
  }

  .primary-navigation {
    position: absolute;
    z-index: 90;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100dvh - var(--header-height));
    padding: 34px 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--border);
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation a {
    width: 100%;
    padding: 14px 4px;
    font-size: 20px;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-app {
    width: min(920px, 96vw);
  }

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

  .feature-navigation,
  .feature-preview {
    padding: 34px;
  }

  .confidence-section {
    grid-template-columns: 360px minmax(0, 1fr);
  }

  .download-app {
    right: -220px;
    width: 760px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    width: min(calc(100% - 28px), var(--container));
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    width: min(calc(100% - 28px), 720px);
    padding-top: 52px;
  }

  .hero-description {
    max-width: 560px;
  }

  .hero-visual {
    height: 320px;
  }

  .hero-app {
    width: 760px;
    max-width: none;
  }

  .hero-scroll {
    display: none;
  }

  .trust-strip-inner {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-inner > div {
    min-height: 76px;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }

  .journey-panel,
  .benefit-columns {
    grid-template-columns: 1fr;
  }

  .journey-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    column-gap: 24px;
    align-items: center;
  }

  .journey-image {
    grid-row: span 2;
  }

  .journey-card h3 {
    align-self: end;
  }

  .journey-card p {
    align-self: start;
  }

  .feature-layout {
    grid-template-columns: 1fr;
  }

  .feature-navigation {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .feature-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-stage {
    min-height: 520px;
  }

  .phone-frame {
    width: 290px;
    height: 580px;
  }

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

  .confidence-cards {
    grid-template-columns: repeat(3, 280px);
  }

  .download-section {
    min-height: 820px;
    align-items: flex-start;
  }

  .download-copy {
    text-align: center;
  }

  .store-actions {
    justify-content: center;
  }

  .download-app {
    right: 50%;
    bottom: -170px;
    width: 700px;
    transform: translateX(50%);
  }

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

@media (min-width: 1081px) and (max-height: 820px) {
  .hero-copy {
    padding-top: 28px;
  }

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

  .hero-statement {
    margin-top: 12px;
    font-size: 34px;
  }

  .hero-description {
    margin-top: 12px;
    font-size: 17px;
  }

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

  .hero-visual {
    height: 260px;
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .brand-link img {
    width: 110px;
  }

  .section {
    padding: 72px 16px;
  }

  .hero-copy {
    width: calc(100% - 28px);
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .hero-statement {
    margin-top: 14px;
    font-size: 28px;
  }

  .hero-description {
    margin-top: 14px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    height: 265px;
    margin-top: 18px;
  }

  .hero-app {
    width: 570px;
  }

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

  .trust-strip-inner > div {
    min-height: 64px;
    justify-content: flex-start;
    padding-left: 28px;
    border-right: 0;
  }

  .role-tabs {
    margin-bottom: 28px;
  }

  .role-tab {
    font-size: 14px;
  }

  .journey-panel {
    gap: 18px;
  }

  .journey-card {
    display: block;
  }

  .journey-image {
    height: 250px;
  }

  .benefit-group {
    padding: 16px;
  }

  .benefit-list li {
    padding: 14px 12px;
  }

  .feature-navigation,
  .feature-preview {
    padding: 26px 20px;
  }

  .feature-options {
    grid-template-columns: 1fr;
  }

  .feature-copy h3 {
    font-size: 28px;
  }

  .phone-stage {
    min-height: 480px;
  }

  .phone-frame {
    width: 250px;
    height: 510px;
    border-radius: 40px;
  }

  .phone-frame img {
    border-radius: 30px;
  }

  .confidence-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .confidence-intro {
    padding: 34px 26px;
  }

  .confidence-cards {
    grid-template-columns: repeat(3, 86vw);
  }

  .faq-shell {
    padding: 26px 18px;
  }

  .faq-list {
    padding: 0 14px;
  }

  .faq-item button {
    min-height: 66px;
  }

  .download-section {
    min-height: 830px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .store-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .store-badge {
    justify-content: center;
  }

  .download-app {
    bottom: -60px;
    width: 520px;
  }

  .site-footer {
    padding: 56px 24px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.not-found {
  min-height: 100svh;
  padding: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #f3f6fc;
}

.not-found-inner {
  max-width: 620px;
}

.not-found img {
  width: 140px;
  margin: 0 auto 32px;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(44px, 9vw, 84px);
  line-height: 1;
}

.not-found p {
  margin: 18px auto 28px;
  color: #5f6472;
}
