:root {
  color-scheme: light;
  --ink: #0e0d20;
  --ink-soft: #343247;
  --text-muted: #696779;
  --white: #ffffff;
  --canvas: #ffffff;
  --surface: #f7f7f4;
  --surface-strong: #efefeb;
  --line: #deded8;
  --line-soft: #ecece7;
  --pink: #f7c7d5;
  --pink-soft: #fff1f5;
  --aqua: #b8e8ec;
  --aqua-soft: #effbfc;
  --lime: #d4eea6;
  --lime-soft: #f4fae9;
  --sun: #f8dea0;
  --sun-soft: #fff8e8;
  --success: #557a22;
  --link: #184f78;
  --focus-ring: #2f74a2;
  --page: min(1180px, calc(100% - 48px));
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-phone: 42px;
  --shadow-soft: 0 18px 54px rgba(14, 13, 32, 0.08);
  --shadow-phone: 0 28px 70px rgba(14, 13, 32, 0.14);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --spring: cubic-bezier(0.2, 0.9, 0.2, 1.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--canvas);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Arabic", "Segoe UI", "Noto Sans Arabic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--aqua);
  color: var(--ink);
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

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

.section {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  inset-block-start: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  box-shadow: 0 8px 28px rgba(14, 13, 32, 0.035);
}

.nav-shell {
  width: var(--page);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.site-nav a,
.language-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 650;
  transition: color 160ms var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 5px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms var(--ease);
}

.site-nav a:hover,
.language-link:hover {
  color: var(--ink);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  box-shadow: none;
  transition: transform 200ms var(--spring), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 13, 32, 0.14);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.8rem;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.text-link span {
  color: var(--link);
  transition: transform 180ms var(--spring);
}

.text-link:hover span {
  transform: translateX(-4px);
}

[dir="ltr"] .text-link:hover span {
  transform: translateX(4px);
}

.menu-button {
  position: relative;
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  padding: 0;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms var(--ease);
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 0.88fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  padding-block: 72px 92px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px var(--lime-soft);
}

.hero h1 {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(4rem, 7vw, 6.35rem);
  font-weight: 800;
  letter-spacing: normal;
  line-height: 0.98;
}

[dir="ltr"] .hero h1 {
  font-size: clamp(3.7rem, 6.4vw, 5.9rem);
  letter-spacing: -0.06em;
}

.hero h1 span {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset-inline: -0.02em;
  inset-block-end: 0.04em;
  height: 0.18em;
  border-radius: 2px;
  background: var(--pink);
}

.hero-lead {
  max-width: 590px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.23rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--text-muted);
  list-style: none;
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-points li {
  position: relative;
  padding-inline-start: 15px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua);
}

.hero-points li:nth-child(2)::before {
  background: var(--pink);
}

.hero-points li:nth-child(3)::before {
  background: var(--lime);
}

.product-stage {
  position: relative;
  height: 650px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 36px;
  background: var(--surface);
}

.stage-block {
  position: absolute;
  border-radius: 26px;
}

.stage-block-aqua {
  width: 180px;
  height: 118px;
  inset-inline-end: 28px;
  inset-block-start: 32px;
  background: var(--aqua);
}

.stage-block-lime {
  width: 134px;
  height: 86px;
  inset-inline-start: 34px;
  inset-block-end: 36px;
  background: var(--lime);
}

.device {
  overflow: hidden;
  border: 7px solid var(--ink);
  border-radius: var(--radius-phone);
  background: var(--white);
  box-shadow: var(--shadow-phone);
}

.device img,
.story-device img {
  width: 100%;
  height: auto;
}

.device-main {
  position: absolute;
  z-index: 3;
  inset-block-start: 28px;
  inset-inline-start: 50%;
  width: 282px;
  transform: translateX(-50%);
}

[dir="rtl"] .device-main {
  transform: translateX(50%);
}

.device-side {
  position: absolute;
  z-index: 2;
  width: 214px;
  opacity: 0.98;
}

.device-places {
  inset-inline-start: -62px;
  inset-block-start: 138px;
}

.device-create {
  inset-inline-end: -58px;
  inset-block-start: 112px;
}

