:root {
  --ink: #11111a;
  --ink-soft: #525262;
  --paper: #f6f6fa;
  --card: #ffffff;
  --line: rgba(17, 17, 26, 0.1);
  --purple: #5b4cf4;
  --purple-deep: #3e31c9;
  --purple-soft: #eeeaff;
  --night: #0b0b18;
  --night-soft: #17172b;
  --mint: #b9f7dc;
  --section: min(1180px, calc(100vw - 48px));
  --shadow: 0 28px 80px rgba(35, 28, 104, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "PingFang SC", "Noto Sans Arabic", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
select {
  font: inherit;
}

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

img {
  max-width: 100%;
}

::selection {
  background: rgba(91, 76, 244, 0.2);
}

:focus-visible {
  outline: 3px solid rgba(91, 76, 244, 0.35);
  outline-offset: 3px;
}

.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;
}

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

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  border-block-end: 1px solid rgba(17, 17, 26, 0.07);
  background: rgba(246, 246, 250, 0.86);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a[aria-current="page"] {
  background: var(--card);
  box-shadow: 0 8px 30px rgba(31, 25, 85, 0.08);
}

.header-inner {
  width: var(--section);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-icon {
  border-radius: 23%;
  box-shadow: 0 8px 20px rgba(75, 59, 218, 0.22);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.brand-copy strong span {
  color: var(--purple);
}

.brand-copy small {
  color: #777786;
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-inline-start: auto;
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #5f5f6c;
  font-size: 14px;
  font-weight: 600;
  transition: 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(31, 25, 85, 0.08);
}

.language-picker {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-inline: 13px 8px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  color: #585868;
}

.language-picker > span {
  font-size: 17px;
  color: var(--purple);
}

.language-picker select {
  max-width: 112px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 52px;
  padding-block: 92px 88px;
  overflow: hidden;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(91, 76, 244, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(76, 59, 206, 0.07);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(91, 76, 244, 0.1);
}

.hero h1 {
  max-width: 720px;
  margin: 26px 0 24px;
  font-size: clamp(46px, 5.6vw, 76px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 1.04;
}

.hero h1 span {
  display: block;
  color: var(--purple);
}

.hero-description {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.75;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 28px 34px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #424251;
  font-size: 13px;
  font-weight: 650;
}

.hero-badges i {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #ddf8eb;
  color: #147b51;
  font-size: 11px;
  font-style: normal;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.button svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.arrow {
  font-size: 18px;
  line-height: 1;
}

.button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 14px 32px rgba(17, 17, 26, 0.2);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(31, 25, 85, 0.06);
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  color: #8a8a98;
  font-size: 12px;
}

.availability span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f3b84b;
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(91, 76, 244, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(91, 76, 244, 0.035),
    0 0 0 120px rgba(91, 76, 244, 0.025);
}

.phone {
  position: relative;
  overflow: hidden;
  border: 8px solid #101014;
  border-radius: 52px;
  background: #101014;
  box-shadow:
    0 36px 80px rgba(21, 15, 78, 0.27),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  inset-block-start: 11px;
  inset-inline-start: 50%;
  width: 30%;
  height: 22px;
  border-radius: 999px;
  background: #050507;
  transform: translateX(-50%);
}

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

.phone-hero {
  z-index: 2;
  width: min(315px, 72vw);
  transform: rotate(2.5deg);
}

.formula-orbit {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--purple-deep);
  box-shadow: 0 16px 34px rgba(41, 31, 126, 0.12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 13px;
  font-weight: 750;
}

.formula-orbit-one {
  inset-block-start: 21%;
  inset-inline-start: 0;
}

.formula-orbit-two {
  inset-block-start: 8%;
  inset-inline-end: 5%;
  font-size: 19px;
}

.formula-orbit-three {
  inset-block-end: 20%;
  inset-inline-end: 0;
}

.result-chip {
  position: absolute;
  z-index: 4;
  inset-block-end: 8%;
  inset-inline-start: 1%;
  min-width: 218px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.result-chip small,
.result-chip span {
  display: block;
  color: #777789;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
}

.result-chip strong {
  display: block;
  margin-block: 4px;
  color: var(--purple);
  font-size: 31px;
  letter-spacing: -0.04em;
}

.result-chip span {
  font-size: 9px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 320px;
  height: 320px;
  inset-block-start: 8%;
  inset-inline-start: -190px;
  background: rgba(185, 247, 220, 0.5);
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  inset-block-end: -220px;
  inset-inline-end: 4%;
  background: rgba(179, 168, 255, 0.35);
}

.trust-bar {
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: 40px;
  align-items: center;
  padding: 31px 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 60px rgba(31, 25, 85, 0.06);
}

.trust-intro {
  padding-inline-end: 30px;
  border-inline-end: 1px solid var(--line);
}

.trust-intro > span {
  font-size: 17px;
  font-weight: 800;
}

.trust-intro p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: grid;
  gap: 5px;
  text-align: center;
}

.stat strong {
  color: var(--purple);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.stat span {
  color: #737380;
  font-size: 12px;
}

.features {
  padding-block: 132px 140px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 60px;
  margin-block-end: 54px;
}

.section-heading h2,
.privacy-copy h2,
.closing-cta h2,
.inner-hero h1 {
  margin: 11px 0 0;
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

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

.feature-card {
  min-height: 318px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 14px 50px rgba(33, 28, 89, 0.05);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 76, 244, 0.26);
  box-shadow: 0 24px 65px rgba(45, 35, 139, 0.11);
}

.feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.feature-index {
  color: #a0a0ad;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
}

.feature-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--purple-soft);
  color: var(--purple);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 25px;
  font-weight: 800;
}

.feature-card:nth-child(2) .feature-mark {
  background: #e7f8f1;
  color: #16805a;
}

.feature-card:nth-child(3) .feature-mark {
  background: #fff2dd;
  color: #b46b0c;
}

.feature-card:nth-child(4) .feature-mark {
  background: #eaf2ff;
  color: #2c69c8;
}

.feature-card h3 {
  margin: 25px 0 10px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.feature-tag {
  width: fit-content;
  margin-block-start: auto;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f5f5f8;
  color: #777786;
  font-size: 11px;
  font-weight: 700;
}

.showcase {
  position: relative;
  overflow: hidden;
  padding-block: 128px 140px;
  background:
    radial-gradient(circle at 20% 20%, rgba(91, 76, 244, 0.22), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(63, 210, 159, 0.15), transparent 28%),
    var(--night);
  color: white;
}

.showcase::after {
  content: "f(x)";
  position: absolute;
  inset-block-start: -90px;
  inset-inline-end: 3%;
  color: rgba(255, 255, 255, 0.025);
  font-size: 280px;
  font-weight: 900;
  pointer-events: none;
}

.section-heading.light {
  position: relative;
  z-index: 2;
}

.section-heading.light h2 {
  color: white;
}

.section-heading.light > p {
  color: #aaaabc;
}

.showcase .section-kicker {
  color: #a89fff;
}

.screen-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.english-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 80px;
  max-width: 980px;
  margin-inline: auto;
}

.phone-showcase-single {
  width: min(330px, 84vw);
  border-block-end: 6px solid #101014;
  border-radius: 48px;
}

.workflow-list {
  display: grid;
  gap: 14px;
}

.workflow-list article {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.workflow-list article > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(145, 132, 255, 0.17);
  color: #b3abff;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
}

.workflow-list h3 {
  margin: 0 0 7px;
  font-size: 19px;
}

.workflow-list p {
  margin: 0;
  color: #a5a5b4;
  font-size: 14px;
  line-height: 1.65;
}

.screen-card {
  min-width: 0;
  overflow: hidden;
  padding: 22px 22px 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
}

.screen-caption {
  min-height: 78px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-block-end: 22px;
}

.screen-caption > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background: rgba(145, 132, 255, 0.17);
  color: #b3abff;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
}

.screen-caption h3 {
  margin: 1px 0 5px;
  font-size: 17px;
}

.screen-caption p {
  margin: 0;
  color: #9c9cab;
  font-size: 12px;
  line-height: 1.5;
}

.phone-showcase {
  width: min(270px, 86%);
  margin-inline: auto;
  border-width: 6px;
  border-block-end: 0;
  border-radius: 42px 42px 0 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42);
}

.phone-showcase .phone-speaker {
  height: 17px;
  inset-block-start: 8px;
}

.privacy-banner {
  min-height: 530px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
  padding-block: 110px;
}

.privacy-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: min(390px, 80vw);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, white 0 37%, transparent 38%),
    conic-gradient(from 180deg, #dfd9ff, #b9f7dc, #f1efff, #dfd9ff);
  box-shadow:
    inset 0 0 0 46px rgba(255, 255, 255, 0.56),
    0 35px 90px rgba(58, 42, 151, 0.12);
}

.privacy-symbol::before,
.privacy-symbol::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(91, 76, 244, 0.18);
  border-radius: 50%;
}

