@font-face {
  font-family: "Readex Pro";
  src: url("../assets/fonts/readex-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Readex Pro";
  src: url("../assets/fonts/readex-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Readex Pro";
  src: url("../assets/fonts/readex-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Readex Pro";
  src: url("../assets/fonts/readex-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Alexandria";
  src: url("../assets/fonts/alexandria-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Alexandria";
  src: url("../assets/fonts/alexandria-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Alexandria";
  src: url("../assets/fonts/alexandria-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Alexandria";
  src: url("../assets/fonts/alexandria-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../assets/fonts/ibm-plex-arabic-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../assets/fonts/ibm-plex-arabic-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../assets/fonts/ibm-plex-arabic-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../assets/fonts/ibm-plex-arabic-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --font-display: "Alexandria", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-body: "IBM Plex Sans Arabic", system-ui, sans-serif;
  --purple-950: #160d2d;
  --purple-900: #20133f;
  --purple-800: #2b1a52;
  --purple-700: #382664;
  --purple-600: #5d3998;
  --purple-500: #7d4be0;
  --pink: #ef436a;
  --pink-soft: #e789a1;
  --orange: #f89e48;
  --cyan: #6cccdd;
  --plum: #a95fa2;
  --ink: #1a1430;
  --muted: #6d6878;
  --line: #eae5ef;
  --surface: #ffffff;
  --surface-soft: #f8f5fa;
  --canvas: #f3f3f6;
  --canvas-soft: #f7f7f9;
  --container: 1200px;
  --section-space: clamp(104px, 9vw, 142px);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow-sm: 0 14px 40px rgba(35, 20, 63, 0.08);
  --shadow-lg: 0 36px 90px rgba(18, 8, 42, 0.24);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfafc;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.82;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--pink);
}

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

img {
  height: auto;
}

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

h1,
h2,
h3,
h4,
.button {
  font-family: var(--font-display);
}

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

p {
  text-wrap: pretty;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  right: 12px;
  padding: 12px 18px;
  color: #fff;
  background: var(--purple-950);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.page-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--cyan));
}

.site-header {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(56, 38, 100, .07);
  box-shadow: 0 10px 34px rgba(22, 13, 45, .045);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: padding .35s ease, background .35s ease, box-shadow .35s ease, color .35s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(56, 38, 100, .08);
  box-shadow: 0 12px 36px rgba(22, 13, 45, .07);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell,
.nav-panel,
.nav-links,
.brand,
.hero-actions,
.store-row,
.proof-bar,
.billing-toggle,
.price-card-top,
.socials,
.footer-bottom {
  display: flex;
  align-items: center;
}

.nav-shell {
  min-height: 58px;
  justify-content: space-between;
}

.brand {
  flex-shrink: 0;
}

.brand .brand-logo {
  width: 202px;
  height: auto;
  object-fit: contain;
}

.nav-panel {
  gap: 24px;
}

.nav-links {
  gap: 34px;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  opacity: .8;
  transition: opacity .25s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--pink);
  border-radius: 99px;
  transition: width .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  place-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 4px;
  transition: transform .3s ease;
}

.nav-drawer-head,
.menu-backdrop {
  display: none;
}

.language-switch {
  display: inline-flex;
  min-width: 48px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  color: inherit;
  background: #f7f3fa;
  border: 1px solid rgba(56,38,100,.1);
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .3s var(--ease);
}

.language-switch:hover {
  background: #efe8f4;
  transform: translateY(-2px);
}

.language-switch svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.site-header.is-scrolled .language-switch {
  background: #f7f3fa;
  border-color: rgba(56,38,100,.1);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

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

.button svg,
.text-link svg,
.bento-copy a svg,
.tour-tab > svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

[dir="rtl"] .button svg,
[dir="rtl"] .text-link svg,
[dir="rtl"] .bento-copy a svg,
[dir="rtl"] .tour-tab > svg {
  transform: scaleX(-1);
}

.button-sm {
  min-height: 44px;
  padding: 10px 21px;
}

.button-lg {
  min-height: 58px;
  padding: 16px 28px;
  font-size: 15px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink) 0%, #d72c73 52%, #aa2aa7 100%);
  box-shadow: 0 14px 32px rgba(239, 67, 106, .3);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(239, 67, 106, .4);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .32);
}

.button-outline {
  color: var(--purple-700);
  background: transparent;
  border-color: rgba(56, 38, 100, .25);
}

.button-outline:hover {
  color: #fff;
  background: var(--purple-700);
  border-color: var(--purple-700);
}

.button-full {
  width: 100%;
}

.hero {
  --parallax-near: 0px;
  --parallax-far: 0px;
  position: relative;
  min-height: 980px;
  padding: 168px 0 48px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 34%, rgba(125, 75, 224, .18), transparent 28%),
    linear-gradient(145deg, #110925 0%, var(--purple-950) 40%, #241145 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(9, 5, 22, .32));
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 650px;
  align-items: center;
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
  gap: 60px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--purple-600);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, .76);
}

.eyebrow-light::before {
  display: none;
}

.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(239, 67, 106, .12);
}

.live-dot::after {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(239, 67, 106, .55);
  border-radius: 50%;
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% { transform: scale(.4); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}

.hero h1,
.section-heading h2,
.about-copy h2,
.faq-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.24;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(54px, 6vw, 88px);
}

.hero h1 span,
.section-heading h2 span,
.about-copy h2 span,
.faq-intro h2 span {
  color: transparent;
  background: linear-gradient(100deg, var(--pink) 5%, #f16f92 40%, var(--orange) 94%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Arabic glyphs such as ح، ي، م extend below the Latin baseline. Gradient text
   needs its own painted box so those descenders are never clipped. */
[dir="rtl"] .hero h1,
[dir="rtl"] .section-heading h2,
[dir="rtl"] .about-copy h2,
[dir="rtl"] .faq-intro h2 {
  line-height: 1.38;
}

[dir="rtl"] .hero h1 span,
[dir="rtl"] .section-heading h2 span,
[dir="rtl"] .about-copy h2 span,
[dir="rtl"] .faq-intro h2 span {
  display: inline-block;
  padding: .04em .025em .18em;
  margin: -.04em -.025em -.18em;
  line-height: 1.34;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-lead {
  max-width: 605px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 2.05;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.play-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.play-icon svg {
  width: 15px;
  fill: currentColor;
}

.store-row {
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.store-button {
  display: inline-flex;
  min-width: 156px;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  padding: 8px 16px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.store-button:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-2px);
}

.store-button svg {
  width: 27px;
  fill: currentColor;
}

.store-button span {
  display: grid;
  line-height: 1.1;
}

.store-button small {
  font-size: 9px;
  opacity: .6;
}

.store-button strong {
  margin-top: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  isolation: isolate;
}

.phone-stage {
  position: absolute;
  z-index: 5;
  top: 5px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  transform-style: preserve-3d;
  transition: transform .22s ease-out;
}

.phone {
  position: relative;
  overflow: hidden;
  background: #07070b;
  border: 6px solid #222229;
  border-radius: 52px;
  box-shadow:
    0 0 0 2px #5a5a64,
    inset 0 0 0 2px #000,
    var(--shadow-lg);
}

.phone-hero {
  width: 330px;
  height: 672px;
  animation: phoneBreath 6.5s var(--ease) infinite;
}

@keyframes phoneBreath {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-top {
  position: absolute;
  z-index: 5;
  top: 11px;
  left: 50%;
  width: 92px;
  height: 25px;
  transform: translateX(-50%);
  background: #050507;
  border-radius: 20px;
}

.phone-top span {
  position: absolute;
  top: 8px;
  left: 18px;
  width: 7px;
  height: 7px;
  background: #182036;
  border-radius: 50%;
  box-shadow: inset 0 0 2px #3e5384;
}

.phone-screen-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 44px;
}

.phone-screen-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: opacity .28s ease, transform .6s var(--ease);
}

.phone-screen-wrap img.is-changing {
  opacity: 0;
  transform: scale(.985);
}

.phone-side {
  position: absolute;
  right: -10px;
  width: 4px;
  background: #7c7c84;
  border-radius: 4px;
}

.phone-side-a { top: 138px; height: 70px; }
.phone-side-b { top: 220px; height: 42px; }

.hero-ring {
  position: absolute;
  z-index: -1;
  top: 46%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 540px;
  height: 540px;
  animation: spinSlow 30s linear infinite;
}

.ring-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
  border-color: rgba(239, 67, 106, .24);
  animation: spinSlow 22s linear reverse infinite;
}

@keyframes spinSlow {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-ring::before,
.hero-ring::after {
  position: absolute;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
}

.ring-one::before { top: 15%; right: 7%; background: var(--pink); box-shadow: 0 0 24px var(--pink); }
.ring-one::after { bottom: 12%; left: 10%; background: var(--cyan); box-shadow: 0 0 24px var(--cyan); }
.ring-two::before { top: 3%; left: 30%; background: var(--orange); }

.float-card {
  position: absolute;
  z-index: 8;
  display: flex;
  min-width: 180px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 17px;
  box-shadow: 0 18px 48px rgba(5, 2, 17, .26);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: floatCard 5s var(--ease) infinite;
}

.float-card > span:not(.float-icon) {
  display: grid;
  line-height: 1.35;
}

.float-card small {
  color: #7a7484;
  font-size: 9px;
}

.float-card strong {
  font-size: 12px;
}

.float-icon {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
}

.float-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.float-icon img {
  width: 45px;
  max-width: none;
  filter: drop-shadow(0 6px 10px rgba(56, 38, 100, .15));
}

.icon-pink { color: #d52f69; background: #ffe6ef; }
.icon-blue { color: #2988a0; background: #e0f7fb; }

.float-live {
  top: 80px;
  right: -8px;
}

.float-growth {
  right: auto;
  left: -32px;
  bottom: 72px;
  min-width: 172px;
  animation-delay: -2.8s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.pulse-ring {
  width: 7px;
  height: 7px;
  margin-right: auto;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(239, 67, 106, .12);
}

.mini-chart {
  display: flex;
  width: 43px;
  height: 35px;
  align-items: end;
  justify-content: center;
  gap: 3px;
  padding: 5px;
  background: #f0e9fb;
  border-radius: 10px;
}

.mini-chart i {
  width: 5px;
  background: linear-gradient(var(--pink), var(--purple-500));
  border-radius: 5px;
}

.mini-chart i:nth-child(1) { height: 35%; }
.mini-chart i:nth-child(2) { height: 55%; }
.mini-chart i:nth-child(3) { height: 72%; }
.mini-chart i:nth-child(4) { height: 100%; }

.screen-dots {
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.screen-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .25);
  border-radius: 20px;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.screen-dots button.is-active {
  width: 25px;
  background: var(--pink);
}

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

.hero-orb-one {
  top: -180px;
  right: -130px;
  width: 530px;
  height: 530px;
  background: radial-gradient(circle at 35% 40%, rgba(239, 67, 106, .28), transparent 65%);
  transform: translate3d(0, var(--parallax-near), 0);
}

.hero-orb-two {
  bottom: -250px;
  left: -140px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(108, 204, 221, .12), transparent 67%);
  transform: translate3d(0, var(--parallax-far), 0);
}

.mesh {
  position: absolute;
  width: 230px;
  height: 230px;
  opacity: .14;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.6) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.6) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,.6) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.6) 87.5%),
    linear-gradient(30deg, rgba(255,255,255,.6) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.6) 87.5%);
  background-position: 0 0, 0 0, 18px 31px;
  background-size: 36px 63px;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 72%);
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.mesh-one { top: 100px; left: 0; transform: translate3d(0, var(--parallax-far), 0) rotate(-15deg); }
.mesh-two { right: 4%; bottom: 10%; transform: translate3d(0, var(--parallax-near), 0) rotate(18deg); }