.stage-caption {
  position: absolute;
  z-index: 5;
  inset-inline-end: 24px;
  inset-block-end: 24px;
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}

.stage-caption span {
  color: var(--success);
  font-size: 0.67rem;
  font-weight: 750;
}

.stage-caption strong {
  font-size: 0.84rem;
}

.confidence-strip {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.confidence-strip div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 1px;
  border-inline-end: 1px solid var(--line-soft);
  padding: 22px 26px;
}

.confidence-strip div:last-child {
  border-inline-end: 0;
}

.confidence-strip strong {
  font-size: 1rem;
  font-weight: 750;
}

.confidence-strip span {
  color: var(--text-muted);
  font-size: 0.76rem;
}

.journey {
  padding-block: clamp(108px, 13vw, 176px);
}

.section-intro {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.section-intro .eyebrow {
  justify-content: center;
}

.section-intro h2,
.trust h2,
.verification h2,
.final-cta h2 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 5.4vw, 5.15rem);
  font-weight: 780;
  letter-spacing: normal;
  line-height: 1.05;
}

[dir="ltr"] .section-intro h2,
[dir="ltr"] .trust h2,
[dir="ltr"] .verification h2,
[dir="ltr"] .final-cta h2 {
  letter-spacing: -0.05em;
}

.section-intro > p:last-child {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.journey-list {
  margin-top: clamp(84px, 10vw, 132px);
}

.story-row {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(60px, 10vw, 132px);
  border-top: 1px solid var(--line);
  padding-block: clamp(68px, 8vw, 108px);
}

.story-row:last-child {
  border-bottom: 1px solid var(--line);
}

.story-time .story-copy {
  order: 2;
}

.story-time .story-media {
  order: 1;
}

.story-copy {
  max-width: 510px;
}

.story-number {
  display: inline-flex;
  min-width: 42px;
  justify-content: center;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 5px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.story-kicker {
  margin-top: 26px;
  color: var(--link);
  font-size: 0.78rem;
  font-weight: 750;
}

.story-copy h3 {
  margin-top: 10px;
  font-size: clamp(2.3rem, 4.1vw, 4rem);
  font-weight: 760;
  letter-spacing: normal;
  line-height: 1.08;
}

.story-copy > p:not(.story-kicker) {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.story-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 7px 13px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 650;
}

.story-media {
  position: relative;
  height: 580px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
}

.story-media-sun {
  border-color: #f2e3bd;
  background: var(--sun-soft);
}

.story-media-lime {
  border-color: #e2ebd1;
  background: var(--lime-soft);
}

.story-media-aqua {
  border-color: #d5ecee;
  background: var(--aqua-soft);
}

.story-device {
  position: absolute;
  inset-block-start: 36px;
  inset-inline-start: 50%;
  width: 276px;
  overflow: hidden;
  border: 7px solid var(--ink);
  border-radius: var(--radius-phone);
  background: var(--white);
  box-shadow: var(--shadow-phone);
  transform: translateX(-50%);
}

[dir="rtl"] .story-device {
  transform: translateX(50%);
}

.story-media > p {
  position: absolute;
  z-index: 3;
  inset-inline: 28px;
  inset-block-end: 26px;
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 16px;
  box-shadow: 0 12px 34px rgba(14, 13, 32, 0.075);
}

.story-media > p strong {
  font-size: 0.9rem;
}

.story-media > p span {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 116px);
  padding-block: clamp(110px, 13vw, 170px);
}

.trust-heading > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.trust-heading .text-link {
  margin-top: 24px;
}

.trust-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.trust-panel article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line-soft);
  padding: 28px 30px;
}

.trust-panel article > span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.trust-panel h3 {
  font-size: 1.08rem;
  font-weight: 750;
}

.trust-panel p {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.trust-signature {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--lime-soft);
  padding: 20px 30px;
  color: var(--success);
  font-size: 0.83rem;
  font-weight: 700;
}

.trust-signature img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.verification {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.62fr);
  align-items: center;
  gap: clamp(52px, 8vw, 104px);
  border: 1px solid #d5ecee;
  border-radius: 34px;
  background: var(--aqua-soft);
  padding: clamp(44px, 7vw, 84px);
}

.verification-copy > p:not(.eyebrow, .network-note) {
  max-width: 590px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.85;
}