.privacy-symbol::before {
  width: 112%;
  height: 112%;
}

.privacy-symbol::after {
  width: 128%;
  height: 128%;
}

.privacy-symbol span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border-radius: 32px;
  background: var(--purple);
  color: white;
  font-size: 48px;
  box-shadow: 0 20px 50px rgba(70, 53, 212, 0.3);
}

.privacy-copy h2 {
  max-width: 650px;
}

.privacy-copy > p {
  max-width: 670px;
  margin: 23px 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.privacy-copy ul {
  display: grid;
  gap: 13px;
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
}

.privacy-copy li {
  position: relative;
  padding-inline-start: 26px;
  color: #3f3f4c;
}

.privacy-copy li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: #19845e;
  font-weight: 850;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-weight: 750;
}

.closing-cta {
  position: relative;
  min-height: 250px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
  margin-block-end: 110px;
  padding: 46px 52px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--purple);
  color: white;
  box-shadow: 0 30px 80px rgba(66, 49, 207, 0.24);
}

.closing-cta::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  inset-inline-end: -120px;
  inset-block-end: -220px;
  border: 55px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.closing-orb {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  font-family: Georgia, serif;
  font-size: 26px;
  font-style: italic;
}

.closing-cta > div:nth-child(2) {
  position: relative;
  z-index: 2;
}