.ambient-particles {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
}

.ambient-particles span {
  position: absolute;
  bottom: -30px;
  left: var(--particle-x);
  width: var(--particle-size);
  height: var(--particle-size);
  opacity: .5;
  background: rgba(255, 255, 255, .48);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(239, 67, 106, .28);
  animation: ambientRise var(--particle-duration) linear infinite;
  animation-delay: var(--particle-delay);
}

.ambient-particles span:nth-child(3n) { background: rgba(108, 204, 221, .58); }
.ambient-particles span:nth-child(4n) { background: rgba(248, 158, 72, .58); }

@keyframes ambientRise {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(.7); }
  12% { opacity: .55; }
  82% { opacity: .28; }
  100% { opacity: 0; transform: translate3d(var(--particle-drift), -1080px, 0) scale(.15); }
}

.proof-bar {
  position: relative;
  z-index: 5;
  display: grid;
  margin-top: 28px;
  padding: 27px 10px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 24px;
  grid-template-columns: repeat(4, 1fr);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.proof-bar div {
  display: grid;
  padding: 0 28px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .09);
}

.proof-bar div:last-child {
  border-left: 0;
}

.proof-bar strong {
  font-family: "Outfit", "IBM Plex Sans Arabic", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.proof-bar span {
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
}

.section-heading {
  margin-bottom: 76px;
}

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

.section-heading h2,
.about-copy h2,
.faq-intro h2 {
  font-size: clamp(39px, 4.8vw, 62px);
}

.section-heading p {
  max-width: 690px;
  margin: 27px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.product-tour {
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 42%, rgba(231, 137, 161, .15), transparent 22%),
    #fbfafc;
}

.tour-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 92px;
}

.tour-tabs {
  display: grid;
  gap: 14px;
}

.tour-tab {
  position: relative;
  display: grid;
  width: 100%;
  align-items: center;
  padding: 21px 20px;
  text-align: right;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 19px;
  cursor: pointer;
  grid-template-columns: 58px minmax(0, 1fr) 24px;
  gap: 17px;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, transform .35s var(--ease);
}

.tour-tab:hover {
  transform: translateX(-4px);
}

.tour-tab:hover .tour-number {
  transform: translateY(-2px);
}

.tour-tab.is-active {
  background: #fff;
  border-color: rgba(56, 38, 100, .09);
  box-shadow: var(--shadow-sm);
}

.tour-tab::before {
  position: absolute;
  top: 20%;
  right: 0;
  width: 3px;
  height: 60%;
  content: "";
  opacity: 0;
  background: linear-gradient(var(--pink), var(--purple-500));
  border-radius: 6px 0 0 6px;
  transition: opacity .3s ease;
}

.tour-tab.is-active::before {
  opacity: 1;
}

.tour-number {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--purple-700);
  background: linear-gradient(145deg, #fff, #f4eff8);
  border: 1px solid rgba(56, 38, 100, .09);
  border-radius: 17px;
  box-shadow: 0 9px 24px rgba(56, 38, 100, .08);
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: border-color .3s ease, box-shadow .3s ease, transform .35s var(--ease);
}

.tour-tab.is-active .tour-number {
  border-color: rgba(239, 67, 106, .34);
  box-shadow: 0 12px 30px rgba(239, 67, 106, .18);
  transform: scale(1.05);
}

.tour-number img {
  width: 49px;
  height: 49px;
}

.tour-number b {
  position: absolute;
  right: -5px;
  bottom: -6px;
  display: grid;
  min-width: 22px;
  height: 22px;
  padding-inline: 4px;
  place-items: center;
  color: #fff;
  background: var(--purple-700);
  border: 2px solid #fff;
  border-radius: 8px;
  font-size: 8px;
  line-height: 1;
}

.tour-tab > span:nth-child(2) {
  display: grid;
}

.tour-tab strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.tour-tab small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.tour-tab > svg {
  color: #a8a1b2;
}

.tour-device-wrap {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.phone-tour {
  z-index: 2;
  width: 292px;
  height: 582px;
  transform: rotate(3deg);
  box-shadow: 0 40px 90px rgba(56, 38, 100, .25), 0 0 0 2px #65616c;
}

.tour-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  background:
    radial-gradient(circle at 68% 28%, rgba(248, 158, 72, .44), transparent 23%),
    radial-gradient(circle at 35% 65%, rgba(239, 67, 106, .45), transparent 33%),
    radial-gradient(circle, rgba(125, 75, 224, .29), transparent 68%);
  border-radius: 44% 56% 65% 35% / 56% 43% 57% 44%;
  filter: blur(5px);
  animation: morph 9s ease-in-out infinite alternate;
}

@keyframes morph {
  to { border-radius: 60% 40% 36% 64% / 45% 62% 38% 55%; transform: rotate(8deg) scale(1.04); }
}

.tour-index {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 8%;
  display: flex;
  align-items: end;
  color: var(--purple-700);
  font-family: "Outfit", sans-serif;
}

.tour-index span {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.tour-index small {
  margin-bottom: 7px;
  color: #a49dae;
  font-size: 14px;
}

.solutions-section {
  color: #fff;
  background: var(--purple-950);
}

.solutions-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .25;
  background-image: radial-gradient(rgba(255,255,255,.25) .7px, transparent .7px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

.split-heading {
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr .7fr;
  gap: 80px;
}

.split-heading .eyebrow {
  color: rgba(255, 255, 255, .6);
}

.split-heading p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .55);
}

.bento-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.bento-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 38px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 30px;
  isolation: isolate;
  transition: transform .4s var(--ease), border-color .3s ease, background .3s ease;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, .18);
  transform: translateY(-6px);
}

.bento-card h3 {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.55;
}

.bento-card p {
  margin: 0;
  color: rgba(255, 255, 255, .53);
  font-size: 14px;
  line-height: 2;
}

.card-kicker {
  color: rgba(255, 255, 255, .43);
  font-family: "Outfit", "IBM Plex Sans Arabic", sans-serif;
  font-size: 11px;
  letter-spacing: .06em;
}

.bento-main {
  display: grid;
  min-height: 520px;
  grid-column: span 7;
  grid-template-columns: .9fr 1.1fr;
  background:
    radial-gradient(circle at 20% 25%, rgba(239, 67, 106, .15), transparent 35%),
    rgba(255, 255, 255, .07);
}

.bento-copy {
  z-index: 2;
  align-self: center;
}

.bento-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.bento-copy a svg {
  width: 16px;
}

.promo-stack {
  position: relative;
  min-height: 450px;
  direction: ltr;
}

.promo-stack img {
  position: absolute;
  bottom: -90px;
  width: 210px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0,0,0,.32);
}

.promo-stack img:first-child {
  z-index: 2;
  right: 22px;
  transform: rotate(3deg);
}

.promo-stack img:last-child {
  bottom: -125px;
  left: -3px;
  transform: rotate(-8deg) scale(.92);
}

.bento-auction {
  grid-column: span 5;
  background:
    radial-gradient(circle at 84% 13%, rgba(248, 158, 72, .14), transparent 22%),
    linear-gradient(145deg, rgba(239, 67, 106, .17), rgba(125, 75, 224, .1));
}

.auction-visual {
  position: relative;
  display: grid;
  min-height: 188px;
  place-items: center;
  margin: 18px 0 22px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(5, 3, 15, .22);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
}

.auction-visual::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 17px;
}

.auction-emblem {
  position: relative;
  z-index: 1;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(0,0,0,.17);
}

.auction-emblem::before {
  position: absolute;
  inset: -11px;
  content: "";
  border: 1px solid rgba(248,158,72,.22);
  border-radius: 50%;
}

.auction-emblem img {
  width: 74px;
  height: 74px;
}

.auction-route {
  position: absolute;
  z-index: 1;
  right: 46px;
  bottom: 29px;
  left: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auction-route::before {
  position: absolute;
  z-index: -1;
  right: 2px;
  left: 2px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(239,67,106,.18), rgba(248,158,72,.6), rgba(108,204,221,.18));
}

.auction-route i {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.42);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 50%;
}

.auction-route i.is-active {
  width: 13px;
  height: 13px;
  background: var(--orange);
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 0 0 6px rgba(248,158,72,.14);
}

.auction-bars {
  position: absolute;
  top: 30px;
  left: 32px;
  display: flex;
  height: 34px;
  align-items: end;
  gap: 5px;
  opacity: .72;
}

.auction-bars span {
  display: block;
  width: 5px;
  background: linear-gradient(to top, var(--pink), rgba(239,67,106,.18));
  border-radius: 999px;
}

.auction-bars span:nth-child(1) { height: 12px; }
.auction-bars span:nth-child(2) { height: 22px; }
.auction-bars span:nth-child(3) { height: 17px; }
.auction-bars span:nth-child(4) { height: 30px; background: linear-gradient(to top, var(--orange), rgba(248,158,72,.18)); }
.auction-bars span:nth-child(5) { height: 24px; }

.bento-payments,
.bento-language {
  grid-column: span 6;
}

.payment-chip {
  position: relative;
  display: grid;
  min-height: 158px;
  align-content: end;
  margin-bottom: 28px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-500), #a62d9d 65%, var(--pink));
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(0,0,0,.2);
}

.payment-chip::after {
  position: absolute;
  top: -80px;
  left: -60px;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255,255,255,.04), 0 0 0 68px rgba(255,255,255,.03);
}

.payment-chip span { font-size: 10px; opacity: .6; }
.payment-chip strong { font-size: 21px; }
.payment-chip svg { position: absolute; top: 22px; left: 22px; width: 58px; fill: none; stroke: rgba(255,255,255,.48); stroke-width: 1.2; }

.language-orbit {
  position: relative;
  width: 215px;
  height: 215px;
  margin: 0 auto 18px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 50%;
}