.sender-note {
  max-width: 430px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-block: 1px solid #c7e4e7;
  padding-block: 14px;
}

.sender-note span {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.sender-note strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.network-note {
  max-width: 520px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.75;
}

.sms-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.sms-header,
.sms-identity {
  display: flex;
  align-items: center;
}

.sms-header {
  justify-content: space-between;
  gap: 16px;
}

.sms-identity {
  gap: 12px;
}

.sms-identity img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.sms-identity div {
  display: grid;
  gap: 1px;
}

.sms-identity strong {
  font-size: 0.88rem;
}

.sms-identity span,
.sms-warning {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.example-label {
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--success);
  padding: 6px 10px;
  font-size: 0.66rem;
  font-weight: 750;
}

.sms-message {
  margin-top: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 20px 20px 7px 20px;
  background: var(--surface);
  padding: 22px;
}

[dir="ltr"] .sms-message {
  border-radius: 20px 20px 20px 7px;
}

.sms-message p,
.sms-message small {
  color: var(--text-muted);
}

.sms-message p {
  font-size: 0.84rem;
}

.sms-message strong {
  display: block;
  margin-block: 8px 4px;
  color: var(--ink);
  font-size: clamp(2.25rem, 5vw, 3.55rem);
  letter-spacing: 0.15em;
  line-height: 1;
}

.sms-message small {
  font-size: 0.68rem;
}

.sms-warning {
  margin-top: 13px;
  line-height: 1.6;
}

.final-cta {
  min-height: 380px;
  margin-block: 110px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) minmax(250px, 0.48fr);
  align-items: center;
  gap: 42px;
  border: 1px solid #e1ebd0;
  border-radius: 34px;
  background: var(--lime-soft);
  padding: clamp(38px, 6vw, 68px);
}

.final-brand {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 800;
}

.final-brand img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.final-copy h2 {
  max-width: 680px;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.final-actions {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.final-actions > span {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
  padding: 54px max(24px, calc((100% - 1180px) / 2)) 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto minmax(210px, 0.52fr) 1fr;
  align-items: center;
  gap: 38px;
}

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

.footer-top > p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

[dir="rtl"] .footer-top nav {
  justify-content: flex-start;
}

.footer-top nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 650;
}

.footer-top nav a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--text-muted);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.company-details {
  max-width: 900px;
}

.company-details a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms var(--ease), text-decoration-color 160ms var(--ease);
}

.company-details a:hover,
.company-details a:focus-visible {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms var(--ease), transform 620ms var(--spring);
}