.closing-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 47px);
}

.closing-cta p {
  max-width: 670px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.button-disabled {
  position: relative;
  z-index: 2;
  background: white;
  color: var(--purple-deep);
  cursor: default;
}

.button-disabled:hover {
  transform: none;
}

.inner-page {
  min-height: 70vh;
}

.inner-hero {
  position: relative;
  padding-block: 110px 70px;
  border-block-end: 1px solid var(--line);
}

.inner-hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  inset-inline-end: 3%;
  inset-block-start: 25px;
  border-radius: 50%;
  background: rgba(195, 186, 255, 0.32);
  filter: blur(55px);
  pointer-events: none;
}

.inner-hero h1 {
  max-width: 900px;
  font-size: clamp(43px, 6vw, 72px);
}

.inner-hero > p {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.policy-date {
  display: block;
  margin-block-start: 24px;
  color: #898996;
  font-size: 13px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
  padding-block: 62px 110px;
}

.support-contact-card,
.compatibility-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 16px 54px rgba(31, 25, 85, 0.06);
}

.support-contact-card {
  background:
    radial-gradient(circle at 95% 0%, rgba(184, 173, 255, 0.25), transparent 34%),
    var(--card);
}

.contact-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--purple);
  color: white;
  font-size: 21px;
  font-weight: 800;
}

.compatibility-card .contact-mark {
  background: var(--ink);
  font-size: 15px;
}

.support-contact-card h2,
.compatibility-card h2 {
  margin: 8px 0;
  font-size: 23px;
}