.language-orbit::after {
  position: absolute;
  inset: 37px;
  content: "";
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.language-orbit > strong {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  background: linear-gradient(145deg, var(--pink), var(--purple-500));
  border-radius: 50%;
  box-shadow: 0 14px 38px rgba(239,67,106,.23);
  transform: translate(-50%, -50%);
}

.orbit-backdrop {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 118px;
  height: 118px;
  opacity: .2;
  transform: translate(-50%, -50%);
  animation: orbitIconSpin 18s linear infinite;
}

@keyframes orbitIconSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.lang {
  position: absolute;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  font-size: 11px;
}

.lang-ar { top: -10px; left: 88px; }
.lang-en { top: 50px; right: -9px; }
.lang-fa { bottom: 8px; right: 18px; }
.lang-hi { bottom: 8px; left: 18px; }
.lang-ur { top: 50px; left: -9px; }

.bento-delivery {
  display: grid;
  min-height: 280px;
  align-items: center;
  grid-column: span 12;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
}

.delivery-path {
  position: relative;
  height: 160px;
}

.path-line {
  position: absolute;
  top: 78px;
  right: 40px;
  left: 40px;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(255,255,255,.2) 50%, transparent 50%);
  background-size: 14px 2px;
}

.pin {
  position: absolute;
  z-index: 2;
  top: 57px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

.pin i { width: 10px; height: 10px; background: var(--pink); border-radius: 50%; box-shadow: 0 0 0 6px rgba(239,67,106,.15); }
.pin-a { right: 18px; }
.pin-b { left: 18px; }
.pin-b i { background: var(--cyan); box-shadow: 0 0 0 6px rgba(108,204,221,.15); }

.delivery-bike {
  position: absolute;
  z-index: 3;
  top: 45px;
  left: 43%;
  width: 84px;
  animation: bikeMove 5s ease-in-out infinite;
}

.delivery-bike img {
  width: 84px;
  filter: drop-shadow(0 10px 18px rgba(248, 158, 72, .2));
}

@keyframes bikeMove {
  0%, 100% { transform: translateX(-55px); }
  50% { transform: translateX(55px); }
}

.audiences-section {
  overflow: hidden;
  background: #f5f1f7;
}

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

.audience-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 48px;
  border-radius: 32px;
  isolation: isolate;
}

.audience-card::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -140px;
  width: 390px;
  height: 390px;
  content: "";
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,.035), 0 0 0 92px rgba(255,255,255,.02);
}

.audience-shopper {
  color: #fff;
  background: linear-gradient(150deg, var(--purple-700), var(--purple-950));
}

.audience-merchant {
  color: #fff;
  background: linear-gradient(150deg, #c62d68, #7b276f 58%, #382664);
}

.audience-label {
  display: inline-block;
  padding: 7px 13px;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 11px;
}

.audience-card h3 {
  max-width: 390px;
  margin: 26px 0 15px;
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 600;
  line-height: 1.5;
}

.audience-card > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 15px;
  line-height: 2;
}

.audience-card ul {
  display: grid;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-right: 20px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  line-height: 1.85;
}

.audience-card li::before {
  position: absolute;
  top: 11px;
  right: 2px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.audience-card > img {
  position: absolute;
  bottom: -96px;
  left: 24px;
  width: 235px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 29px;
  box-shadow: 0 26px 70px rgba(8,3,20,.34);
  transform: rotate(-7deg);
  transition: transform .55s var(--ease), bottom .55s var(--ease);
}

.audience-card:hover > img {
  bottom: -76px;
  transform: rotate(-3deg);
}

.audience-merchant > img {
  left: 32px;
  transform: rotate(7deg);
}

.audience-merchant:hover > img {
  transform: rotate(3deg);
}

.package-section {
  color: #fff;
  background:
    radial-gradient(circle at 84% 15%, rgba(239, 67, 106, .16), transparent 23%),
    radial-gradient(circle at 12% 82%, rgba(108, 204, 221, .09), transparent 22%),
    linear-gradient(145deg, #130a29, #21103f 55%, #180b31);
}

.package-heading p {
  color: rgba(255,255,255,.56);
}

.billing-toggle {
  width: fit-content;
  margin: 28px auto 0;
  padding: 5px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
}

.billing-toggle button {
  min-width: 112px;
  padding: 10px 17px;
  color: rgba(255,255,255,.58);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}

.billing-toggle button span {
  display: inline-block;
  margin-right: 5px;
  padding: 2px 6px;
  color: #5b3310;
  background: var(--orange);
  border-radius: 999px;
  font-size: 8px;
}

.billing-toggle button.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 7px 18px rgba(0,0,0,.12);
}

.package-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 680px;
  flex-direction: column;
  padding: 36px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 29px;
  box-shadow: 0 28px 70px rgba(0,0,0,.16);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 90px rgba(0,0,0,.22);
}

.price-card:hover .plan-icon {
  transform: translateY(-4px) rotate(-2deg);
}

.price-featured {
  background:
    radial-gradient(circle at 85% 2%, rgba(239,67,106,.15), transparent 23%),
    #fff;
  border: 2px solid var(--pink);
  transform: translateY(-16px);
}

.price-featured:hover {
  transform: translateY(-23px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 7px 17px;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), #b52f94);
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(239,67,106,.3);
  font-size: 10px;
  font-weight: 600;
  transform: translateX(-50%);
}

.price-card-top {
  justify-content: space-between;
}

.plan-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: linear-gradient(145deg, #fff, #f3edf7);
  border: 1px solid rgba(56, 38, 100, .08);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(56, 38, 100, .09);
  transition: transform .4s var(--ease), box-shadow .4s ease;
}

.plan-icon img {
  width: 54px;
  height: 54px;
}