.js .reveal[data-delay="1"] {
  transition-delay: 90ms;
}

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

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(410px, 0.8fr);
    gap: 42px;
  }

  .product-stage {
    height: 590px;
  }

  .device-main {
    width: 258px;
  }

  .device-side {
    width: 190px;
  }

  .story-row {
    grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1fr);
    gap: 58px;
  }

  .trust {
    grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
    gap: 54px;
  }

  .final-cta {
    grid-template-columns: 100px 1fr;
  }

  .final-brand img {
    width: 78px;
    height: 78px;
  }

  .final-actions {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(720px, calc(100% - 34px));
  }

  .nav-shell {
    min-height: 72px;
  }

  .menu-button {
    display: grid;
    margin-inline-start: auto;
    order: 2;
  }

  .nav-actions {
    order: 1;
  }

  .nav-actions .button {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 78px 17px auto;
    max-height: calc(100vh - 100px);
    display: grid;
    align-items: stretch;
    gap: 0;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms var(--ease), transform 220ms var(--spring), visibility 180ms;
  }

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

  .site-nav a {
    min-height: 52px;
    border-bottom: 1px solid var(--line-soft);
    padding-inline: 13px;
    font-size: 0.9rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .no-js .menu-button {
    display: none;
  }

  .no-js .site-nav {
    position: static;
    max-height: none;
    display: flex;
    overflow-x: auto;
    border: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .no-js .site-nav a {
    min-width: max-content;
    border: 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 62px;
    padding-block: 68px 84px;
  }

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

  .hero h1 {
    max-width: 620px;
  }

  .product-stage {
    width: min(100%, 620px);
    height: 650px;
    justify-self: center;
  }

  .device-main {
    width: 282px;
  }

  .device-side {
    width: 214px;
  }

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

  .confidence-strip div:nth-child(2) {
    border-inline-end: 0;
  }

  .confidence-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .story-row,
  .trust,
  .verification {
    grid-template-columns: 1fr;
  }

  .story-row {
    gap: 46px;
  }

  .story-time .story-copy,
  .story-time .story-media {
    order: initial;
  }

  .story-copy {
    max-width: 620px;
  }

  .story-media {
    width: min(100%, 620px);
    justify-self: center;
  }

  .trust-heading {
    max-width: 650px;
  }

  .trust-panel {
    width: min(100%, 650px);
  }

  .verification {
    gap: 46px;
  }

  .verification-copy {
    max-width: 650px;
  }

  .sms-card {
    width: min(100%, 520px);
  }

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

  .footer-top nav,
  [dir="rtl"] .footer-top nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 28px);
    --radius-lg: 24px;
    --radius-phone: 34px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    font-size: 1rem;
  }

  .language-link {
    font-size: 0.74rem;
  }

  .hero {
    gap: 48px;
    padding-block: 48px 70px;
  }

  .hero h1,
  [dir="ltr"] .hero h1 {
    margin-top: 20px;
    font-size: clamp(3.05rem, 14vw, 4.2rem);
    letter-spacing: normal;
  }

  [dir="ltr"] .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.8rem);
    letter-spacing: -0.055em;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: min(100%, 330px);
  }

  .hero-points {
    gap: 8px 16px;
    margin-top: 24px;
  }

  .product-stage {
    height: 520px;
    border-radius: 26px;
  }

  .device {
    border-width: 5px;
  }

  .device-main {
    inset-block-start: 22px;
    width: 226px;
  }

  .device-side {
    width: 166px;
  }

  .device-places {
    inset-inline-start: -72px;
    inset-block-start: 124px;
  }

  .device-create {
    inset-inline-end: -70px;
    inset-block-start: 106px;
  }

  .stage-block-aqua {
    width: 120px;
    height: 76px;
    inset-inline-end: 18px;
    inset-block-start: 18px;
  }

  .stage-block-lime {
    width: 96px;
    height: 62px;
    inset-inline-start: 18px;
    inset-block-end: 20px;
  }

  .stage-caption {
    inset-inline-end: 16px;
    inset-block-end: 16px;
    padding: 11px 13px;
  }

  .confidence-strip div {
    min-height: 94px;
    padding: 16px;
  }

  .confidence-strip strong {
    font-size: 0.88rem;
  }

  .journey {
    padding-block: 92px;
  }

  .section-intro {
    text-align: start;
  }

  .section-intro .eyebrow {
    justify-content: flex-start;
  }

  .section-intro h2,
  .trust h2,
  .verification h2,
  .final-cta h2 {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
  }

  .section-intro > p:last-child {
    margin-inline: 0;
    font-size: 0.95rem;
  }

  .journey-list {
    margin-top: 68px;
  }

  .story-row {
    min-height: auto;
    gap: 38px;
    padding-block: 62px;
  }

  .story-copy h3 {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .story-copy > p:not(.story-kicker) {
    font-size: 0.93rem;
  }

  .story-media {
    height: 510px;
  }

  .story-device {
    width: 234px;
    border-width: 5px;
  }

  .story-media > p {
    inset-inline: 18px;
    inset-block-end: 18px;
  }

  .trust {
    gap: 44px;
    padding-block: 90px;
  }

  .trust-heading > p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  .trust-panel article {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 22px 20px;
  }

  .trust-signature {
    padding: 18px 20px;
  }

  .verification {
    width: calc(100% - 20px);
    gap: 40px;
    border-radius: 26px;
    padding: 30px 20px;
  }

  .sender-note {
    align-items: flex-start;
  }

  .sms-card {
    padding: 19px;
  }

  .sms-message strong {
    font-size: 2.45rem;
  }

  .final-cta {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-block: 84px;
    border-radius: 26px;
    padding: 32px 24px;
  }

  .final-brand {
    justify-items: start;
  }

  .final-brand img {
    width: 70px;
    height: 70px;
  }

  .final-actions {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