.support-contact-card a {
  color: var(--purple);
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.support-contact-card p,
.compatibility-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.troubleshooting,
.faq-section {
  padding-block-end: 110px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  margin-block-end: 34px;
}

.section-heading.compact h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-grid li {
  min-height: 240px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
}

.step-grid li > span {
  display: inline-block;
  margin-block-end: 38px;
  color: var(--purple);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
}

.step-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.step-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 23px 62px 23px 25px;
  font-size: 17px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

[dir="rtl"] .faq-list summary {
  padding: 23px 25px 23px 62px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 23px;
  inset-block-start: 19px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 25px 24px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.support-privacy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-block-end: 110px;
  padding: 28px 30px;
  border-radius: 22px;
  background: var(--purple-soft);
}

.support-privacy p {
  margin: 0;
  color: #535363;
}

.support-privacy a {
  color: var(--purple);
  font-weight: 800;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-block: 54px 70px;
}

.privacy-summary article {
  display: flex;
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
}

.privacy-summary article > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #ddf8eb;
  color: #157d55;
  font-weight: 850;
}

.privacy-summary strong {
  display: block;
  margin-block-end: 4px;
}

.privacy-summary p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: center;
  gap: 70px;
  padding-block-end: 120px;
}

.policy-aside {
  position: sticky;
  inset-block-start: 120px;
  align-self: start;
  padding: 24px;
  border-radius: 22px;
  background: var(--night);
  color: white;
}

.policy-aside span {
  color: #a79eff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-aside strong {
  display: block;
  margin-block: 30px 10px;
  font-size: 24px;
  line-height: 1.25;
}

.policy-aside p {
  margin: 0;
  color: #a4a4b4;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  line-height: 1.6;
}

.policy-document {
  padding: 42px 46px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 18px 70px rgba(31, 25, 85, 0.06);
}

.policy-document section + section {
  margin-block-start: 42px;
  padding-block-start: 42px;
  border-block-start: 1px solid var(--line);
}