.price-featured .plan-icon {
  background: linear-gradient(145deg, #fff, #fff5f8);
  border-color: rgba(239, 67, 106, .22);
}

.plan-for {
  color: #8c8596;
  font-size: 10px;
}

.price-card h3 {
  display: flex;
  align-items: end;
  gap: 9px;
  margin: 30px 0 10px;
  font-family: "Outfit", "IBM Plex Sans Arabic", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.price-card h3 small {
  color: var(--purple-700);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.price-card > p {
  min-height: 66px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.price {
  display: flex;
  min-height: 76px;
  align-items: end;
  gap: 8px;
  margin: 24px 0 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price > strong {
  font-family: "Outfit", "IBM Plex Sans Arabic", sans-serif;
  font-size: 58px;
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.04em;
}

.price > span {
  display: flex;
  align-items: end;
  gap: 3px;
  color: var(--purple-700);
  font-size: 13px;
  font-weight: 600;
}

.price > span small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
}

.price-custom strong {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 15px;
  color: var(--purple-700);
  background: #f4f0f7;
  border: 1px solid rgba(93, 57, 152, .1);
  border-radius: 13px;
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: 0;
}

.plan-list {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-right: 25px;
  color: #4f4958;
  font-size: 11px;
}

.plan-list i {
  position: absolute;
  top: 8px;
  right: 0;
  width: 15px;
  height: 15px;
  background: #efe9f6;
  border-radius: 50%;
}

.plan-list i::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 7px;
  height: 4px;
  content: "";
  border-bottom: 1.5px solid var(--purple-600);
  border-left: 1.5px solid var(--purple-600);
  transform: rotate(-45deg);
}

.price-card .button {
  margin-top: auto;
}

.about-section {
  overflow: hidden;
  background: #fff;
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(400px, .9fr) 1.1fr;
  gap: 110px;
}

.about-visual {
  position: relative;
  min-height: 640px;
}

.about-visual::before {
  position: absolute;
  top: 40px;
  right: -35px;
  width: 370px;
  height: 470px;
  content: "";
  background: linear-gradient(150deg, #f1e4ef, #e8e9fa);
  border-radius: 190px 190px 44px 44px;
}

.about-image-frame {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 45px;
  width: 310px;
  height: 585px;
  overflow: hidden;
  background: var(--purple-900);
  border: 8px solid #fff;
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(56,38,100,.2);
  transform: rotate(3deg);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-image-frame::before {
  position: absolute;
  z-index: 3;
  top: 11px;
  left: 50%;
  width: 88px;
  height: 24px;
  content: "";
  background: #07070b;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
  transform: translateX(-50%);
}

.about-badge {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 44px;
  display: grid;
  min-width: 225px;
  padding: 18px 22px;
  color: #fff;
  background: var(--purple-700);
  border-radius: 19px;
  box-shadow: 0 16px 46px rgba(56,38,100,.22);
}

.about-badge strong { font-size: 17px; }
.about-badge span { color: rgba(255,255,255,.58); font-size: 10px; }

.about-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 2.05;
}

.about-values {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.about-values > div {
  display: grid;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 50px 1fr;
  gap: 8px;
}

.about-values span {
  color: var(--pink);
  font-family: "Outfit", sans-serif;
  font-size: 11px;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.about-values strong {
  margin-left: 5px;
  color: var(--ink);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: var(--purple-700);
  font-size: 13px;
  font-weight: 600;
}

.text-link svg { width: 17px; }

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

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: .72fr 1.28fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 140px;
}

.faq-intro p {
  max-width: 390px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.accordion {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

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

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 27px;
  text-align: right;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-item button span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.faq-item button i {
  position: relative;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  background: #f1edf5;
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  content: "";
  background: var(--purple-700);
  border-radius: 3px;
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button i {
  color: #fff;
  background: var(--pink);
}

.faq-item.is-open button i::before,
.faq-item.is-open button i::after {
  background: #fff;
}

.faq-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: max-height .45s var(--ease), opacity .3s ease, grid-template-rows .45s var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 250px;
  opacity: 1;
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0;
  padding: 0 27px 27px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.site-footer {
  position: relative;
  padding: 58px 0 26px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 67, 106, .18), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(108, 204, 221, .09), transparent 27%),
    linear-gradient(145deg, #211136 0%, #170b2b 48%, #10081f 100%);
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .24;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .28) .65px, transparent .65px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 46px 48px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(4, 1, 12, .2), inset 0 1px rgba(255,255,255,.04);
  grid-template-columns: 1.5fr repeat(3, .7fr);
  gap: 65px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand-footer {
  width: fit-content;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-footer .brand-logo {
  width: 230px;
  height: auto;
}

.footer-brand-block > p {
  max-width: 370px;
  margin: 22px 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.9;
}

.socials {
  gap: 8px;
}

.socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.socials a:hover {
  color: #fff;
  background: var(--pink);
  transform: translateY(-3px);
}

.socials svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 9px;
  color: #fff;
  font-size: 14px;
}

.footer-column a,
.footer-column span {
  width: fit-content;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.7;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: var(--pink-soft);
}

.footer-contact a {
  direction: ltr;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  padding: 22px 4px 0;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.43);
  font-size: 10px;
}

/* Conversion-focused light section balance */
.solutions-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(108,204,221,.16), transparent 22%),
    radial-gradient(circle at 90% 82%, rgba(239,67,106,.1), transparent 25%),
    linear-gradient(180deg, #fff, #f8f5fa);
}

.solutions-section::before {
  opacity: .38;
  background-image: radial-gradient(rgba(56,38,100,.18) .7px, transparent .7px);
}

.split-heading .eyebrow {
  color: var(--purple-600);
}

.split-heading p {
  color: var(--muted);
}

.bento-card {
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border-color: rgba(56,38,100,.09);
  box-shadow: 0 22px 55px rgba(35,20,63,.08);
}

.bento-card:hover {
  background: #fff;
  border-color: rgba(239,67,106,.2);
  box-shadow: 0 30px 72px rgba(35,20,63,.13);
}

.bento-card p {
  color: var(--muted);
}

.card-kicker {
  color: rgba(56,38,100,.55);
}

.bento-main {
  background:
    radial-gradient(circle at 18% 18%, rgba(239,67,106,.14), transparent 35%),
    linear-gradient(145deg, #fff, #fbf3f7);
}

.bento-copy a {
  color: var(--purple-700);
}

.bento-auction {
  background: linear-gradient(145deg, #fff, #f7effb 58%, #fff4f6);
}

.bento-payments {
  background: linear-gradient(145deg, #fff, #f4f8fc);
}

.bento-language {
  background: linear-gradient(145deg, #fff, #f6f1fb);
}

.language-orbit {
  width: min(100%, 360px);
  height: auto;
  margin: -8px auto 6px;
  border: 0;
  border-radius: 0;
}

.language-orbit::after {
  display: none;
}

.language-orbit > img {
  position: static;
  width: 100%;
  height: auto;
  transform: none;
}

.bento-delivery {
  background:
    radial-gradient(circle at 15% 50%, rgba(248,158,72,.13), transparent 24%),
    linear-gradient(145deg, #fff, #f8f5fb);
}

.path-line {
  background-image: linear-gradient(90deg, rgba(56,38,100,.22) 50%, transparent 50%);
}

.pin {
  background: #fff;
  border-color: rgba(56,38,100,.12);
  box-shadow: 0 10px 25px rgba(56,38,100,.09);
}

.package-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 12%, rgba(239,67,106,.12), transparent 22%),
    radial-gradient(circle at 8% 84%, rgba(108,204,221,.11), transparent 22%),
    linear-gradient(180deg, #fbf9fc, #f4eff7);
}

.package-heading p {
  color: var(--muted);
}

.package-heading .eyebrow-light {
  color: var(--purple-600);
}

.billing-toggle {
  background: #fff;
  border-color: rgba(56,38,100,.1);
  box-shadow: 0 14px 35px rgba(35,20,63,.08);
}

.billing-toggle button {
  color: var(--muted);
}

.billing-toggle button.is-active {
  color: #fff;
  background: var(--purple-700);
}

.price-card {
  border-color: rgba(56,38,100,.08);
  box-shadow: 0 25px 65px rgba(35,20,63,.1);
}

.price-card:hover {
  box-shadow: 0 35px 82px rgba(35,20,63,.15);
}

/* Calm, neutral art direction: color is reserved for conversion and product moments. */
body {
  background: var(--canvas);
}

.site-header,
.site-header.is-scrolled {
  padding: 12px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.nav-shell {
  min-height: 66px;
  padding: 7px 14px 7px 18px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(38,29,59,.07);
  border-radius: 20px;
  box-shadow: 0 12px 38px rgba(30,22,50,.07);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background .3s ease, box-shadow .3s ease, transform .3s var(--ease);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 44px rgba(30,22,50,.1);
}

.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(246,246,248,.9);
  border-bottom: 1px solid rgba(56,38,100,.055);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-links a {
  opacity: .68;
}

.hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 25%, rgba(125,75,224,.1), transparent 25%),
    radial-gradient(circle at 12% 74%, rgba(108,204,221,.1), transparent 24%),
    linear-gradient(145deg, #f8f8fa 0%, #f1f0f5 52%, #f6f4f8 100%);
}

.hero::after {
  height: 150px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.42));
}

.hero .eyebrow-light {
  color: var(--purple-600);
}

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

.hero .button-ghost {
  color: var(--purple-700);
  background: rgba(255,255,255,.74);
  border-color: rgba(56,38,100,.14);
  box-shadow: 0 10px 28px rgba(35,20,63,.06);
}

.hero .button-ghost:hover {
  color: var(--purple-900);
  background: #fff;
  border-color: rgba(56,38,100,.22);
}

.hero .play-icon {
  background: #efeaf4;
}

.hero .store-button {
  color: var(--ink);
  background: rgba(255,255,255,.78);
  border-color: rgba(56,38,100,.1);
  box-shadow: 0 10px 28px rgba(35,20,63,.06);
}

.hero .store-button:hover {
  background: #fff;
  border-color: rgba(56,38,100,.18);
}

.hero-ring {
  border-color: rgba(56,38,100,.1);
}

.ring-two {
  border-color: rgba(239,67,106,.2);
}

.screen-dots button {
  background: rgba(56,38,100,.22);
}

.mesh {
  opacity: .075;
  background-image:
    linear-gradient(30deg, rgba(56,38,100,.5) 12%, transparent 12.5%, transparent 87%, rgba(56,38,100,.5) 87.5%),
    linear-gradient(150deg, rgba(56,38,100,.5) 12%, transparent 12.5%, transparent 87%, rgba(56,38,100,.5) 87.5%),
    linear-gradient(30deg, rgba(56,38,100,.5) 12%, transparent 12.5%, transparent 87%, rgba(56,38,100,.5) 87.5%);
}

.ambient-particles span {
  background: rgba(56,38,100,.22);
  box-shadow: 0 0 14px rgba(125,75,224,.16);
}

.proof-bar {
  background: rgba(255,255,255,.72);
  border-color: rgba(56,38,100,.08);
  box-shadow: 0 18px 50px rgba(35,20,63,.065);
}

.proof-bar div {
  border-left-color: rgba(56,38,100,.09);
}

.proof-bar span {
  color: var(--muted);
}

.product-tour {
  background: #fff;
}

.solutions-section {
  background:
    radial-gradient(circle at 8% 14%, rgba(108,204,221,.08), transparent 20%),
    var(--canvas-soft);
  border-top: 1px solid rgba(56,38,100,.055);
  border-bottom: 1px solid rgba(56,38,100,.055);
}

.solutions-section::before {
  opacity: .18;
}

.bento-card {
  box-shadow: 0 14px 38px rgba(35,20,63,.055);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(35,20,63,.09);
}

.audiences-section {
  background: #fff;
}

.audience-card,
.audience-shopper,
.audience-merchant {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(239,67,106,.075), transparent 24%),
    linear-gradient(145deg, #fff, #f7f7f9);
  border: 1px solid rgba(56,38,100,.08);
  box-shadow: 0 18px 50px rgba(35,20,63,.07);
}

.audience-merchant {
  background:
    radial-gradient(circle at 92% 8%, rgba(125,75,224,.08), transparent 25%),
    linear-gradient(145deg, #fff, #f6f4f8);
}

.audience-card::after {
  border-color: rgba(56,38,100,.08);
  box-shadow: 0 0 0 45px rgba(56,38,100,.02), 0 0 0 92px rgba(56,38,100,.012);
}

.audience-label {
  color: var(--purple-600);
  background: #f1edf5;
  border-color: rgba(56,38,100,.09);
}

.audience-card > p,
.audience-card li {
  color: var(--muted);
}

.audience-card > img {
  border-color: rgba(56,38,100,.13);
  box-shadow: 0 24px 60px rgba(35,20,63,.18);
}

.package-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(239,67,106,.07), transparent 22%),
    var(--canvas-soft);
  border-top: 1px solid rgba(56,38,100,.055);
  border-bottom: 1px solid rgba(56,38,100,.055);
}

.price-card {
  box-shadow: 0 16px 44px rgba(35,20,63,.065);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(35,20,63,.1);
}

.about-section {
  background: #fff;
}

.faq-section {
  background: var(--canvas-soft);
}

.site-footer {
  background:
    radial-gradient(circle at 8% 0%, rgba(125,75,224,.08), transparent 25%),
    linear-gradient(145deg, #18121f, #110d18);
  border-top-color: rgba(255,255,255,.06);
}

.site-footer::before {
  opacity: .11;
}

.footer-main {
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.12), inset 0 1px rgba(255,255,255,.035);
}

.footer-column a {
  position: relative;
  transition: color .22s ease, transform .28s var(--ease);
}

.footer-column a:hover {
  transform: translateX(-3px);
}

[dir="ltr"] .footer-column a:hover {
  transform: translateX(3px);
}

.socials a:hover svg {
  transform: scale(1.08);
}

.socials svg {
  transition: transform .28s var(--ease);
}

[dir="ltr"] body {
  font-family: "Outfit", var(--font-body);
  line-height: 1.7;
}

[dir="ltr"] h1,
[dir="ltr"] h2,
[dir="ltr"] h3,
[dir="ltr"] h4,
[dir="ltr"] .button,
[dir="ltr"] .eyebrow,
[dir="ltr"] .nav-links a,
[dir="ltr"] .tour-tab strong,
[dir="ltr"] .faq-item button span {
  font-family: "Outfit", sans-serif;
}

[dir="ltr"] .hero h1 {
  line-height: 1.02;
  letter-spacing: -.045em;
}

[dir="ltr"] .section-heading h2,
[dir="ltr"] .about-copy h2,
[dir="ltr"] .faq-intro h2 {
  line-height: 1.08;
  letter-spacing: -.035em;
}

[dir="ltr"] .tour-tab,
[dir="ltr"] .faq-item button {
  text-align: left;
}

[dir="ltr"] .tour-tab::before {
  right: auto;
  left: 0;
  border-radius: 0 6px 6px 0;
}

[dir="ltr"] .audience-card li,
[dir="ltr"] .plan-list li {
  padding-right: 0;
  padding-left: 25px;
}

[dir="ltr"] .audience-card li::before,
[dir="ltr"] .plan-list i {
  right: auto;
  left: 0;
}

.has-js [data-reveal] {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(24px) scale(.992);
  transition: opacity .72s var(--ease), transform .72s var(--ease), filter .55s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.has-js [data-reveal].is-revealed {
  opacity: 1;
  filter: none;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root { --container: 1030px; }

  .nav-links { gap: 23px; }
  .nav-panel { gap: 28px; }
  .hero-grid { grid-template-columns: .95fr minmax(430px, 1.05fr); gap: 25px; }
  .hero h1 { font-size: clamp(55px, 7.4vw, 82px); }
  .float-live { right: 0; }
  .tour-layout { gap: 45px; }
  .about-grid { gap: 60px; }
  .footer-main { gap: 38px; }
}

@media (max-width: 920px) {
  .section { padding: 100px 0; }
  .container { width: min(calc(100% - 34px), var(--container)); }

  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    z-index: 190;
    top: 92px;
    right: 17px;
    left: 17px;
    display: grid;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    color: var(--ink);
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(56,38,100,.08);
    border-radius: 23px;
    box-shadow: 0 24px 70px rgba(18,8,42,.2);
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .3s var(--ease);
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after { display: none; }
  .nav-panel .button { width: 100%; margin-top: 13px; }

  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .hero {
    min-height: auto;
    padding-top: 145px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(52px, 7vw, 70px);
  }

  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .store-row {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
    padding-inline: clamp(8px, 2vw, 16px);
  }

  .float-live {
    right: auto;
    left: auto;
    inset-inline-start: 0;
  }

  .float-growth {
    right: auto;
    left: auto;
    inset-inline-end: 0;
  }

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

  .proof-bar div:nth-child(2) { border-left: 0; }
  .proof-bar div:nth-child(-n+2) { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.09); }
  .proof-bar div:nth-child(n+3) { padding-top: 20px; }

  .tour-layout,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .tour-layout { gap: 55px; }
  .tour-tabs { order: 2; }
  .tour-device-wrap { order: 1; }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .split-heading p { max-width: 600px; }
  .bento-main { grid-column: span 12; }
  .bento-auction { grid-column: span 12; }
  .bento-payments, .bento-language { grid-column: span 6; }

  .audience-card { min-height: 630px; padding: 34px; }
  .audience-card h3 { font-size: 32px; }

  .package-grid {
    max-width: 650px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .price-card { min-height: auto; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-8px); }

  .about-grid { gap: 20px; }
  .about-visual { min-height: 580px; }
  .about-copy { max-width: 700px; }
  .faq-grid { gap: 55px; }
  .faq-intro { position: static; }

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

  .footer-contact { grid-column: 2 / 3; }
}

@media (max-width: 680px) {
  body { padding-bottom: 82px; }
  .section { padding: 74px 0; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { padding: 10px 0; }
  .brand .brand-logo { width: 168px; }
  .brand-footer .brand-logo { width: 205px; }

  .hero { padding-top: 112px; padding-bottom: 34px; }
  .hero-grid { gap: 44px; }
  .hero h1 { font-size: clamp(42px, 12vw, 56px); letter-spacing: 0; }
  .hero-lead { max-width: 480px; margin-top: 22px; font-size: 15.5px; line-height: 1.9; }
  .hero-actions { margin-top: 28px; gap: 10px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .store-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-button { min-width: 0; padding: 8px 11px; }

  .hero-visual {
    min-height: 564px;
    padding-inline: 0;
  }
  .phone-hero { width: 252px; height: 514px; border-radius: 43px; }
  .phone-screen-wrap { border-radius: 38px; }
  .phone-stage { top: 8px; }
  .ring-one { width: 430px; height: 430px; }
  .ring-two { width: 330px; height: 330px; }
  .float-card {
    width: clamp(132px, 40vw, 146px);
    min-width: 0;
    gap: 8px;
    padding: 9px;
    border-radius: 14px;
  }
  .float-card > span:not(.float-icon) { min-width: 0; }
  .float-card small { font-size: 8px; }
  .float-card strong { font-size: 11px; line-height: 1.4; overflow-wrap: anywhere; }
  .float-icon { width: 33px; height: 33px; border-radius: 10px; }
  .float-icon img { width: 39px; }
  .float-live { inset-inline-start: clamp(5px, 2.4vw, 12px); }
  .float-growth { inset-inline-end: clamp(5px, 2.4vw, 12px); }
  .float-live { top: 58px; }
  .float-growth { bottom: 48px; }
  .proof-bar { margin-top: 15px; }
  .proof-bar div { padding-inline: 12px; }
  .proof-bar strong { font-size: 18px; }

  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .about-copy h2, .faq-intro h2 { font-size: clamp(32px, 9.5vw, 43px); }
  .section-heading p { font-size: 15px; line-height: 1.95; }

  .tour-layout { gap: 30px; }
  .tour-device-wrap { min-height: 515px; }
  .phone-tour { width: 250px; height: 498px; }
  .tour-glow { width: 380px; height: 380px; }
  .tour-index { right: 0; }
  .tour-tab { grid-template-columns: 50px minmax(0, 1fr); padding: 18px 15px; gap: 14px; }
  .tour-tab > svg { display: none; }
  .tour-number { width: 46px; height: 46px; border-radius: 14px; }
  .tour-number img { width: 42px; height: 42px; }
  .tour-number b { right: -4px; bottom: -5px; min-width: 20px; height: 20px; }
  .tour-tab strong { font-size: 15px; line-height: 1.65; }
  .tour-tab small { font-size: 12px; }

  .bento-grid { display: grid; }
  .bento-main, .bento-auction, .bento-payments, .bento-language, .bento-delivery { grid-column: span 12; }
  .bento-main { min-height: 600px; grid-template-columns: 1fr; }
  .promo-stack { min-height: 342px; }
  .promo-stack img { width: 178px; }
  .bento-delivery { grid-template-columns: 1fr; gap: 5px; }
  .bento-card { padding: 24px; }

  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 570px; padding: 26px; }
  .audience-card > img { width: 196px; bottom: -70px; }

  .about-visual { min-height: 530px; }
  .about-copy { order: -1; }
  .about-image-frame { right: 50%; width: 268px; height: 500px; transform: translateX(50%) rotate(3deg); }
  .about-visual::before { right: 50%; width: 320px; height: 420px; transform: translateX(50%); }
  .about-badge { bottom: 0; right: 0; min-width: 190px; }

  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .site-footer { padding-top: 42px; }
  .footer-main { padding: 30px 24px; border-radius: 24px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 8px; }

}

@media (max-width: 430px) {
  .hero-visual { min-height: 526px; }
  .phone-hero {
    width: clamp(228px, 61vw, 236px);
    height: auto;
    aspect-ratio: 55 / 112;
  }
  .float-growth { bottom: 48px; }
  .screen-dots { bottom: 1px; }
  .proof-bar { border-radius: 19px; }
  .proof-bar span { font-size: 9px; }
  .phone-tour { width: 245px; height: 488px; }
  .tour-device-wrap { min-height: 510px; }
  .tour-glow { width: 320px; height: 320px; }
  .tour-index span { font-size: 42px; }

  .bento-main { min-height: 580px; }
  .promo-stack img { width: 165px; }
  .audience-card { min-height: 550px; }
  .audience-card h3 { font-size: 29px; }

  .price-card { padding: 27px; }
  .price > strong { font-size: 50px; }
  .billing-toggle button { min-width: 92px; padding-inline: 11px; }
  .billing-toggle button span { display: block; margin: 2px 0 0; }

}

/* Consolidated visual system: refined landing sections, Arabic-safe type,
   and a flat corporate footer inspired by INMACO's restrained rhythm. */
:root {
  --font-display: "Readex Pro", "Alexandria", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-body: "Readex Pro", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --canvas: #f5f6f8;
  --canvas-soft: #faf9fb;
  --surface-soft: #f6f4f8;
  --line: #e7e3eb;
  --section-space: clamp(96px, 8vw, 128px);
  --shadow-sm: 0 18px 50px rgba(35, 20, 63, .07);
}

body {
  background: var(--canvas);
  line-height: 1.85;
}

.section {
  isolation: isolate;
}

.product-tour,
.audiences-section,
.about-section {
  background: #fff;
}

.solutions-section,
.faq-section {
  background:
    radial-gradient(circle at 8% 15%, rgba(108, 204, 221, .07), transparent 23%),
    #f7f8fa;
}

.package-section {
  color: #fff;
  background:
    radial-gradient(circle at 84% 12%, rgba(239, 67, 106, .15), transparent 24%),
    radial-gradient(circle at 10% 85%, rgba(108, 204, 221, .08), transparent 22%),
    linear-gradient(145deg, #120923, #21103c 56%, #160b2c);
}

.package-section .eyebrow-light {
  color: rgba(255, 255, 255, .72);
}

.package-heading h2 {
  color: #fff;
}

.package-heading p {
  color: rgba(255, 255, 255, .68);
}

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

.section-heading {
  margin-bottom: clamp(48px, 5vw, 70px);
}

.section-heading h2,
.about-copy h2,
.faq-intro h2 {
  letter-spacing: -.025em;
}

.section-heading p,
.split-heading > p,
.about-lead,
.faq-intro p {
  color: #696373;
  font-size: 16px;
  line-height: 1.95;
}

.split-heading {
  align-items: end;
  margin-bottom: clamp(54px, 6vw, 78px);
  gap: clamp(38px, 7vw, 110px);
}

.split-heading h2 {
  max-width: 720px;
}

.split-heading > p {
  max-width: 520px;
  margin-bottom: 8px;
}

.eyebrow {
  letter-spacing: .02em;
}

.bento-card,
.price-card,
.accordion {
  border-color: rgba(56, 38, 100, .1);
  box-shadow: 0 24px 70px rgba(34, 21, 58, .08);
}

.bento-card {
  border-radius: 30px;
}

.bento-card::before {
  opacity: .78;
}

.audience-grid {
  gap: 26px;
}

.audience-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(25, 13, 45, .16);
}

.price-card {
  border-radius: 28px;
}

.accordion {
  overflow: hidden;
  border-radius: 24px;
}

.faq-item button {
  min-height: 88px;
  padding: 25px 30px;
}

.faq-item button span {
  line-height: 1.9;
}

.faq-answer p {
  padding: 0 30px 30px;
  line-height: 2;
}

/* Hero */
.hero {
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(239, 67, 106, .28), transparent 27%),
    radial-gradient(circle at 12% 80%, rgba(108, 204, 221, .13), transparent 26%),
    linear-gradient(145deg, #321442 0%, #231137 48%, #171025 100%);
}

.hero::after {
  background: linear-gradient(to bottom, transparent 65%, rgba(8, 5, 16, .25));
}

.hero .eyebrow-light {
  color: rgba(255, 255, 255, .78);
}

.hero-lead {
  color: rgba(255, 255, 255, .72);
}

.hero .button-ghost,
.hero .store-button {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.hero .button-ghost:hover,
.hero .store-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .28);
}

.hero .play-icon {
  background: rgba(255, 255, 255, .1);
}

.hero-ring {
  border-color: rgba(255, 255, 255, .11);
}

.screen-dots button {
  background: rgba(255, 255, 255, .3);
}

.mesh {
  width: 300px;
  height: 250px;
  opacity: .62;
  background-image: url("../assets/brand-triangle-pattern.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-mask-image: linear-gradient(135deg, #000 25%, transparent 84%);
  mask-image: linear-gradient(135deg, #000 25%, transparent 84%);
}

.mesh-two {
  opacity: .3;
  transform: translate3d(0, var(--parallax-near), 0) rotate(180deg);
}

.ambient-particles span {
  background: rgba(255, 255, 255, .4);
  box-shadow: 0 0 14px rgba(239, 67, 106, .25);
}

.proof-bar {
  background: rgba(255, 255, 255, .065);
  border-color: rgba(255, 255, 255, .11);
  box-shadow: 0 20px 55px rgba(5, 2, 17, .16);
}

.proof-bar div {
  border-left-color: rgba(255, 255, 255, .1);
}

.proof-bar span {
  color: rgba(255, 255, 255, .6);
}

/* Slim, corporate navigation */
.site-header,
.site-header.is-scrolled {
  padding: 0;
  background: rgba(255, 255, 255, .965);
  border-bottom: 1px solid rgba(56, 38, 100, .075);
  box-shadow: 0 8px 28px rgba(24, 16, 42, .055);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell,
.site-header.is-scrolled .nav-shell {
  min-height: 78px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.brand .brand-logo {
  width: 186px;
}

.nav-panel {
  gap: 12px;
}

.nav-links {
  gap: 28px;
  margin-inline-end: 12px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
}

.nav-contact {
  min-height: 42px;
  padding: 9px 17px;
  color: var(--purple-700);
  background: transparent;
  border-color: rgba(93, 57, 152, .34);
  box-shadow: none;
}

.nav-contact:hover {
  color: #fff;
  background: var(--purple-700);
  border-color: var(--purple-700);
}

.nav-cta {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 11px;
}

.language-switch {
  height: 42px;
}

/* Interaction polish */
:where(a, button):focus-visible {
  outline: 3px solid rgba(108, 204, 221, .78);
  outline-offset: 4px;
}

.button:active,
.store-button:active,
.socials a:active,
.footer-store-buttons a:active {
  transform: translateY(0) scale(.97);
}

.button svg,
.text-link svg,
.bento-copy a svg {
  transition: transform .28s var(--ease);
}

[dir="rtl"] .button:hover svg,
[dir="rtl"] .text-link:hover svg,
[dir="rtl"] .bento-copy a:hover svg {
  transform: translateX(-3px) scaleX(-1);
}

[dir="ltr"] .button:hover svg,
[dir="ltr"] .text-link:hover svg,
[dir="ltr"] .bento-copy a:hover svg {
  transform: translateX(3px);
}

.audience-card {
  transition: transform .4s var(--ease), box-shadow .35s ease, border-color .3s ease;
}

.audience-card:hover {
  border-color: rgba(255, 255, 255, .24);
  box-shadow: 0 34px 82px rgba(25, 13, 45, .22);
  transform: translateY(-6px);
}

/* Flat corporate footer: open columns, restrained dividers, no oversized card. */
.site-footer {
  position: relative;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 8%, rgba(239, 67, 106, .2), transparent 28%),
    radial-gradient(circle at 11% 82%, rgba(108, 204, 221, .1), transparent 26%),
    linear-gradient(145deg, #321442 0%, #231137 50%, #171025 100%);
  border: 0;
}

.site-footer::before {
  display: none;
}

.footer-accent {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--pink) 45%, #7d4be0 72%, var(--cyan));
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  padding: clamp(58px, 6vw, 78px) 0 clamp(48px, 5vw, 64px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: minmax(280px, 1.35fr) minmax(135px, .62fr) minmax(150px, .68fr) minmax(250px, .95fr);
  gap: clamp(38px, 5vw, 74px);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.brand-footer {
  width: fit-content;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-brand-block .brand-logo {
  width: min(100%, 218px);
}

.footer-brand-block > p {
  max-width: 410px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 2;
}

.footer-download {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  gap: 15px;
}

.footer-download-copy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

[dir="rtl"] .footer-download-copy {
  direction: rtl;
  text-align: right;
}

[dir="ltr"] .footer-download-copy {
  direction: ltr;
  text-align: left;
}

.footer-download-copy > img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .2);
}

.footer-download-copy > span {
  display: grid;
  gap: 2px;
}

.footer-download-copy small {
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  line-height: 1.6;
}

.footer-download-copy strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
}

.footer-store-buttons {
  display: grid;
  width: fit-content;
  grid-template-columns: repeat(2, 138px);
  gap: 8px;
}

.footer-store-buttons a {
  display: block;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.footer-store-buttons a:hover {
  border-color: rgba(255, 255, 255, .25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  transform: translateY(-3px);
}

.footer-store-buttons img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand-block .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.socials a {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: rgba(255, 255, 255, .72);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.socials a:hover {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 10px 24px rgba(239, 67, 106, .2);
  transform: translateY(-3px);
}

.socials svg {
  width: 16px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column > strong {
  position: relative;
  margin: 0 0 13px;
  padding-bottom: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.footer-column > strong::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--pink), var(--orange));
  border-radius: 99px;
}

[dir="ltr"] .footer-column > strong::after {
  right: auto;
  left: 0;
}

.footer-column:not(.footer-contact) > a {
  position: relative;
  width: fit-content;
  padding-inline-start: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  line-height: 1.8;
  transition: color .2s ease, transform .2s ease;
}

.footer-column:not(.footer-contact) > a::before {
  display: none;
}

[dir="ltr"] .footer-column:not(.footer-contact) > a::before {
  right: auto;
  left: 0;
}

.footer-column:not(.footer-contact) > a:hover {
  color: #fff;
  transform: translateX(-2px);
}

[dir="ltr"] .footer-column:not(.footer-contact) > a:hover {
  transform: translateX(2px);
}

.footer-contact-list {
  display: grid;
  gap: 0;
}

.footer-contact-item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  border-radius: 0;
  gap: 11px;
  transition: border-color .25s ease, color .25s ease;
}

[dir="rtl"] .footer-contact-item {
  direction: rtl;
  text-align: right;
}

[dir="ltr"] .footer-contact-item {
  direction: ltr;
  text-align: left;
}

a.footer-contact-item:hover {
  color: #fff;
  border-bottom-color: rgba(239, 67, 106, .42);
}

.footer-contact-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  color: #f0849e;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-contact-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.footer-contact-copy {
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  gap: 1px;
}

[dir="rtl"] .footer-contact-copy > [dir="ltr"] {
  text-align: right;
}

[dir="ltr"] .footer-contact-copy > [dir="ltr"] {
  text-align: left;
}

.footer-contact-copy .contact-label {
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  line-height: 1.5;
}

.footer-contact-copy > span,
.footer-contact-copy .footer-contact-address {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.7;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
  line-height: 1.8;
}

/* Arabic typography: natural line boxes and generous descender space. */
[dir="rtl"] body {
  font-family: "Readex Pro", "IBM Plex Sans Arabic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.9;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] .button,
[dir="rtl"] .eyebrow {
  font-family: "Readex Pro", "Alexandria", "IBM Plex Sans Arabic", system-ui, sans-serif;
  overflow: visible;
  text-rendering: optimizeLegibility;
}

[dir="rtl"] .hero h1,
[dir="rtl"] .section-heading h2,
[dir="rtl"] .split-heading h2,
[dir="rtl"] .about-copy h2,
[dir="rtl"] .faq-intro h2 {
  line-height: 1.38;
}

[dir="rtl"] .hero h1 {
  max-width: 690px;
  line-height: 1.32;
}

[dir="rtl"] .hero h1 span,
[dir="rtl"] .section-heading h2 span,
[dir="rtl"] .split-heading h2 span,
[dir="rtl"] .about-copy h2 span,
[dir="rtl"] .faq-intro h2 span {
  display: inline-block;
  padding: .02em .035em .18em;
  margin: 0;
  line-height: 1.28;
  vertical-align: baseline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

[dir="rtl"] .hero-lead,
[dir="rtl"] .section-heading p,
[dir="rtl"] .split-heading > p,
[dir="rtl"] .about-lead,
[dir="rtl"] .faq-intro p {
  line-height: 2;
}

[dir="rtl"] .bento-card h3,
[dir="rtl"] .audience-card h3,
[dir="rtl"] .price-card h3 {
  line-height: 1.48;
}

[dir="ltr"] body {
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 1.7;
}

[dir="ltr"] h1,
[dir="ltr"] h2,
[dir="ltr"] h3,
[dir="ltr"] h4,
[dir="ltr"] .button,
[dir="ltr"] .eyebrow,
[dir="ltr"] .nav-links a,
[dir="ltr"] .tour-tab strong,
[dir="ltr"] .faq-item button span {
  font-family: "Outfit", system-ui, sans-serif;
}

[dir="ltr"] .hero h1 {
  max-width: 660px;
  line-height: 1.03;
  letter-spacing: -.045em;
}

[dir="ltr"] .section-heading h2,
[dir="ltr"] .split-heading h2,
[dir="ltr"] .about-copy h2,
[dir="ltr"] .faq-intro h2 {
  line-height: 1.08;
  letter-spacing: -.04em;
}

@media (max-width: 1120px) and (min-width: 921px) {
  .brand .brand-logo {
    width: 164px;
  }

  .nav-links {
    gap: 17px;
    margin-inline-end: 3px;
  }

  .nav-panel {
    gap: 8px;
  }

  .nav-contact {
    padding-inline: 12px;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .footer-main {
    grid-template-columns: minmax(250px, 1.2fr) repeat(2, minmax(125px, .65fr)) minmax(220px, .9fr);
    gap: 34px;
  }

  .footer-brand-block .socials {
    display: grid;
    grid-template-columns: repeat(3, 42px);
    justify-content: start;
    gap: 10px;
  }
}

@media (max-width: 920px) {
  .nav-shell,
  .site-header.is-scrolled .nav-shell {
    min-height: 76px;
  }

  .brand .brand-logo {
    width: 168px;
  }

  .nav-panel {
    top: 76px;
    gap: 10px;
  }

  .nav-links {
    margin-inline-end: 0;
  }

  .nav-contact,
  .nav-cta,
  .language-switch {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 34px;
  }

  .footer-brand-block,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-brand-block {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(280px, .9fr);
    gap: 28px 42px;
  }

  .footer-brand-block .brand-footer,
  .footer-brand-block > p {
    grid-column: 1;
  }

  .footer-brand-block .footer-download {
    grid-row: 1 / span 3;
    grid-column: 2;
    margin-top: 0;
  }

  .footer-brand-block .socials {
    grid-column: 1;
    margin-top: 0;
  }

  .footer-contact-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .split-heading {
    margin-bottom: 44px;
    gap: 24px;
  }

  .section-heading h2,
  .split-heading h2,
  .about-copy h2,
  .faq-intro h2 {
    font-size: clamp(31px, 9vw, 41px);
  }

  .section-heading p,
  .split-heading > p,
  .about-lead,
  .faq-intro p {
    font-size: 15px;
  }

  .mesh-one {
    top: 128px;
    left: -118px;
    opacity: .44;
  }

  .mesh-two {
    right: -112px;
    bottom: 4%;
    opacity: .24;
  }

  [dir="rtl"] body {
    font-size: 15.5px;
  }

  [dir="rtl"] .hero h1 {
    font-size: clamp(40px, 11.5vw, 53px);
    line-height: 1.36;
  }

  [dir="rtl"] .hero h1 span,
  [dir="rtl"] .section-heading h2 span,
  [dir="rtl"] .split-heading h2 span,
  [dir="rtl"] .about-copy h2 span,
  [dir="rtl"] .faq-intro h2 span {
    padding-bottom: .2em;
    line-height: 1.32;
  }

  [dir="rtl"] .hero-lead,
  [dir="rtl"] .section-heading p,
  [dir="rtl"] .split-heading > p {
    font-size: 15px;
    line-height: 1.95;
  }

  .site-footer {
    padding-top: 0;
  }

  .footer-main {
    padding: 52px 0 44px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .footer-brand-block,
  .footer-contact {
    display: block;
    grid-column: 1 / -1;
  }

  .footer-brand-block .brand-logo {
    width: 190px;
  }

  .footer-brand-block > p {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.95;
  }

  .footer-brand-block .footer-download {
    margin-top: 25px;
  }

  .footer-store-buttons {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-block .socials {
    margin-top: 24px;
  }

  .footer-column > strong {
    font-size: 13px;
  }

  .footer-column:not(.footer-contact) > a {
    font-size: 12px;
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 20px 0 25px;
  }
}

@media (max-width: 430px) {
  .footer-main {
    gap: 34px 20px;
  }

  .footer-download-copy strong {
    font-size: 14px;
  }

  .footer-bottom {
    text-align: start;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

}

/* Compact product facts: readable at a glance without competing with the hero. */
.proof-bar {
  display: grid;
  gap: 0;
  margin-top: 38px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.proof-bar .proof-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 8px 20px;
  text-align: start;
  border-left: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  transition: background-color .25s ease, transform .3s var(--ease), box-shadow .25s ease;
}

.proof-bar .proof-item:last-child {
  border-left: 0;
}

.proof-icon {
  display: grid;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  transition: background-color .25s ease, border-color .25s ease, transform .3s var(--ease);
}

.proof-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-mark {
  display: none;
}

.proof-icon-app img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.proof-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.proof-bar .proof-copy strong {
  color: #fff;
  font-family: "Outfit", "Readex Pro", sans-serif;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -.015em;
  white-space: nowrap;
  transition: color .25s ease;
}

.proof-bar .proof-copy > span {
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  line-height: 1.55;
  transition: color .25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .proof-bar .proof-item:hover {
    background: rgba(255, 255, 255, .075);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 12px 30px rgba(5, 2, 17, .1);
    transform: translateY(-3px);
  }

  .proof-bar .proof-item:hover .proof-icon {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-1px) scale(1.06);
  }

  .proof-bar .proof-item:hover .proof-copy strong {
    color: #ffbf78;
  }

  .proof-bar .proof-item:hover .proof-copy > span {
    color: rgba(255, 255, 255, .8);
  }
}

@media (max-width: 920px) {
  .proof-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-bar .proof-item {
    padding: 12px 18px;
  }

  .proof-bar .proof-item:nth-child(2) {
    border-left: 0;
  }

  .proof-bar .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
}

/* Mobile navigation drawer */
@media (max-width: 920px) {
  .menu-backdrop {
    position: fixed;
    z-index: 195;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    background: rgba(15, 7, 28, .58);
    pointer-events: none;
    transition: opacity .32s ease, visibility .32s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  body.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.menu-open .nav-shell > .brand,
  body.menu-open .nav-shell > .nav-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 201;
    color: var(--purple-950);
    background: #f4f0f7;
    border: 1px solid rgba(56, 38, 100, .08);
    border-radius: 14px;
    cursor: pointer;
    transition: opacity .2s ease, background .25s ease, transform .25s ease;
  }

  .nav-panel,
  .site-header.is-scrolled .nav-panel {
    position: fixed;
    z-index: 220;
    top: 0;
    bottom: 0;
    right: auto;
    left: auto;
    display: grid;
    width: min(88vw, 370px);
    height: 100dvh;
    padding: 20px;
    opacity: 1;
    visibility: hidden;
    align-content: start;
    align-items: stretch;
    gap: 10px;
    overflow-y: auto;
    color: var(--ink);
    background:
      radial-gradient(circle at 90% 3%, rgba(239, 67, 106, .09), transparent 25%),
      linear-gradient(180deg, #fff 0%, #fbf9fc 100%);
    border: 0;
    box-shadow: 0 0 70px rgba(12, 5, 28, .26);
    transition: visibility .4s ease, transform .42s var(--ease);
    overscroll-behavior: contain;
  }

  [dir="rtl"] .nav-panel {
    left: 0;
    border-radius: 0 24px 24px 0;
    transform: translateX(-105%);
  }

  [dir="ltr"] .nav-panel {
    right: 0;
    border-radius: 24px 0 0 24px;
    transform: translateX(105%);
  }

  .nav-panel.is-open,
  .site-header.is-scrolled .nav-panel.is-open {
    visibility: visible;
    transform: translateX(0);
  }

  .nav-drawer-head {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(56, 38, 100, .09);
  }

  .nav-drawer-head > img {
    width: 158px;
    height: auto;
  }

  .nav-close {
    position: relative;
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: var(--purple-950);
    background: #f3eef6;
    border: 1px solid rgba(56, 38, 100, .08);
    border-radius: 13px;
    cursor: pointer;
    transition: color .25s ease, background .25s ease, transform .25s ease;
  }

  .nav-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 3px;
    transform: rotate(45deg);
  }

  .nav-close span:last-child {
    transform: rotate(-45deg);
  }

  .nav-close:hover {
    color: #fff;
    background: var(--pink);
    transform: rotate(3deg);
  }

  .nav-panel .nav-links {
    display: grid;
    gap: 5px;
    margin: 0 0 10px;
  }

  .nav-panel .nav-links a {
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 11px 15px;
    opacity: .82;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    transition: color .24s ease, background .24s ease, padding .3s var(--ease);
  }

  .nav-panel .nav-links a::after {
    position: static;
    display: block;
    flex: 0 0 6px;
    width: 6px;
    height: 6px;
    margin-inline-start: auto;
    opacity: .25;
    background: var(--pink);
    border-radius: 50%;
    transform: scale(.7);
    transition: opacity .24s ease, transform .24s ease;
  }

  .nav-panel .nav-links a:hover,
  .nav-panel .nav-links a.is-active {
    padding-inline-start: 19px;
    opacity: 1;
    color: var(--purple-700);
    background: #f3eef7;
  }

  .nav-panel .nav-links a:hover::after,
  .nav-panel .nav-links a.is-active::after {
    opacity: 1;
    transform: scale(1);
  }

  .nav-panel .language-switch,
  .nav-panel .button {
    min-height: 50px;
    margin-top: 2px;
    border-radius: 14px;
  }

  .nav-panel .language-switch {
    justify-content: center;
    background: #f5f2f7;
    border-color: rgba(56, 38, 100, .09);
  }

  .nav-panel .nav-contact {
    color: var(--purple-700);
    background: #fff;
    border-color: rgba(93, 57, 152, .22);
  }

  .nav-panel .nav-cta {
    box-shadow: 0 12px 28px rgba(214, 40, 112, .2);
  }
}

@media (max-width: 430px) {
  .nav-panel,
  .site-header.is-scrolled .nav-panel {
    width: min(91vw, 350px);
    padding: 16px;
  }
}

@media (max-width: 680px) {
  .proof-bar {
    margin-top: 26px;
  }

  .proof-bar .proof-item {
    gap: 10px;
    min-height: 68px;
    padding: 11px 8px;
    border-radius: 13px;
  }

  .proof-icon {
    flex-basis: 31px;
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .proof-icon img {
    width: 27px;
    height: 27px;
  }

  .proof-icon-app img {
    width: 23px;
    height: 23px;
  }

  .proof-bar .proof-copy strong {
    font-size: clamp(13px, 3.8vw, 15px);
  }

  .proof-bar .proof-copy > span {
    font-size: 9px;
    line-height: 1.45;
  }
}

@media (max-width: 360px) {
  .proof-bar .proof-item {
    gap: 7px;
    padding-inline: 5px;
  }

  .proof-icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .proof-icon img {
    width: 24px;
    height: 24px;
  }

  .proof-bar .proof-copy strong {
    font-size: 12px;
  }
}

/* Compact mobile identity and touch-friendly app journey. */
.tour-swipe-hint {
  display: none;
}

@media (max-width: 920px) {
  .nav-shell {
    position: relative;
  }

  .site-header .nav-shell > .brand {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    transform: translate(-50%, -50%);
  }

  .site-header .nav-toggle {
    position: absolute;
    top: 50%;
    inset-inline-end: 0;
    transform: translateY(-50%);
  }

  .site-header .brand .brand-logo {
    display: none;
  }

  .site-header .brand .brand-mark {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 7px 12px rgba(45, 21, 74, .14));
  }

  .tour-device-wrap {
    min-height: 558px;
    padding-bottom: 38px;
    cursor: pointer;
    outline: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  .tour-device-wrap:focus-visible {
    border-radius: 32px;
    box-shadow: 0 0 0 3px rgba(125, 75, 224, .24);
  }

  .tour-swipe-hint {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 50%;
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 6px 13px;
    color: var(--purple-700);
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(56, 38, 100, .1);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(35, 20, 63, .1);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    transform: translateX(-50%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .tour-swipe-hint::before {
    width: 16px;
    height: 1px;
    margin-inline-end: 7px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--pink));
  }

  .tour-device-wrap:active .phone-tour {
    transform: rotate(2deg) scale(.99);
  }
}

@media (max-width: 430px) {
  .site-header .nav-shell > .brand {
    width: 48px;
    height: 48px;
  }

  .site-header .brand .brand-mark {
    width: 44px;
    height: 44px;
  }

  .tour-device-wrap {
    min-height: 548px;
  }
}

/* Mobile header: retain the complete wordmark and mirror the controls with page language. */
@media (max-width: 920px) {
  .site-header .nav-shell > .brand {
    position: absolute;
    top: 50%;
    inset-inline-start: 0;
    left: auto;
    right: auto;
    display: block;
    width: clamp(142px, 43vw, 168px);
    height: auto;
    transform: translateY(-50%);
  }

  .site-header .nav-toggle {
    inset-inline-end: 0;
  }

  .site-header .brand .brand-logo {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(45, 21, 74, .1));
  }

  .site-header .brand .brand-mark {
    display: none;
  }
}

@media (max-width: 430px) {
  .site-header .nav-shell > .brand {
    width: clamp(132px, 43vw, 158px);
    height: auto;
  }
}

/* Final mobile rhythm and pricing safeguards. */
@media (max-width: 680px) {
  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .price-card {
    min-height: 0;
    padding: 26px;
    border-radius: 24px;
  }

  .price-card h3 {
    flex-wrap: wrap;
    row-gap: 2px;
    margin-top: 24px;
  }

  .price-card > p {
    min-height: 0;
  }

  .price {
    min-height: 68px;
    margin: 20px 0 22px;
    padding-bottom: 18px;
  }

  .price-custom {
    min-height: 66px;
    align-items: center;
  }

  .price-custom strong {
    min-height: 40px;
    padding: 7px 13px;
    font-size: clamp(19px, 5.8vw, 22px);
    line-height: 1.35;
  }

  .plan-list {
    margin-bottom: 26px;
  }

  .price-card .button {
    min-height: 50px;
  }

  .bento-card,
  .audience-card,
  .accordion {
    border-radius: 24px;
  }

  .faq-item button {
    min-height: 76px;
    padding: 20px 18px;
  }

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

/* Compact plan cards with full, accessible details on demand. */
.price-card {
  min-height: 600px;
}

.plan-details-trigger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: auto 0 12px;
  padding: 8px 12px;
  color: var(--purple-700);
  background: transparent;
  border: 1px solid rgba(93, 57, 152, .14);
  border-radius: 13px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.plan-details-trigger > i {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.plan-details-trigger > i::before,
.plan-details-trigger > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.plan-details-trigger > i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.plan-details-trigger:hover {
  color: #fff;
  background: var(--purple-700);
  border-color: var(--purple-700);
  transform: translateY(-2px);
}

.price-card .plan-details-trigger + .button {
  margin-top: 0;
}

.plan-dialog {
  width: min(920px, calc(100vw - 32px));
  max-width: none;
  max-height: min(88dvh, 820px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fbfafc;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(12, 5, 28, .36);
}

.plan-dialog::backdrop {
  background: rgba(13, 6, 27, .66);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

body.plan-dialog-open {
  overflow: hidden;
}

.plan-dialog[open] {
  animation: plan-dialog-in .32s var(--ease) both;
}

@keyframes plan-dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.plan-dialog-shell {
  position: relative;
  max-height: min(88dvh, 820px);
}

.plan-dialog-head {
  position: absolute;
  z-index: 4;
  top: 18px;
  inset-inline-end: 18px;
}

.plan-detail-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

.plan-dialog-close {
  position: relative;
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--purple-900);
  background: #fff;
  border: 1px solid rgba(56, 38, 100, .1);
  border-radius: 13px;
  cursor: pointer;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.plan-dialog-close span {
  position: absolute;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
}

.plan-dialog-close span:last-child {
  transform: rotate(-45deg);
}

.plan-dialog-close:hover {
  color: #fff;
  background: var(--pink);
  transform: rotate(4deg);
}

.plan-dialog-body {
  min-height: 0;
  max-height: min(88dvh, 820px);
  padding: 30px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

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

.plan-detail-panel.is-active {
  animation: plan-panel-in .24s ease both;
}

@keyframes plan-panel-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: none; }
}

.plan-detail-summary {
  display: grid;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.plan-detail-summary h3 {
  margin: 0;
  color: var(--purple-950);
  font-family: "Outfit", var(--font-body);
  font-size: 32px;
  line-height: 1.1;
}

.plan-detail-summary p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.plan-detail-prices {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
}

.plan-detail-prices > span {
  display: grid;
  min-width: 140px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(56, 38, 100, .09);
  border-radius: 15px;
}

.plan-detail-prices small {
  color: var(--muted);
  font-size: 9px;
}

.plan-detail-prices strong {
  margin-top: 2px;
  color: var(--purple-800);
  font-family: "Outfit", var(--font-body);
  font-size: 20px;
  line-height: 1.25;
}

.plan-detail-prices em {
  margin-top: 2px;
  color: #cb6327;
  font-size: 8px;
  font-style: normal;
}

.plan-detail-prices-custom {
  grid-template-columns: minmax(210px, 1fr);
}

.plan-detail-columns {
  display: grid;
  align-items: start;
  gap: 16px;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, .65fr);
}

.plan-detail-block {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(56, 38, 100, .08);
  border-radius: 20px;
}

.plan-detail-block h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--purple-900);
  font-size: 13px;
}

.plan-detail-block h4 > i {
  position: relative;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  background: #eee8f6;
  border-radius: 50%;
}

.plan-detail-included h4 > i::after {
  position: absolute;
  top: 6px;
  right: 5px;
  width: 9px;
  height: 5px;
  content: "";
  border-bottom: 2px solid var(--purple-600);
  border-left: 2px solid var(--purple-600);
  transform: rotate(-45deg);
}

.plan-detail-excluded h4 > i {
  background: #fff0f2;
}

.plan-detail-excluded h4 > i::before,
.plan-detail-excluded h4 > i::after {
  position: absolute;
  top: 10px;
  right: 5px;
  width: 11px;
  height: 1.5px;
  content: "";
  background: #df5d73;
  transform: rotate(45deg);
}

.plan-detail-excluded h4 > i::after {
  transform: rotate(-45deg);
}

.plan-detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 22px 0 0;
  color: #595263;
  font-size: 10.5px;
  line-height: 1.7;
}

.plan-detail-list li::marker {
  color: var(--pink);
  font-family: "Outfit", var(--font-body);
  font-weight: 700;
}

.plan-detail-excluded .plan-detail-list li::marker {
  color: #df5d73;
}

.plan-detail-block-wide .plan-detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}

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

.plan-addon-grid article {
  display: flex;
  min-height: 92px;
  align-items: flex-start;
  gap: 14px;
  padding: 17px;
  background: #fff;
  border: 1px solid rgba(56, 38, 100, .08);
  border-radius: 18px;
}

.plan-addon-grid article > span {
  flex: 0 0 32px;
  color: var(--pink);
  font-family: "Outfit", var(--font-body);
  font-size: 11px;
  font-weight: 700;
}

.plan-addon-grid h4 {
  margin: 0;
  color: var(--purple-900);
  font-size: 12px;
}

.plan-addon-grid p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.plan-rules-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-rules-list li {
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #544d5e;
  background: #fff;
  border: 1px solid rgba(56, 38, 100, .08);
  border-radius: 16px;
  font-size: 10.5px;
  line-height: 1.65;
}

.plan-rules-list li > span {
  flex: 0 0 27px;
  color: var(--pink);
  font-family: "Outfit", var(--font-body);
  font-size: 10px;
  font-weight: 700;
}

.plan-detail-extras {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.plan-detail-extras details {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(56, 38, 100, .08);
  border-radius: 17px;
}

.plan-extra-summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 17px;
  color: var(--purple-900);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.plan-extra-summary::-webkit-details-marker {
  display: none;
}

.plan-extra-summary > i {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  background: #f2edf6;
  border-radius: 50%;
  transition: background .22s ease, transform .22s ease;
}

.plan-extra-summary > i::before,
.plan-extra-summary > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  content: "";
  background: var(--purple-700);
  transform: translate(-50%, -50%);
}

.plan-extra-summary > i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.plan-detail-extras details[open] .plan-extra-summary > i {
  background: #ffeef3;
  transform: rotate(45deg);
}

.plan-extra-summary:hover {
  color: var(--pink);
}

.plan-extra-intro {
  margin: -2px 17px 14px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.plan-detail-extras .plan-addon-grid,
.plan-detail-extras .plan-rules-list {
  padding: 0 17px 17px;
}

.plan-dialog[data-active-plan="enterprise"] .plan-detail-extras details:first-child {
  display: none;
}

[dir="ltr"] .plan-detail-list {
  padding-right: 0;
  padding-left: 22px;
}

[dir="ltr"] .plan-detail-included h4 > i::after {
  right: auto;
  left: 5px;
}

[dir="ltr"] .plan-detail-excluded h4 > i::before,
[dir="ltr"] .plan-detail-excluded h4 > i::after {
  right: auto;
  left: 5px;
}

@media (max-width: 680px) {
  .price-card {
    min-height: 0;
  }

  .plan-details-trigger {
    width: 100%;
    min-height: 46px;
    margin-top: 0;
  }

  .plan-dialog {
    width: 100%;
    max-height: 92dvh;
    margin: auto 0 0;
    border-radius: 25px 25px 0 0;
  }

  .plan-dialog[open] {
    animation-name: plan-dialog-mobile-in;
  }

  @keyframes plan-dialog-mobile-in {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
  }

  .plan-dialog-shell {
    max-height: 92dvh;
  }

  .plan-dialog-head {
    top: 14px;
    inset-inline-end: 14px;
  }

  .plan-dialog-close {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .plan-dialog-body {
    max-height: 92dvh;
    padding: 22px 18px calc(28px + env(safe-area-inset-bottom));
  }

  .plan-detail-summary,
  .plan-detail-columns {
    grid-template-columns: 1fr;
  }

  .plan-detail-summary {
    gap: 16px;
  }

  .plan-detail-prices {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-detail-prices > span {
    min-width: 0;
  }

  .plan-detail-prices-custom {
    grid-template-columns: 1fr;
  }

  .plan-detail-block {
    padding: 18px;
    border-radius: 18px;
  }

  .plan-detail-block-wide .plan-detail-list,
  .plan-addon-grid,
  .plan-rules-list {
    grid-template-columns: 1fr;
  }

  .plan-addon-grid article {
    min-height: 82px;
  }
}

@media (hover: none) {
  .bento-card:hover,
  .audience-card:hover,
  .price-card:hover,
  .price-featured:hover {
    transform: none;
  }

  .audience-card:hover > img {
    bottom: -70px;
  }
}

/* Audience cards: normalize screenshots with different source ratios and keep copy unobstructed. */
.audience-card {
  min-height: 680px;
}

.audience-card > :not(img) {
  position: relative;
  z-index: 1;
}

.audience-card > img,
.audience-card:hover > img {
  z-index: 0;
  bottom: -56px;
  left: 30px;
  width: 184px;
  height: 326px;
  max-width: none;
  object-fit: cover;
  object-position: 50% 22%;
}

.audience-merchant > img,
.audience-merchant:hover > img {
  left: 34px;
}

@media (max-width: 920px) {
  .audience-card {
    min-height: 650px;
  }
}

@media (max-width: 680px) {
  .audience-card {
    min-height: 640px;
  }

  .audience-card > img,
  .audience-card:hover > img,
  .audience-merchant > img,
  .audience-merchant:hover > img {
    bottom: -48px;
    left: 22px;
    width: 160px;
    height: 284px;
  }
}

/* Keep the mobile menu control locked to one edge position before and after the header becomes sticky. */
@media (max-width: 920px) {
  .site-header,
  .site-header.is-scrolled {
    padding: 0;
  }

  .site-header .nav-shell,
  .site-header.is-scrolled .nav-shell {
    position: relative;
    box-sizing: border-box;
    width: min(calc(100% - 28px), var(--container));
    min-height: 76px;
    margin-inline: auto;
    padding: 0;
  }

  .site-header .nav-toggle,
  .site-header.is-scrolled .nav-toggle {
    top: 50%;
    inset-inline-end: 0;
    margin: 0;
    transform: translateY(-50%);
  }
}

/* Fixed transforms on mobile can leave a drawer halfway off-screen after a sticky repaint.
   Keep the panel at its final side position and only fade its visibility. */
@media (max-width: 920px) {
  [dir="rtl"] .nav-panel,
  [dir="ltr"] .nav-panel,
  .site-header.is-scrolled .nav-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity .18s ease, visibility 0s linear .18s;
  }

  .nav-panel.is-open,
  .site-header.is-scrolled .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: opacity .18s ease;
  }
}

/* Full-screen mobile navigation: prevents viewport and sticky-scroll gaps on real devices. */
@media (max-width: 920px) {
  .nav-panel,
  .site-header.is-scrolled .nav-panel,
  [dir="rtl"] .nav-panel,
  [dir="ltr"] .nav-panel {
    position: fixed;
    z-index: 220;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
    min-height: 100dvh;
    padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(22px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-panel.is-open,
  .site-header.is-scrolled .nav-panel.is-open {
    inset: 0;
    width: 100%;
    height: 100dvh;
    transform: none;
  }

  body.menu-open .page-progress {
    opacity: 0;
  }
}