.policy-document h2 {
  margin: 0 0 15px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.policy-document p,
.policy-document li {
  color: #555563;
  font-size: 15px;
  line-height: 1.85;
}

.policy-document p {
  margin: 0;
}

.policy-document p + p {
  margin-block-start: 12px;
}

.policy-document ul {
  display: grid;
  gap: 7px;
  margin: 16px 0;
  padding-inline-start: 22px;
}

.policy-contact {
  margin-block-start: 45px;
  padding: 23px;
  border-radius: 18px;
  background: var(--purple-soft);
}

.policy-contact p,
.policy-contact strong {
  color: #3c356f;
}

.policy-contact a {
  color: var(--purple);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 70px max(24px, calc((100vw - 1180px) / 2)) 28px;
  background: var(--night);
  color: white;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-block-end: 55px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 520px;
}

.footer-brand strong {
  font-size: 17px;
}

.footer-brand p {
  margin: 6px 0 0;
  color: #9393a3;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: #c4c4cf;
  font-size: 13px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block-start: 24px;
  border-block-start: 1px solid rgba(255, 255, 255, 0.08);
  color: #777787;
  font-size: 11px;
}

[dir="rtl"] body {
  font-family:
    "SF Arabic", "Noto Sans Arabic", Tahoma, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

[dir="rtl"] .hero h1,
[dir="rtl"] .section-heading h2,
[dir="rtl"] .privacy-copy h2,
[dir="rtl"] .inner-hero h1 {
  letter-spacing: 0;
}

[dir="rtl"] .eyebrow,
[dir="rtl"] .section-kicker {
  letter-spacing: 0;
}

[dir="rtl"] .button svg,
[dir="rtl"] .text-link svg {
  transform: scaleX(-1);
}

@media (max-width: 980px) {
  :root {
    --section: min(100% - 36px, 760px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-copy small,
  .desktop-nav {
    display: none;
  }

  .language-picker {
    margin-inline-start: auto;
  }

  .mobile-nav {
    width: var(--section);
    display: flex;
    margin-inline: auto;
    padding-block: 0 10px;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav a {
    flex: 0 0 auto;
    padding: 6px 10px;
    color: #6c6c79;
    font-size: 12px;
    font-weight: 650;
  }

  .hero {
    min-height: unset;
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 75px 95px;
  }

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

  .hero-description {
    margin-inline: auto;
  }

  .hero-badges,
  .hero-actions,
  .availability {
    justify-content: center;
  }

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

  .trust-bar {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .trust-intro {
    padding: 0 0 24px;
    border-inline-end: 0;
    border-block-end: 1px solid var(--line);
    text-align: center;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .screen-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .english-showcase {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .phone-showcase-single {
    margin-inline: auto;
  }

  .screen-card {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }

  .phone-showcase {
    width: min(310px, 80%);
  }

  .privacy-banner {
    grid-template-columns: 1fr;
    gap: 80px;
  }

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

  .privacy-copy > p {
    margin-inline: auto;
  }

  .privacy-copy ul {
    width: fit-content;
    margin-inline: auto;
    text-align: start;
  }

  .closing-cta {
    grid-template-columns: auto 1fr;
  }

  .closing-cta .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

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

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .policy-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --section: calc(100vw - 28px);
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .language-picker {
    padding-inline: 9px 4px;
  }

  .language-picker > span {
    display: none;
  }

  .language-picker select {
    width: 92px;
    font-size: 12px;
  }

  .hero {
    padding-block-start: 58px;
  }

  .hero h1 {
    margin-block-start: 22px;
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-visual::before {
    width: 330px;
    height: 330px;
  }

  .phone-hero {
    width: min(265px, 70vw);
  }

  .formula-orbit-one {
    inset-inline-start: 1%;
  }

  .formula-orbit-two {
    inset-inline-end: 1%;
  }

  .formula-orbit-three {
    display: none;
  }

  .result-chip {
    inset-block-end: 6%;
    min-width: 190px;
    padding: 14px 16px;
  }

  .result-chip strong {
    font-size: 26px;
  }

  .trust-bar {
    padding: 25px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 10px;
  }

  .features,
  .showcase {
    padding-block: 92px;
  }

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

  .feature-card {
    min-height: 290px;
    padding: 24px;
  }

  .workflow-list article {
    padding: 21px;
  }

  .section-heading {
    margin-block-end: 38px;
  }

  .section-heading h2,
  .privacy-copy h2 {
    font-size: 38px;
  }

  .privacy-banner {
    padding-block: 90px;
  }

  .privacy-symbol {
    width: min(280px, 78vw);
    box-shadow:
      inset 0 0 0 30px rgba(255, 255, 255, 0.56),
      0 35px 90px rgba(58, 42, 151, 0.12);
  }

  .privacy-symbol span {
    width: 78px;
    height: 78px;
    border-radius: 25px;
    font-size: 38px;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    margin-block-end: 80px;
    padding: 34px 27px;
    text-align: center;
  }

  .closing-orb,
  .closing-cta .button {
    justify-self: center;
  }

  .inner-hero {
    padding-block: 72px 52px;
  }

  .inner-hero h1 {
    font-size: 43px;
  }

  .inner-hero > p {
    font-size: 16px;
  }

  .support-grid {
    padding-block: 42px 82px;
  }

  .support-contact-card,
  .compatibility-card {
    display: block;
    padding: 25px;
  }

  .contact-mark {
    margin-block-end: 22px;
  }

  .step-grid,
  .privacy-summary {
    grid-template-columns: 1fr;
  }

  .step-grid li {
    min-height: 200px;
  }

  .troubleshooting,
  .faq-section {
    padding-block-end: 82px;
  }

  .support-privacy {
    display: block;
    margin-block-end: 80px;
  }

  .support-privacy a {
    display: block;
    margin-block-start: 10px;
  }

  .policy-layout {
    padding-block-end: 80px;
  }

  .policy-document {
    padding: 29px 23px;
  }

  .footer-inner,
  .footer-bottom {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
