@font-face {
  font-family: "Vega Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+20AC, U+2122, U+2190-21FF, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Vega Alexandria";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/alexandria-arabic.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08FF,
    U+200C-200E, U+FB50-FDFF, U+FE70-FEFC;
}

@font-face {
  font-family: "Vega Changa";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/changa-arabic.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
    U+FE70-FE74, U+FE76-FEFC;
}

:root {
  color-scheme: dark;
  --black: #10140f;
  --black-soft: #141a13;
  --panel: #192118;
  --panel-strong: #202a1e;
  --ink: #f5f3e9;
  --muted: #bdc4b5;
  --muted-dark: #7d8675;
  --line: rgba(174, 218, 94, 0.26);
  --line-soft: rgba(245, 243, 233, 0.13);
  --green: #aedb62;
  --green-strong: #c2e987;
  --yellow: #e9c45d;
  --danger: #ff8c63;
  --header-height: 74px;
  --font-latin: "Vega Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-arabic: "Vega Alexandria", "Vega Manrope", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 280px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 280px;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-latin);
  font-synthesis: none;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: var(--font-arabic);
  line-height: 1.72;
}

html[dir="rtl"] :where(h1, h2, h3, strong, button, .site-nav, .identity) {
  font-family: var(--font-arabic);
}

body[data-menu-open="true"] {
  overflow: hidden;
}

::selection {
  background: var(--green);
  color: var(--black);
}

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

a {
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.page-shell {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding-inline: 34px;
}

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

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
  transform-origin: left center;
}

html[dir="rtl"] .scroll-progress span {
  margin-inline-start: auto;
  transform-origin: right center;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 3px;
  right: 0;
  left: 0;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 34px;
  border-bottom: 1px solid transparent;
  background: rgba(16, 20, 15, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-bottom-color: var(--line-soft);
  background: var(--black);
}

.identity {
  display: grid;
  justify-self: start;
  line-height: 1;
}

.identity strong {
  color: var(--green);
  font-family: var(--font-latin) !important;
  font-size: 1.3rem;
  font-weight: 850;
}

.identity span {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-latin);
  font-size: 0.57rem;
  font-weight: 750;
}

.site-nav {
  display: flex;
  gap: 23px;
  align-items: center;
  justify-self: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav > a {
  position: relative;
  padding-block: 9px;
  transition: color 150ms ease;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform 150ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.is-active {
  color: var(--ink);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-community {
  display: none;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
}

.header-community,
.language-toggle,
.menu-toggle {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: rgba(13, 18, 9, 0.84);
  font-size: 0.68rem;
  font-weight: 850;
  cursor: pointer;
}

.header-community {
  gap: 10px;
  padding-inline: 13px;
  color: var(--green);
}

.language-toggle {
  min-width: 44px;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - 34px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--black);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 14%;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero::after {
  display: none;
}

.money-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(174, 218, 94, 0.32);
  background: #182016;
  color: #f5f3eb;
}

.money-ticker > div {
  display: flex;
  width: max-content;
  min-height: 54px;
  gap: 34px;
  align-items: center;
  padding-inline: 20px;
  animation: moneyTicker 22s linear infinite;
}

.money-ticker span {
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 1.35rem;
  font-weight: 900;
}

.money-ticker b {
  font-family: var(--font-latin);
  font-size: 0.72rem;
}

@keyframes moneyTicker {
  to { transform: translateX(-35%); }
}

.result-hit {
  position: relative;
  padding-block: 88px;
  overflow: hidden;
  background: #182016;
  color: #f5f3eb;
}

.result-hit::before {
  position: absolute;
  top: -55px;
  right: 2%;
  color: rgba(174, 219, 98, 0.07);
  content: "$$$$$$$$";
  font-family: var(--font-latin);
  font-size: 11rem;
  font-weight: 900;
  white-space: nowrap;
}

.result-hit-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.52fr 0.92fr 1.06fr;
  gap: 40px;
  align-items: center;
}

.result-number {
  display: grid;
  min-height: 250px;
  align-content: center;
  padding: 24px;
  border: 1px solid rgba(174, 219, 98, 0.42);
  border-radius: 6px;
  background: rgba(174, 219, 98, 0.08);
}

.result-number small,
.result-number span {
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 0.68rem;
  font-weight: 900;
}

.result-number strong {
  color: var(--green);
  font-family: var(--font-latin);
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  line-height: 1;
}

.result-hit-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  line-height: 1.15;
}

.result-hit-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #bdc4b5;
}

.result-hit-copy > small {
  display: block;
  margin-top: 14px;
  color: #929b8b;
  font-size: 0.66rem;
}

.result-hit-visual {
  position: relative;
  margin: 0;
  border: 1px solid rgba(174, 219, 98, 0.38);
  border-radius: 6px;
  overflow: hidden;
  transform: rotate(1.5deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.result-hit-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.result-hit-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #aeda62;
  color: #182016;
  font-family: var(--font-latin);
  font-size: 0.63rem;
  transition: background 240ms ease;
}

.result-proof-link {
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
}

.result-proof-link:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -5px;
}

.result-hit-visual:hover img,
.result-hit-visual:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.result-hit-visual:hover figcaption,
.result-hit-visual:focus-within figcaption {
  background: var(--green-strong);
}

.section-heading {
  position: relative;
}

html[lang="ar"] :is(.models-section, .system-section, .opportunity-section, .start-section, .proof-section) .section-heading::after {
  position: absolute;
  top: -22px;
  inset-inline-end: 0;
  color: rgba(87, 126, 47, 0.13);
  content: "$$$$$";
  font-family: var(--font-latin);
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  font-weight: 900;
  pointer-events: none;
}

.model-demo-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #10140f;
}

.model-visual:has(.model-demo-video) figcaption {
  pointer-events: none;
}

@media (max-width: 840px) {
  .result-hit-grid {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .result-hit-visual {
    grid-column: 1 / -1;
    width: min(100%, 680px);
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .money-ticker > div {
    min-height: 46px;
    gap: 24px;
  }

  .result-hit {
    padding-block: 62px;
  }

  .result-hit-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .result-number {
    min-height: 160px;
    text-align: center;
  }

  .result-number strong {
    font-size: 4.4rem;
  }

  .result-hit-copy h2 {
    font-size: 2.2rem;
  }

  .result-hit-copy > p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .result-hit-copy > small {
    font-size: 0.75rem;
    line-height: 1.7;
  }

  .result-hit-visual {
    grid-column: auto;
    transform: none;
  }

  html[lang="ar"] :is(.models-section, .system-section, .opportunity-section, .start-section, .proof-section) .section-heading::after {
    top: -10px;
    font-size: 3.2rem;
  }
}

/* The paid-ad route stays visually familiar while keeping only the two free next steps. */
.conversion-focus :is(
  .simple-strip,
  .business-vision,
  .basics-section,
  .idea-section,
  .models-section,
  .system-section,
  .opportunity-section,
  .start-section,
  .faq-section
) {
  display: none !important;
}

@media (max-width: 360px) and (max-height: 700px) {
  html[lang="ar"] .hero-grid {
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 22px;
  }

  html[lang="ar"] .hero h1 {
    font-size: 1.8rem;
  }

  html[lang="ar"] .hero-lead,
  html[lang="ar"] .hero-actions .button-secondary {
    display: none;
  }

  html[lang="ar"] .hero-actions {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  html[lang="ar"] .hero-stage {
    margin-top: 14px;
  }

  html[lang="ar"] .mobile-hero-story {
    gap: 7px;
  }

  html[lang="ar"] .mobile-hero-story article {
    min-height: 64px;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    padding: 8px 12px;
  }

  html[lang="ar"] .mobile-hero-story article > span {
    width: 34px;
    height: 34px;
    font-size: 0.7rem;
  }

  html[lang="ar"] .mobile-hero-story b {
    font-size: 0.84rem;
  }

  html[lang="ar"] .mobile-hero-story strong {
    font-size: 0.62rem;
  }
}

@media (max-width: 680px) {
  html[lang="ar"] .hero-stage {
    margin-top: 16px;
  }

  html[lang="ar"] .mobile-hero-story {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  html[lang="ar"] .mobile-hero-story article {
    min-height: 104px;
    grid-template-columns: 1fr;
    gap: 7px;
    justify-items: center;
    align-content: center;
    padding: 9px 6px;
    text-align: center;
  }

  html[lang="ar"] .mobile-hero-story article > span {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }

  html[lang="ar"] .mobile-hero-story b {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  html[lang="ar"] .mobile-hero-story strong {
    display: none;
  }
}

/* English mirrors the current Darija storybook journey instead of the older dense guide. */
html[lang="en"] body {
  font-size: 18px;
}

html[lang="en"] .eyebrow,
html[lang="en"] .section-index {
  font-size: 0.78rem;
}

html[lang="en"] .hero-lead,
html[lang="en"] .section-heading > p:last-child,
html[lang="en"] .world-example > p:last-child,
html[lang="en"] .first-definition > p:not(:first-child),
html[lang="en"] .platform-note,
html[lang="en"] .truth-note p,
html[lang="en"] .community-content > p:not(.eyebrow),
html[lang="en"] .faq-list details p {
  font-size: 1rem;
  line-height: 1.9;
}

html[lang="en"] .hero-notes {
  font-size: 0.78rem;
}

html[lang="en"] .visual-intro-flow strong {
  font-size: 1.25rem;
}

html[lang="en"] .visual-intro-flow small {
  font-size: 0.92rem;
  line-height: 1.75;
}

html[lang="en"] .world-example h3,
html[lang="en"] .model-map h3,
html[lang="en"] .model-card-content > h3,
html[lang="en"] .proof-copy h3 {
  font-size: 1.65rem;
}

html[lang="en"] .translation-block,
html[lang="en"] .term-decoder,
html[lang="en"] .analogy,
html[lang="en"] .roles,
html[lang="en"] .requirements,
html[lang="en"] .model-visual-note,
html[lang="en"] .example-disclaimer {
  display: none;
}

html[lang="en"] .first-definition {
  margin-top: 48px;
  padding: 38px;
  text-align: center;
}

html[lang="en"] .first-definition h3 {
  max-width: 860px;
  margin-inline: auto;
  font-size: 2.3rem;
}

html[lang="en"] .first-definition .text-link {
  font-size: 0.95rem;
}

html[lang="en"] .idea-section .section-heading > p:last-child,
html[lang="en"] .models-section .section-heading > p:last-child,
html[lang="en"] .opportunity-section .section-heading > p:last-child,
html[lang="en"] .start-section .section-heading > p:last-child {
  display: none;
}

html[lang="en"] .model-map {
  margin-top: 12px;
}

html[lang="en"] .model-map article {
  min-height: 210px;
}

html[lang="en"] .model-map small {
  font-size: 0.92rem;
}

html[lang="en"] .model-description,
html[lang="en"] .model-io,
html[lang="en"] .service-package > p {
  display: none;
}

html[lang="en"] .model-card-content {
  min-height: 210px;
  justify-content: center;
  gap: 10px;
}

html[lang="en"] .model-type,
html[lang="en"] .service-package > span {
  font-size: 0.76rem;
}

html[lang="en"] .service-package {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
}

html[lang="en"] .service-package > strong {
  font-size: 1.08rem;
}

html[lang="en"] .resell-heading > p:last-child,
html[lang="en"] .resell-steps p,
html[lang="en"] .resell-note,
html[lang="en"] .resell-explainer > .text-link {
  display: none;
}

html[lang="en"] .resell-explainer {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
}

html[lang="en"] .resell-heading {
  grid-row: auto;
}

html[lang="en"] .resell-steps li {
  display: grid;
  min-height: 132px;
  align-content: center;
}

html[lang="en"] .resell-steps li > span {
  margin-bottom: 14px;
  font-size: 0.78rem;
}

html[lang="en"] .resell-steps strong {
  font-size: 1rem;
}

html[lang="en"] .customer-flow p,
html[lang="en"] .opportunity-grid p,
html[lang="en"] .start-steps p,
html[lang="en"] .proof-copy > p:not(.proof-label) {
  display: none;
}

html[lang="en"] .customer-flow li {
  min-height: 180px;
  padding: 28px 22px;
}

html[lang="en"] .customer-flow li > span,
html[lang="en"] .opportunity-grid article > span {
  font-size: 0.8rem;
}

html[lang="en"] .customer-flow strong,
html[lang="en"] .opportunity-grid h3,
html[lang="en"] .start-steps h3 {
  font-size: 1.15rem;
}

html[lang="en"] .opportunity-grid article {
  display: grid;
  min-height: 180px;
  align-content: center;
}

html[lang="en"] .money-heading > p:last-child {
  display: none;
}

html[lang="en"] .money-heading h3 {
  font-size: 1.8rem;
}

html[lang="en"] .money-example small {
  font-size: 0.72rem;
}

html[lang="en"] .truth-note {
  margin-top: 36px;
}

html[lang="en"] .start-steps li {
  min-height: 92px;
  align-items: center;
}

html[lang="en"] .proof-label,
html[lang="en"] .text-link,
html[lang="en"] .video-points li {
  font-size: 0.9rem;
}

html[lang="en"] .faq-list summary {
  font-size: 1.05rem;
}

@media (max-width: 840px) {
  html[lang="en"] .resell-explainer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  html[lang="en"] .hero-grid {
    min-height: auto;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 34px;
  }

  html[lang="en"] .hero h1 {
    max-width: 100%;
    font-size: 2.2rem;
    line-height: 1.18;
  }

  html[lang="en"] .hero h1 > span:first-child {
    margin-bottom: 6px;
    font-size: 0.72em;
    white-space: normal;
  }

  html[lang="en"] .hero-lead {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  html[lang="en"] .hero-notes {
    display: none;
  }

  html[lang="en"] .hero-stage {
    height: auto;
    min-height: 0;
    margin-top: 24px;
  }

  html[lang="en"] .hero-stage canvas,
  html[lang="en"] .hero-stage .scene-fallback,
  html[lang="en"] .stage-caption {
    display: none !important;
  }

  html[lang="en"] .mobile-hero-story {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  html[lang="en"] .mobile-hero-story article {
    display: grid;
    min-height: 104px;
    grid-template-columns: 1fr;
    gap: 7px;
    align-items: center;
    justify-items: center;
    align-content: center;
    padding: 9px 6px;
    border: 1px solid rgba(174, 219, 98, 0.26);
    border-radius: 6px;
    background: #182016;
    text-align: center;
  }

  html[lang="en"] .mobile-hero-story article:nth-child(2) {
    background: #aeda62;
    color: #182016;
  }

  html[lang="en"] .mobile-hero-story article > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--green);
    font-family: var(--font-latin);
    font-size: 0.72rem;
    font-weight: 900;
  }

  html[lang="en"] .mobile-hero-story article:nth-child(2) > span {
    color: #182016;
  }

  html[lang="en"] .mobile-hero-story b {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  html[lang="en"] .mobile-hero-story strong {
    display: none;
  }

  html[lang="en"] :is(
    .eyebrow,
    .section-index,
    .model-type,
    .service-package > span,
    .proof-label,
    .result-number small,
    .result-number span,
    .result-hit-visual figcaption,
    .footer-grid nav,
    .footer-grid > span
  ) {
    font-size: 0.8rem;
  }

  html[lang="en"] :is(
    .platform-note,
    .model-map small,
    .resell-steps strong,
    .customer-flow strong,
    .opportunity-grid h3,
    .start-steps h3,
    .video-points li,
    .text-link,
    .faq-list summary
  ) {
    font-size: 1rem;
  }

  html[lang="en"] :is(
    .visual-intro-flow small,
    .result-hit-copy > small,
    .faq-list details p,
    .community-content > p:not(.eyebrow)
  ) {
    font-size: 0.9rem;
  }

  html[lang="en"] .first-definition {
    padding: 28px 22px;
  }

  html[lang="en"] .first-definition h3 {
    font-size: 1.55rem;
  }

  html[lang="en"] .model-map article {
    min-height: 0;
  }

  html[lang="en"] .model-card-content {
    min-height: 180px;
  }

  html[lang="en"] .resell-steps li,
  html[lang="en"] .customer-flow li,
  html[lang="en"] .customer-flow li:nth-child(3),
  html[lang="en"] .customer-flow li:nth-child(even) {
    min-height: 88px;
    padding: 18px;
    border: 1px solid var(--line-soft);
  }

  html[lang="en"] .opportunity-grid article {
    min-height: 110px;
    padding: 22px;
  }

  html[lang="en"] .start-steps li {
    min-height: 82px;
  }

  html[lang="en"] .proof-copy {
    padding-block: 24px 28px;
  }
}

@media (max-width: 360px) and (max-height: 700px) {
  html[lang="en"] .hero-grid {
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 22px;
  }

  html[lang="en"] .hero h1 {
    font-size: 1.8rem;
  }

  html[lang="en"] .hero-lead,
  html[lang="en"] .hero-actions .button-secondary {
    display: none;
  }

  html[lang="en"] .hero-actions {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  html[lang="en"] .hero-stage {
    margin-top: 9px;
  }

  html[lang="en"] .mobile-hero-story article {
    min-height: 86px;
    padding: 6px 4px;
  }

  html[lang="en"] .mobile-hero-story article > span {
    width: 30px;
    height: 30px;
    font-size: 0.66rem;
  }

  html[lang="en"] .mobile-hero-story b {
    font-size: 0.7rem;
  }
}

@media (max-width: 360px) and (max-height: 700px) {
  html[lang="ar"] .hero-stage {
    margin-top: 8px;
  }

  html[lang="ar"] .mobile-hero-story article {
    min-height: 86px;
  }
}

/* Final compact-phone override after all legacy responsive rules. */
@media (max-width: 360px) and (max-height: 700px) {
  html[lang="ar"] .hero-stage {
    margin-top: 8px;
  }

  html[lang="ar"] .mobile-hero-story {
    gap: 5px;
  }

  html[lang="ar"] .mobile-hero-story article {
    min-height: 57px;
  }
}

.trust-bar {
  padding-block: 24px 18px;
  border-block: 1px solid rgba(174, 219, 98, 0.3);
  background: #182016;
  color: #f5f3eb;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(174, 219, 98, 0.2);
  border-radius: 6px;
}

.trust-bar-grid > div {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 17px 20px;
  border-inline-end: 1px solid rgba(174, 219, 98, 0.2);
}

.trust-bar-grid > div:last-child {
  border-inline-end: 0;
}

.trust-bar-grid strong {
  color: #aeda62;
  font-family: var(--font-latin);
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1;
}

.trust-bar-grid span {
  color: #c6ccbf;
  font-size: 0.78rem;
  font-weight: 750;
}

.trust-bar > small {
  display: block;
  width: min(100% - 32px, 1240px);
  margin: 10px auto 0;
  color: #929b8b;
  font-size: 0.72rem;
  text-align: center;
}

.business-vision {
  padding-block: 100px;
  border-bottom: 1px solid rgba(24, 32, 22, 0.13);
  background: #e8eee4;
  color: #182016;
}

.business-vision-heading {
  max-width: 900px;
  margin-bottom: 58px;
}

.business-vision-heading .eyebrow {
  color: #5f832f;
}

.business-vision-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.14;
}

.business-vision-heading > p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: #5f695a;
  font-size: 1rem;
}

.vision-story {
  display: grid;
  gap: 24px;
}

.vision-chapter {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 40px;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(24, 32, 22, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 55px rgba(31, 43, 27, 0.08);
}

.vision-chapter-copy {
  min-width: 0;
}

.vision-step {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 32px;
  place-items: center;
  border: 1px solid #5f832f;
  border-radius: 50%;
  color: #5f832f;
  font-family: var(--font-latin);
  font-size: 0.8rem;
  font-weight: 900;
}

.vision-chapter h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.9rem);
  line-height: 1.3;
}

.vision-chapter-copy > p:not(.section-index) {
  margin: 14px 0 0;
  color: #5f695a;
  font-size: 0.92rem;
  line-height: 1.8;
}

.vision-browser,
.dashboard-demo,
.jobs-demo {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(24, 32, 22, 0.18);
  border-radius: 6px;
  overflow: hidden;
  background: #091728;
  box-shadow: 0 22px 52px rgba(9, 23, 40, 0.18);
}

.vision-browser-bar {
  display: flex;
  min-height: 40px;
  gap: 7px;
  align-items: center;
  padding-inline: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #9eacc0;
  font-family: var(--font-latin);
  font-size: 0.68rem;
}

.vision-browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aeda62;
}

.vision-browser-bar i:nth-child(2) { background: #e9c45d; }
.vision-browser-bar i:nth-child(3) { background: #6c7a8e; }
.vision-browser-bar span { margin-inline-start: 7px; }

.vision-browser img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.demo-ribbon {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-inline: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c1c30;
  color: #9eacc0;
  font-family: var(--font-latin);
  font-size: 0.7rem;
}

.demo-ribbon span {
  color: #e9c45d;
  font-weight: 900;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.dashboard-metrics > div {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 17px;
  border: 1px solid rgba(68, 199, 231, 0.2);
  border-radius: 5px;
  background: #0c1a2d;
  color: #fff;
}

.dashboard-metrics small,
.dashboard-metrics span {
  color: #91a5c0;
  font-family: var(--font-latin);
  font-size: 0.74rem;
}

.dashboard-metrics strong {
  font-family: var(--font-latin);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  overflow-wrap: anywhere;
}

.transaction-table {
  padding: 0 16px 14px;
  color: #f6f8fb;
}

.transaction-head,
.transaction-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.5fr) 0.7fr 0.72fr 0.86fr;
  gap: 12px;
  align-items: center;
}

.transaction-head {
  padding: 10px 12px;
  color: #91a5c0;
  font-size: 0.74rem;
}

.transaction-row {
  min-height: 72px;
  padding: 11px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-family: var(--font-latin);
  font-size: 0.82rem;
}

.masked-customer {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.masked-customer small {
  color: #7890af;
  font-size: 0.68rem;
}

.transaction-row em {
  color: #dce5f2;
  font-style: normal;
}

.transaction-row mark {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #24bbe5;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 850;
}

.demo-disclaimer {
  margin: 0;
  padding: 11px 16px 15px;
  color: #91a5c0;
  font-size: 0.72rem;
}

.jobs-demo {
  display: grid;
  gap: 1px;
  padding: 15px;
  background: #091728;
}

.job-row {
  display: grid;
  min-height: 90px;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #f7f9fc;
}

.job-row img {
  width: 70px;
  height: 62px;
  border-radius: 4px;
  object-fit: cover;
}

.job-row > div {
  display: grid;
  gap: 3px;
}

.job-row small {
  color: #91a5c0;
  font-family: var(--font-latin);
  font-size: 0.68rem;
}

.job-row strong {
  font-family: var(--font-latin);
  font-size: 0.95rem;
}

.job-row > span {
  padding: 6px 10px;
  border: 1px solid rgba(174, 219, 98, 0.4);
  border-radius: 999px;
  color: #aeda62;
  font-family: var(--font-latin);
  font-size: 0.72rem;
}

.jobs-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 13px;
  padding: 18px;
  border-radius: 5px;
  background: #aeda62;
  color: #182016;
}

.jobs-result small { font-size: 0.76rem; }
.jobs-result strong { font-size: 1rem; }
.jobs-result b { font-family: var(--font-latin); font-size: 1.4rem; }

.conversion-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding: 26px 28px;
  border: 1px solid rgba(174, 219, 98, 0.35);
  border-radius: 6px;
  background: #182016;
  color: #f5f3eb;
}

.conversion-cta > div:first-child {
  display: grid;
  gap: 5px;
}

.conversion-cta small {
  color: #aeda62;
  font-size: 0.72rem;
  font-weight: 850;
}

.conversion-cta strong {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
}

.conversion-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.conversion-actions .button {
  min-width: 190px;
}

.conversion-cta-light {
  border-color: rgba(24, 32, 22, 0.18);
  background: #182016;
}

.attention-cta {
  animation: ctaAttention 2.2s ease-in-out infinite;
}

@keyframes ctaAttention {
  0%, 100% { box-shadow: 0 0 0 0 rgba(174, 219, 98, 0); }
  50% { box-shadow: 0 0 0 8px rgba(174, 219, 98, 0.14), 0 12px 28px rgba(95, 131, 47, 0.18); }
}

@media (max-width: 840px) {
  .vision-chapter {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .conversion-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .conversion-actions {
    width: 100%;
  }

  .conversion-actions .button {
    min-width: 0;
    flex: 1;
  }
}

@media (max-width: 680px) {
  .trust-bar {
    padding-block: 14px 12px;
  }

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

  .trust-bar-grid > div {
    min-height: 92px;
    padding: 14px;
    border-bottom: 1px solid rgba(174, 219, 98, 0.2);
  }

  .trust-bar-grid > div:nth-child(2) {
    border-inline-end: 0;
  }

  .trust-bar-grid > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .trust-bar-grid strong {
    font-size: 1.65rem;
  }

  .trust-bar-grid span,
  .trust-bar > small {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .business-vision {
    padding-block: 70px;
  }

  .business-vision-heading {
    margin-bottom: 34px;
  }

  .business-vision-heading h2 {
    font-size: 2.25rem;
  }

  .business-vision-heading > p:last-child {
    font-size: 0.95rem;
  }

  .vision-chapter {
    gap: 22px;
    padding: 18px;
  }

  .vision-step {
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
  }

  .vision-chapter h3 {
    font-size: 1.65rem;
  }

  .vision-chapter-copy > p:not(.section-index) {
    font-size: 0.92rem;
  }

  .vision-browser img {
    aspect-ratio: 4 / 3;
  }

  .demo-ribbon {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 10px;
    font-size: 0.72rem;
  }

  .dashboard-metrics {
    gap: 8px;
    padding: 10px;
  }

  .dashboard-metrics > div {
    padding: 12px;
  }

  .dashboard-metrics small,
  .dashboard-metrics span {
    font-size: 0.72rem;
  }

  .dashboard-metrics strong {
    font-size: clamp(1.15rem, 6vw, 1.65rem);
  }

  .transaction-table {
    padding-inline: 10px;
  }

  .transaction-head {
    display: none;
  }

  .transaction-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 12px;
    padding: 12px 8px;
    font-size: 0.82rem;
  }

  .transaction-row em {
    grid-column: 1;
    color: #91a5c0;
  }

  .transaction-row mark {
    grid-column: 2;
    font-size: 0.72rem;
  }

  .demo-disclaimer {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .job-row {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 82px;
  }

  .job-row img {
    width: 56px;
    height: 54px;
  }

  .job-row > span {
    grid-column: 2;
    justify-self: start;
    font-size: 0.72rem;
  }

  .jobs-result {
    grid-template-columns: 1fr auto;
  }

  .jobs-result small {
    grid-column: 1;
  }

  .jobs-result strong {
    grid-column: 1;
    font-size: 0.92rem;
  }

  .jobs-result b {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .conversion-cta {
    margin-top: 30px;
    padding: 22px 18px;
  }

  .conversion-cta small {
    font-size: 0.78rem;
  }

  .conversion-cta strong {
    font-size: 1.3rem;
  }

  .conversion-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .attention-cta {
    animation: none;
  }
}

@media (max-width: 360px) and (max-height: 700px) {
  html[lang="ar"] .hero-stage {
    margin-top: 9px;
  }

  html[lang="ar"] .mobile-hero-story {
    gap: 5px;
  }

  html[lang="ar"] .mobile-hero-story article {
    min-height: 57px;
  }
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - 34px);
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: 26px;
  align-items: center;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--yellow);
  font-family: var(--font-latin);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

html[dir="rtl"] .eyebrow {
  font-family: var(--font-arabic);
}

.eyebrow > span:first-child {
  width: 36px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: 4.65rem;
  font-weight: 780;
  line-height: 1.01;
}

html[dir="rtl"] .hero h1 {
  font-size: 4.15rem;
  line-height: 1.18;
}

html[lang="ar"] .hero h1 > strong {
  font-family: "Vega Changa", var(--font-arabic);
  font-weight: 700;
  line-height: 1.14;
  text-wrap: balance;
}

.hero h1 > span,
.hero h1 > strong {
  display: block;
}

.hero h1 > span:first-child {
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 0.88em;
  font-weight: 900;
  white-space: nowrap;
}

.hero h1 > strong {
  color: var(--ink);
}

.hero-lead {
  max-width: 630px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.hero-actions,
.community-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 27px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 850;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

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

.button-primary {
  min-width: 230px;
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
}

.button-secondary {
  background: rgba(13, 18, 9, 0.72);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

.hero-notes {
  display: flex;
  gap: 9px 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
}

.hero-notes span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.hero-notes span::before {
  width: 5px;
  height: 5px;
  background: var(--green);
  content: "";
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(68vh, 650px);
  min-height: 510px;
}

.hero-stage canvas {
  width: 100%;
  height: 100%;
  touch-action: pan-y;
}

.mobile-hero-story {
  display: none;
}

.scene-fallback {
  position: absolute;
  inset: 12% 2% 16%;
  display: none;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}

.scene-fallback span {
  display: grid;
  width: min(80%, 310px);
  min-height: 90px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 0.8rem;
  font-weight: 900;
}

.stage-caption {
  position: absolute;
  right: 3%;
  bottom: 6%;
  left: 3%;
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
}

.stage-caption i {
  color: var(--green);
  font-family: var(--font-latin);
  font-style: normal;
}

html[dir="rtl"] .stage-caption i,
html[dir="rtl"] .model-map > i,
html[dir="rtl"] .proof-funnel > i,
html[dir="rtl"] .story-bridge i {
  transform: rotate(180deg);
}

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--font-latin);
  transition: border-color 150ms ease, transform 150ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  border-color: var(--green);
  transform: translateY(3px);
}

.simple-strip {
  background: var(--green);
  color: var(--black);
}

.simple-strip .page-shell {
  display: grid;
  min-height: 74px;
  grid-template-columns: 0.32fr 1fr;
  gap: 28px;
  align-items: center;
}

.simple-strip span {
  font-size: 0.67rem;
  font-weight: 850;
  text-transform: uppercase;
}

.visual-intro {
  padding-block: 72px 84px;
  border-bottom: 1px solid var(--line-soft);
  background: #f1f0e8;
  color: #151a13;
}

.visual-intro-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.visual-intro-heading .eyebrow {
  color: #58772c;
}

.visual-intro-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.18;
}

.visual-intro-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.visual-intro-flow article {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.visual-intro-flow img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(21, 26, 19, 0.16);
  border-radius: 6px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 18px 45px rgba(25, 34, 22, 0.14);
}

.visual-intro-flow article > span {
  margin-top: 8px;
  color: #668d2f;
  font-family: var(--font-latin);
  font-size: 0.65rem;
  font-weight: 900;
}

.visual-intro-flow strong {
  font-size: 1.05rem;
}

.visual-intro-flow small {
  color: #5e6758;
  font-size: 0.74rem;
}

.visual-intro-flow > i {
  color: #668d2f;
  font-family: var(--font-latin);
  font-style: normal;
  font-weight: 900;
}

html[dir="rtl"] .visual-intro-flow > i {
  transform: rotate(180deg);
}

.simple-strip strong {
  font-size: 1.08rem;
  line-height: 1.45;
}

.section {
  position: relative;
  padding-block: 120px;
  border-bottom: 1px solid var(--line-soft);
}

.section-heading {
  display: grid;
  max-width: 900px;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 880px;
  margin: 0;
  font-size: 3.25rem;
  font-weight: 760;
  line-height: 1.12;
}

html[dir="rtl"] .section-heading h2 {
  line-height: 1.35;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.section-index {
  margin: 0 0 12px;
  color: var(--yellow);
  font-family: var(--font-latin);
  font-size: 0.65rem;
  font-weight: 850;
}

.basics-section {
  background: var(--black-soft);
}

.zero-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
  align-items: stretch;
  border-block: 1px solid var(--line-soft);
}

.world-example {
  display: grid;
  min-width: 0;
  align-content: start;
  padding: 34px 0 38px;
}

.world-example h3 {
  margin: 26px 0 0;
  font-size: 1.55rem;
}

.world-example > p:last-child {
  max-width: 480px;
  margin: 10px 0 0;
  color: var(--muted);
}

.shop-visual,
.website-visual {
  position: relative;
  width: min(100%, 430px);
  height: 240px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #11150f;
}

.shop-visual {
  display: grid;
  place-items: end center;
  padding-bottom: 22px;
}

.shop-visual::before {
  position: absolute;
  right: 12%;
  bottom: 20px;
  left: 12%;
  height: 144px;
  border: 2px solid var(--ink);
  background: var(--panel);
  content: "";
}

.shop-visual::after {
  position: absolute;
  right: 7%;
  bottom: 162px;
  left: 7%;
  height: 20px;
  border-block: 2px solid var(--yellow);
  background: var(--green);
  content: "";
}

.shop-sign {
  position: absolute;
  z-index: 2;
  top: 73px;
  right: 20%;
  left: 20%;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.shop-door {
  position: absolute;
  z-index: 2;
  bottom: 21px;
  left: 43%;
  width: 24%;
  height: 86px;
  border: 1px solid var(--line);
  background: var(--black);
}

.shop-product,
.shop-person {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 0;
}

.shop-product {
  right: 23%;
  bottom: 53px;
}

.shop-person {
  bottom: 34px;
  left: 7%;
  border-color: var(--yellow);
}

.shop-product::after,
.shop-person::after {
  position: absolute;
  top: 30px;
  width: 2px;
  height: 38px;
  background: currentColor;
  content: "";
}

.story-bridge {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  border-inline: 1px solid var(--line-soft);
  color: var(--green);
  font-family: var(--font-latin);
}

.story-bridge span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 750;
  text-align: center;
}

.story-bridge i {
  font-style: normal;
}

.website-visual {
  display: grid;
  grid-template-rows: 32px 1fr;
  padding: 0 16px 16px;
  background: var(--black);
}

.website-visual::before {
  position: absolute;
  top: 42px;
  right: 16px;
  left: 16px;
  height: 1px;
  background: var(--line);
  content: "";
}

.website-address {
  align-self: center;
  color: var(--muted);
  font-family: var(--font-latin);
  font-size: 0.58rem;
}

.website-hero {
  position: absolute;
  top: 73px;
  right: 16px;
  left: 16px;
  height: 92px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.website-hero::before,
.website-hero::after {
  position: absolute;
  right: 18px;
  height: 5px;
  background: var(--green);
  content: "";
}

.website-hero::before {
  top: 25px;
  width: 50%;
}

.website-hero::after {
  top: 43px;
  width: 34%;
  background: var(--ink);
}

.website-button {
  position: absolute;
  right: 16px;
  bottom: 22px;
  width: 120px;
  height: 34px;
  background: var(--green);
}

.translation-block {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  padding-top: 72px;
}

.translation-heading h3 {
  max-width: 410px;
  margin: 0;
  font-size: 2rem;
  line-height: 1.35;
}

.translation-list {
  margin: 0;
  border-top: 1px solid var(--line-soft);
}

.translation-list > div {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.translation-list dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.translation-list dd {
  display: grid;
  gap: 4px;
  margin: 0;
}

.translation-list dd strong {
  color: var(--green);
  font-size: 1rem;
}

.translation-list dd span {
  color: var(--muted);
  font-size: 0.78rem;
}

.first-definition {
  margin-top: 76px;
  padding: 44px;
  border-inline-start: 4px solid var(--green);
  background: var(--panel);
}

.first-definition > p:first-child {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
}

.first-definition h3 {
  max-width: 960px;
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.38;
}

.first-definition > p:not(:first-child) {
  max-width: 790px;
  margin: 16px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--yellow);
}

.idea-section {
  background: var(--black);
}

.term-decoder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 72px;
  border-block: 1px solid var(--line-soft);
}

.term-decoder article {
  min-height: 210px;
  padding: 28px;
  border-inline-end: 1px solid var(--line-soft);
}

.term-decoder article:last-child {
  border-inline-end: 0;
}

.term-decoder article > span {
  display: block;
  margin-bottom: 46px;
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 1.35rem;
  font-weight: 900;
}

.term-decoder h3 {
  margin: 0;
  font-size: 1.18rem;
}

.term-decoder p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.model-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: center;
}

.model-map article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--panel);
}

.model-map article.is-highlighted {
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
  transform: translateY(-12px);
}

.model-map > i {
  color: var(--green);
  font-family: var(--font-latin);
  font-style: normal;
  text-align: center;
}

.model-number {
  display: block;
  margin-bottom: 54px;
  color: var(--yellow);
  font-family: var(--font-latin);
  font-size: 0.65rem;
  font-weight: 850;
}

.is-highlighted .model-number {
  color: var(--black);
}

.model-map article p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
  text-transform: uppercase;
}

.model-map article.is-highlighted p,
.model-map article.is-highlighted small {
  color: rgba(5, 7, 4, 0.72);
}

.model-map h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.35;
}

.model-map small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.75;
}

.platform-note {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 0;
  padding: 19px 22px;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.74rem;
}

.platform-note > span {
  max-width: 760px;
}

.platform-note a {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 14px;
  align-items: center;
  color: var(--green);
  font-weight: 850;
}

.analogy {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
  margin-top: 96px;
  padding-top: 62px;
  border-top: 1px solid var(--line-soft);
}

.analogy-copy h3 {
  max-width: 440px;
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.35;
}

.analogy-copy > p:last-child {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--muted);
}

.analogy-list {
  margin: 0;
}

.analogy-list > div {
  display: grid;
  min-height: 60px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
}

.analogy-list dt {
  color: var(--muted);
  font-size: 0.73rem;
}

.analogy-list dd {
  margin: 0;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.models-section {
  background: var(--black);
  overflow: clip;
}

.model-principle {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) 48px minmax(0, 1fr);
  align-items: stretch;
  margin-bottom: 58px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--panel);
}

.model-principle > div {
  display: grid;
  min-height: 126px;
  align-content: center;
  gap: 9px;
  padding: 24px 28px;
}

.model-principle > div > span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.model-principle > div > strong {
  font-size: 1.28rem;
  line-height: 1.4;
}

.model-principle > i {
  display: grid;
  place-items: center;
  color: var(--green);
  font-family: var(--font-latin);
  font-style: normal;
}

html[dir="rtl"] .model-principle > i,
html[dir="rtl"] .model-io > i {
  transform: rotate(180deg);
}

.model-principle .is-customer-facing {
  background: var(--green);
  color: var(--black);
}

.model-principle .is-customer-facing > span {
  color: rgba(5, 7, 4, 0.68);
}

.model-principle > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 28px;
  border-top: 1px solid var(--line-soft);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 750;
}

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

.ai-model-card {
  --model-accent: var(--yellow);
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--model-accent);
  border-radius: 4px;
  background: var(--panel);
  overflow: hidden;
}

.ai-model-card:nth-child(2) {
  --model-accent: var(--green);
}

.ai-model-card:nth-child(3) {
  --model-accent: var(--ink);
}

.model-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  background: var(--black-soft);
  overflow: hidden;
}

.model-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ai-model-card:hover .model-visual img {
  transform: scale(1.035);
}

.model-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(5, 7, 4, 0.9);
  font-family: var(--font-latin);
}

.model-visual figcaption span {
  color: var(--model-accent);
  font-size: 0.58rem;
  font-weight: 850;
}

.model-visual figcaption strong {
  color: var(--ink);
  font-family: var(--font-latin);
  font-size: 0.64rem;
  letter-spacing: 0;
}

.video-mark {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(246, 248, 239, 0.5);
  border-radius: 50%;
  background: rgba(5, 7, 4, 0.78);
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 0.7rem;
}

.model-card-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px 24px 24px;
}

.model-type {
  margin: 0 0 9px;
  color: var(--model-accent);
  font-size: 0.61rem;
  font-weight: 850;
  text-transform: uppercase;
}

.model-card-content > h3 {
  margin: 0;
  font-family: var(--font-latin);
  font-size: 1.45rem;
  line-height: 1.2;
}

.model-description {
  min-height: 132px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.8;
}

.model-io {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  padding-block: 18px;
  border-block: 1px solid var(--line-soft);
}

.model-io > div {
  display: grid;
  gap: 6px;
}

.model-io span,
.service-package > span {
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.model-io strong {
  font-size: 0.7rem;
  line-height: 1.55;
}

.model-io > i {
  color: var(--model-accent);
  font-family: var(--font-latin);
  font-size: 0.7rem;
  font-style: normal;
  text-align: center;
}

.service-package {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.service-package > strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-package > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.7;
}

.model-visual-note {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 0.64rem;
  text-align: center;
}

.resell-explainer {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 20px 68px;
  align-items: start;
  margin-top: 92px;
  padding-top: 60px;
  border-top: 1px solid var(--line-soft);
}

.resell-heading {
  grid-row: 1 / 4;
}

.resell-heading h3 {
  max-width: 430px;
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.35;
}

.resell-heading > p:last-child {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.85;
}

.resell-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
}

.resell-steps li {
  min-height: 178px;
  padding: 22px;
  border-inline-end: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.resell-steps li:nth-child(even) {
  border-inline-end: 0;
}

.resell-steps li > span {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 0.61rem;
  font-weight: 850;
}

.resell-steps strong {
  display: block;
  font-size: 0.87rem;
}

.resell-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.75;
}

.resell-note {
  margin: 0;
  padding: 16px 18px;
  border-inline-start: 2px solid var(--yellow);
  background: rgba(255, 210, 31, 0.06);
  color: var(--muted);
  font-size: 0.71rem;
}

.resell-explainer > .text-link {
  justify-self: start;
}

.system-section {
  background: var(--black-soft);
}

.customer-flow {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  border-block: 1px solid var(--line-soft);
}

.customer-flow li {
  min-height: 250px;
  padding: 28px 22px;
  border-inline-end: 1px solid var(--line-soft);
}

.customer-flow li:last-child {
  border-inline-end: 0;
}

.customer-flow li > span {
  display: block;
  margin-bottom: 64px;
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 0.65rem;
  font-weight: 850;
}

.customer-flow strong {
  display: block;
  font-size: 1rem;
}

.customer-flow p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.roles {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
  margin-top: 100px;
}

.roles-intro h3 {
  max-width: 500px;
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.42;
}

.roles-intro > p:last-child {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--muted);
}

.role-switcher {
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--panel);
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5px;
  border-bottom: 1px solid var(--line-soft);
}

.segmented-control button {
  min-height: 46px;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.segmented-control button[aria-selected="true"] {
  background: var(--green);
  color: var(--black);
}

.role-panel {
  min-height: 300px;
  padding: 32px;
}

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

.role-panel > p {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
}

.role-panel ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-panel li {
  position: relative;
  padding: 15px 24px 15px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 0.83rem;
}

html[dir="rtl"] .role-panel li {
  padding: 15px 0 15px 24px;
}

.role-panel li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green);
  content: "";
}

html[dir="rtl"] .role-panel li::before {
  right: auto;
  left: 0;
}

.opportunity-section {
  background: var(--black);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-soft);
}

.opportunity-grid article {
  min-height: 260px;
  padding: 30px;
  border-inline-end: 1px solid var(--line-soft);
}

.opportunity-grid article:last-child {
  border-inline-end: 0;
}

.opportunity-grid article > span {
  display: block;
  margin-bottom: 70px;
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 0.65rem;
  font-weight: 850;
}

.opportunity-grid h3 {
  margin: 0;
  font-size: 1.3rem;
}

.opportunity-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.money-explainer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px 60px;
  align-items: center;
  margin-top: 70px;
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.money-heading h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.35;
}

.money-heading > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.money-example {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.money-example > span {
  display: grid;
  min-height: 112px;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line-soft);
  background: var(--black);
  text-align: center;
}

.money-example small {
  color: var(--muted);
  font-size: 0.58rem;
}

.money-example strong {
  margin-top: 7px;
  font-family: var(--font-latin) !important;
  font-size: 1.55rem;
}

.money-example > i {
  color: var(--yellow);
  font-family: var(--font-latin);
  font-style: normal;
  font-size: 1rem;
}

.money-example .money-result {
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
}

.money-example .money-result small {
  color: rgba(5, 7, 4, 0.67);
}

.example-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.66rem;
}

.truth-note {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 50px;
  margin-top: 60px;
  padding: 30px 32px;
  border: 1px solid rgba(255, 210, 31, 0.35);
  border-inline-start: 4px solid var(--yellow);
  background: rgba(255, 210, 31, 0.04);
}

.truth-note strong {
  color: var(--yellow);
}

.truth-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.start-section {
  background: var(--black-soft);
}

.start-steps {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.start-steps::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 39px;
  width: 1px;
  background: var(--line);
  content: "";
}

html[dir="rtl"] .start-steps::before {
  right: 39px;
  left: auto;
}

.start-steps li {
  position: relative;
  display: grid;
  min-height: 128px;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  padding: 25px 0;
  border-top: 1px solid var(--line-soft);
}

.start-steps li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.start-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 80px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--black-soft);
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 0.7rem;
  font-weight: 850;
}

.start-steps h3 {
  margin: 0;
  font-size: 1.25rem;
}

.start-steps p {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.requirements {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  margin-top: 88px;
  padding: 42px;
  border: 1px solid var(--green);
  background: var(--panel);
}

.requirements h3 {
  margin: 0;
  font-size: 2rem;
}

.requirements ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.requirements li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.8rem;
}

.requirements li::before {
  margin-inline-end: 12px;
  color: var(--green);
  content: "+";
  font-family: var(--font-latin);
  font-weight: 900;
}

.proof-section {
  background: var(--black);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 22px;
}

.proof-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--panel);
}

.proof-visual {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: #03060c;
}

.browser-frame {
  min-height: 420px;
  padding-top: 34px;
}

.browser-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 34px;
  gap: 6px;
  align-items: center;
  padding-inline: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0d13;
}

.browser-bar > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted-dark);
}

.browser-bar > span:nth-child(2) {
  background: var(--yellow);
}

.browser-bar > span:nth-child(3) {
  background: var(--green);
}

.browser-bar small {
  margin-inline-start: auto;
  color: var(--muted);
  font-family: var(--font-latin);
  font-size: 0.54rem;
}

.browser-frame > img {
  width: 100%;
  height: 386px;
  object-fit: cover;
  object-position: top center;
}

.phone-frame {
  display: grid;
  min-height: 420px;
  place-items: start center;
  padding: 28px 20px 0;
  background: #0b0d12;
}

.phone-frame > img {
  width: 210px;
  height: 392px;
  border: 5px solid #1c211a;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  object-fit: cover;
  object-position: top center;
}

.social-stat {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  min-width: 100px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--black);
  text-align: center;
}

.social-stat strong {
  color: var(--green);
  font-family: var(--font-latin) !important;
  font-size: 1.35rem;
}

.social-stat small {
  color: var(--muted);
  font-size: 0.6rem;
}

.proof-copy {
  padding: 28px;
}

.proof-label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: var(--font-latin);
  font-size: 0.62rem;
  font-weight: 850;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(186, 255, 55, 0.12);
}

.proof-copy h3 {
  margin: 0;
  font-family: var(--font-latin) !important;
  font-size: 1.45rem;
}

.proof-copy > p:not(.proof-label) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.proof-funnel {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1.25fr;
  align-items: center;
  margin-top: 32px;
  border-block: 1px solid var(--line-soft);
}

.proof-funnel > span {
  display: flex;
  min-height: 76px;
  gap: 14px;
  align-items: center;
}

.proof-funnel small {
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 0.62rem;
}

.proof-funnel strong {
  font-size: 0.78rem;
}

.proof-funnel > i {
  color: var(--green);
  font-family: var(--font-latin);
  font-style: normal;
  text-align: center;
}

.video-section {
  padding-block: 110px;
  border-block: 1px solid var(--green);
  background: var(--panel-strong);
}

.video-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 68px;
  align-items: center;
}

.video-copy h2 {
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.22;
}

html[dir="rtl"] .video-copy h2 {
  line-height: 1.42;
}

.video-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.video-points {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.video-points li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 0.76rem;
}

.video-points li::before {
  margin-inline-end: 10px;
  color: var(--green);
  content: "✓";
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
}

.video-poster {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--black);
  cursor: pointer;
}

.video-poster::after {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 4, 0.18);
  content: "";
  transition: background-color 180ms ease;
}

.video-poster:hover::after,
.video-poster:focus-visible::after {
  background: rgba(5, 7, 4, 0.04);
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-latin);
  font-size: 1.15rem;
  text-indent: 3px;
  transition: background-color 150ms ease, transform 150ms ease;
}

.video-poster:hover .play-button,
.video-poster:focus-visible .play-button {
  background: var(--yellow);
  transform: scale(1.06);
}

.video-badge {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 850;
}

.video-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.community-section {
  display: grid;
  min-height: 620px;
  grid-template-columns: 0.38fr 0.62fr;
  padding: 0;
  overflow: hidden;
  background: var(--green);
  color: var(--black);
}

.community-portrait {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--black);
}

.community-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(1) contrast(1.1);
}

.community-content {
  width: min(100%, 760px);
  margin: 0;
  padding: 100px 68px;
  align-self: center;
}

.community-content .eyebrow {
  color: var(--black);
}

.community-content h2 {
  max-width: 720px;
  margin: 0;
  font-size: 3.45rem;
  line-height: 1.18;
}

html[dir="rtl"] .community-content h2 {
  line-height: 1.4;
}

.community-content > p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(5, 7, 4, 0.72);
}

.community-section .button-primary {
  border-color: var(--black);
  background: var(--black);
  color: var(--green);
}

.community-section .button-primary:hover,
.community-section .button-primary:focus-visible {
  color: var(--yellow);
}

.community-section .button-secondary {
  border-color: rgba(5, 7, 4, 0.3);
  background: transparent;
  color: var(--black);
}

.community-section .button-secondary:hover,
.community-section .button-secondary:focus-visible {
  border-color: var(--black);
  color: var(--black);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line-soft);
}

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

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 760;
  list-style: none;
}

html[dir="rtl"] .faq-list summary {
  padding: 24px 0 24px 44px;
}

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

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 0;
  color: var(--green);
  content: "+";
  font-family: var(--font-latin);
  font-size: 1.2rem;
}

html[dir="rtl"] .faq-list summary::after {
  right: auto;
  left: 0;
}

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

.faq-list details p {
  max-width: 700px;
  margin: -6px 0 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  padding-block: 52px 40px;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 38px;
  align-items: end;
}

.footer-grid > div strong {
  color: var(--green);
  font-family: var(--font-latin) !important;
  font-size: 1.4rem;
}

.footer-grid > div p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.footer-grid nav {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible {
  color: var(--green);
}

.footer-grid > span {
  color: var(--muted-dark);
  font-family: var(--font-latin);
  font-size: 0.58rem;
}

.mobile-actions {
  display: none;
}

@keyframes mobileDockEnter {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileJoinPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(174, 219, 98, 0), 0 8px 22px rgba(0, 0, 0, 0.28);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(174, 219, 98, 0.15), 0 10px 28px rgba(174, 219, 98, 0.22);
  }
}

@keyframes mobilePlayPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@keyframes mobileCtaSweep {
  0%, 58% {
    opacity: 0;
    background-position: 170% 0;
  }
  62% { opacity: 1; }
  82%, 100% {
    opacity: 0;
    background-position: -70% 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 15px;
    font-size: 0.66rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  html[dir="rtl"] .hero h1 {
    font-size: 3.55rem;
  }

  .customer-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .customer-flow li:nth-child(3) {
    border-inline-end: 0;
  }

  .customer-flow li:nth-child(n + 4) {
    border-top: 1px solid var(--line-soft);
  }

  .community-section {
    grid-template-columns: 0.44fr 0.56fr;
  }

  .community-content {
    padding-inline: 46px;
  }

  .community-content h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 840px) {
  .page-shell {
    padding-inline: 22px;
  }

  .site-header {
    padding-inline: 22px;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-community {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: calc(var(--header-height) + 58px);
  }

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

  .hero-stage {
    height: 440px;
    min-height: 0;
  }

  .section {
    padding-block: 94px;
  }

  .section-heading h2 {
    font-size: 2.55rem;
  }

  .visual-intro {
    padding-block: 52px 60px;
  }

  .visual-intro-heading {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 24px;
  }

  .visual-intro-heading h2 {
    font-size: 2rem;
  }

  .visual-intro-flow {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .visual-intro-flow > i {
    display: none;
  }

  .visual-intro-flow article {
    position: relative;
    grid-template-columns: 108px 1fr;
    grid-template-rows: auto auto auto;
    gap: 3px 14px;
    padding: 10px;
    border: 1px solid rgba(21, 26, 19, 0.13);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.56);
  }

  .visual-intro-flow img {
    grid-row: 1 / 4;
    width: 108px;
    height: 108px;
    aspect-ratio: 1;
    box-shadow: none;
  }

  .visual-intro-flow article > span {
    margin-top: 7px;
  }

  .visual-intro-flow small {
    line-height: 1.55;
  }

  .zero-story,
  .translation-block,
  .analogy,
  .roles,
  .requirements,
  .video-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .story-bridge {
    min-height: 80px;
    flex-direction: row;
    border: 0;
    border-block: 1px solid var(--line-soft);
  }

  .translation-block,
  .analogy,
  .roles,
  .video-layout,
  .faq-layout {
    gap: 44px;
  }

  .model-map {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .model-map article {
    min-height: auto;
  }

  .model-map article.is-highlighted {
    transform: none;
  }

  .model-map > i {
    transform: rotate(90deg);
  }

  html[dir="rtl"] .model-map > i {
    transform: rotate(90deg);
  }

  .model-number {
    margin-bottom: 34px;
  }

  .model-showcase {
    grid-template-columns: 1fr;
  }

  .ai-model-card {
    grid-template-rows: 1fr;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  }

  .model-visual {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .model-description {
    min-height: 0;
  }

  .resell-explainer {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .resell-heading {
    grid-row: auto;
  }

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

  .customer-flow li:nth-child(3) {
    border-inline-end: 1px solid var(--line-soft);
  }

  .customer-flow li:nth-child(even) {
    border-inline-end: 0;
  }

  .customer-flow li:nth-child(n + 3) {
    border-top: 1px solid var(--line-soft);
  }

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

  .term-decoder {
    grid-template-columns: 1fr;
  }

  .term-decoder article {
    min-height: auto;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .term-decoder article:last-child {
    border-bottom: 0;
  }

  .money-explainer {
    grid-template-columns: 1fr;
  }

  .opportunity-grid article {
    min-height: auto;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .opportunity-grid article:last-child {
    border-bottom: 0;
  }

  .opportunity-grid article > span {
    margin-bottom: 34px;
  }

  .truth-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .proof-funnel {
    grid-template-columns: 1fr;
    padding-block: 18px;
  }

  .proof-funnel > span {
    min-height: 58px;
  }

  .proof-funnel > i {
    justify-self: start;
    transform: rotate(90deg);
  }

  html[dir="rtl"] .proof-funnel > i {
    justify-self: end;
    transform: rotate(90deg);
  }

  .community-section {
    grid-template-columns: 0.42fr 0.58fr;
  }

  .community-content {
    padding: 70px 32px;
  }

  .faq-layout .section-heading {
    position: static;
  }
}

/* Spacing corrections after the light-layout audit. */
.zero-story {
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.world-example {
  padding: 34px 34px 38px;
}

.world-example .shop-visual,
.world-example .website-visual {
  width: 100%;
  max-width: none;
}

.translation-block {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 5vw, 76px);
  margin-top: 56px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(31, 43, 27, 0.06);
}

.translation-heading {
  min-width: 0;
  padding-inline-end: 8px;
}

.translation-heading h3 {
  max-width: 480px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.translation-list {
  min-width: 0;
}

.translation-list > div {
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 26px;
  padding: 22px 4px;
}

.hero-notes {
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.first-definition {
  border: 1px solid var(--line-soft);
  border-inline-start: 4px solid var(--green);
  border-radius: 6px;
  box-shadow: 0 16px 44px rgba(31, 43, 27, 0.06);
}

.analogy,
.resell-explainer {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
}

.analogy {
  margin-top: 72px;
}

.resell-explainer {
  margin-top: 72px;
}

@media (max-width: 840px) {
  .world-example {
    padding: 24px;
  }

  .story-bridge {
    margin-inline: 24px;
  }

  .translation-block {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 42px;
    padding: 28px 24px;
  }

  .translation-heading {
    padding-inline-end: 0;
  }

  .analogy,
  .resell-explainer {
    padding: 30px 26px;
  }
}

@media (max-width: 680px) {
  .zero-story {
    border-radius: 5px;
  }

  .world-example,
  .world-example.is-digital {
    padding: 18px;
  }

  .world-example.is-digital {
    padding-top: 26px;
  }

  .story-bridge {
    margin-inline: 18px;
  }

  .translation-block {
    margin-top: 34px;
    padding: 24px 18px;
  }

  .translation-list > div {
    grid-template-columns: minmax(92px, 0.46fr) minmax(0, 1fr);
    gap: 14px;
    padding-block: 17px;
  }

  .analogy,
  .resell-explainer {
    padding: 26px 20px;
  }
}

@media (max-width: 680px) {
  html[lang="ar"] .hero-grid {
    min-height: auto;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 34px;
  }

  html[lang="ar"] .hero h1,
  html[lang="ar"] .hero h1 > strong {
    max-width: 100%;
  }

  html[lang="ar"] .hero h1 {
    font-size: 2.2rem;
    line-height: 1.32;
  }

  html[lang="ar"] .hero h1 > span:first-child {
    margin-bottom: 6px;
    font-size: 0.72em;
    white-space: normal;
  }

  html[lang="ar"] .hero-lead {
    font-size: 1rem;
    line-height: 1.85;
  }

  html[lang="ar"] .hero-notes {
    display: none;
  }

  html[lang="ar"] .hero-stage {
    height: auto;
    min-height: 0;
    margin-top: 24px;
  }

  html[lang="ar"] .hero-stage canvas,
  html[lang="ar"] .hero-stage .scene-fallback,
  html[lang="ar"] .stage-caption {
    display: none !important;
  }

  html[lang="ar"] .mobile-hero-story {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  html[lang="ar"] .mobile-hero-story article {
    display: grid;
    min-height: 104px;
    grid-template-columns: 1fr;
    gap: 7px;
    align-items: center;
    justify-items: center;
    align-content: center;
    padding: 9px 6px;
    border: 1px solid rgba(174, 219, 98, 0.26);
    border-radius: 6px;
    background: #182016;
    text-align: center;
  }

  html[lang="ar"] .mobile-hero-story article:nth-child(2) {
    background: #aeda62;
    color: #182016;
  }

  html[lang="ar"] .mobile-hero-story article > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--green);
    font-family: var(--font-latin);
    font-size: 0.72rem;
    font-weight: 900;
  }

  html[lang="ar"] .mobile-hero-story article:nth-child(2) > span {
    color: #182016;
  }

  html[lang="ar"] .mobile-hero-story b {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  html[lang="ar"] .mobile-hero-story strong {
    display: none;
  }

  html[lang="ar"] .mobile-hero-story article:nth-child(2) strong {
    color: #182016;
  }

  html[lang="ar"] :is(
    .eyebrow,
    .section-index,
    .model-type,
    .service-package > span,
    .proof-label,
    .result-number small,
    .result-number span,
    .result-hit-visual figcaption,
    .footer-grid nav,
    .footer-grid > span
  ) {
    font-size: 0.8rem;
  }

  html[lang="ar"] :is(
    .platform-note,
    .model-map small,
    .resell-steps strong,
    .customer-flow strong,
    .opportunity-grid h3,
    .start-steps h3,
    .video-points li,
    .text-link,
    .faq-list summary
  ) {
    font-size: 1rem;
  }

  html[lang="ar"] :is(
    .visual-intro-flow small,
    .result-hit-copy > small,
    .faq-list details p,
    .community-content > p:not(.eyebrow)
  ) {
    font-size: 0.9rem;
  }
}

/* Darija storybook mode: one visual idea at a time, readable without effort. */
html[lang="ar"] body {
  font-size: 18px;
}

html[lang="ar"] .eyebrow,
html[lang="ar"] .section-index {
  font-size: 0.78rem;
}

html[lang="ar"] .hero-lead,
html[lang="ar"] .section-heading > p:last-child,
html[lang="ar"] .world-example > p:last-child,
html[lang="ar"] .first-definition > p:not(:first-child),
html[lang="ar"] .platform-note,
html[lang="ar"] .truth-note p,
html[lang="ar"] .community-content > p:not(.eyebrow),
html[lang="ar"] .faq-list details p {
  font-size: 1rem;
  line-height: 1.9;
}

html[lang="ar"] .hero-notes {
  font-size: 0.78rem;
}

html[lang="ar"] .visual-intro-flow strong {
  font-size: 1.25rem;
}

html[lang="ar"] .visual-intro-flow small {
  font-size: 0.92rem;
  line-height: 1.75;
}

html[lang="ar"] .world-example h3,
html[lang="ar"] .model-map h3,
html[lang="ar"] .model-card-content > h3,
html[lang="ar"] .proof-copy h3 {
  font-size: 1.65rem;
}

html[lang="ar"] .proof-copy h3 {
  overflow-wrap: anywhere;
}

html[lang="ar"] .proof-copy h3:dir(ltr) {
  font-size: clamp(1.05rem, 4vw, 1.45rem);
}

html[lang="ar"] .translation-block,
html[lang="ar"] .term-decoder,
html[lang="ar"] .analogy,
html[lang="ar"] .roles,
html[lang="ar"] .requirements,
html[lang="ar"] .model-visual-note,
html[lang="ar"] .example-disclaimer {
  display: none;
}

html[lang="ar"] .first-definition {
  margin-top: 48px;
  padding: 38px;
  text-align: center;
}

html[lang="ar"] .first-definition h3 {
  max-width: 860px;
  margin-inline: auto;
  font-size: 2.3rem;
}

html[lang="ar"] .first-definition .text-link {
  font-size: 0.95rem;
}

html[lang="ar"] .idea-section .section-heading > p:last-child,
html[lang="ar"] .models-section .section-heading > p:last-child,
html[lang="ar"] .opportunity-section .section-heading > p:last-child,
html[lang="ar"] .start-section .section-heading > p:last-child {
  display: none;
}

html[lang="ar"] .model-map {
  margin-top: 12px;
}

html[lang="ar"] .model-map article {
  min-height: 210px;
}

html[lang="ar"] .model-map small {
  font-size: 0.92rem;
}

html[lang="ar"] .model-description,
html[lang="ar"] .model-io,
html[lang="ar"] .service-package > p {
  display: none;
}

html[lang="ar"] .model-card-content {
  min-height: 210px;
  justify-content: center;
  gap: 10px;
}

html[lang="ar"] .model-type,
html[lang="ar"] .service-package > span {
  font-size: 0.76rem;
}

html[lang="ar"] .service-package {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
}

html[lang="ar"] .service-package > strong {
  font-size: 1.08rem;
}

html[lang="ar"] .resell-heading > p:last-child,
html[lang="ar"] .resell-steps p,
html[lang="ar"] .resell-note,
html[lang="ar"] .resell-explainer > .text-link {
  display: none;
}

html[lang="ar"] .resell-explainer {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
}

html[lang="ar"] .resell-heading {
  grid-row: auto;
}

html[lang="ar"] .resell-steps li {
  display: grid;
  min-height: 132px;
  align-content: center;
}

html[lang="ar"] .resell-steps li > span {
  margin-bottom: 14px;
  font-size: 0.78rem;
}

html[lang="ar"] .resell-steps strong {
  font-size: 1rem;
}

html[lang="ar"] .customer-flow p,
html[lang="ar"] .opportunity-grid p,
html[lang="ar"] .start-steps p,
html[lang="ar"] .proof-copy > p:not(.proof-label) {
  display: none;
}

html[lang="ar"] .customer-flow li {
  min-height: 180px;
  padding: 28px 22px;
}

html[lang="ar"] .customer-flow li > span,
html[lang="ar"] .opportunity-grid article > span {
  font-size: 0.8rem;
}

html[lang="ar"] .customer-flow strong,
html[lang="ar"] .opportunity-grid h3,
html[lang="ar"] .start-steps h3 {
  font-size: 1.15rem;
}

html[lang="ar"] .opportunity-grid article {
  min-height: 180px;
  display: grid;
  align-content: center;
}

html[lang="ar"] .money-heading > p:last-child {
  display: none;
}

html[lang="ar"] .money-heading h3 {
  font-size: 1.8rem;
}

html[lang="ar"] .money-example small {
  font-size: 0.72rem;
}

html[lang="ar"] .truth-note {
  margin-top: 36px;
}

html[lang="ar"] .start-steps li {
  min-height: 92px;
  align-items: center;
}

html[lang="ar"] .proof-label,
html[lang="ar"] .text-link,
html[lang="ar"] .video-points li {
  font-size: 0.9rem;
}

html[lang="ar"] .faq-list summary {
  font-size: 1.05rem;
}

@media (max-width: 840px) {
  html[lang="ar"] .resell-explainer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  html[lang="ar"] body {
    font-size: 17px;
  }

  html[lang="ar"] .hero-lead,
  html[lang="ar"] .section-heading > p:last-child,
  html[lang="ar"] .world-example > p:last-child,
  html[lang="ar"] .first-definition > p:not(:first-child),
  html[lang="ar"] .platform-note,
  html[lang="ar"] .truth-note p,
  html[lang="ar"] .community-content > p:not(.eyebrow),
  html[lang="ar"] .faq-list details p {
    font-size: 0.92rem;
  }

  html[lang="ar"] .hero-notes {
    font-size: 0.68rem;
  }

  html[lang="ar"] .visual-intro-flow strong {
    font-size: 1.05rem;
  }

  html[lang="ar"] .visual-intro-flow small {
    font-size: 0.8rem;
  }

  html[lang="ar"] .first-definition {
    padding: 28px 22px;
  }

  html[lang="ar"] .first-definition h3 {
    font-size: 1.55rem;
  }

  html[lang="ar"] .model-map article {
    min-height: 0;
  }

  html[lang="ar"] .model-map small {
    font-size: 0.82rem;
  }

  html[lang="ar"] .model-card-content {
    min-height: 180px;
  }

  html[lang="ar"] .resell-steps li {
    min-height: 88px;
    padding: 18px;
    border: 1px solid var(--line-soft);
  }

  html[lang="ar"] .customer-flow li,
  html[lang="ar"] .customer-flow li:nth-child(3),
  html[lang="ar"] .customer-flow li:nth-child(even) {
    min-height: 82px;
    padding: 18px;
    border: 1px solid var(--line-soft);
  }

  html[lang="ar"] .opportunity-grid article {
    min-height: 110px;
    padding: 22px;
  }

  html[lang="ar"] .start-steps li {
    min-height: 82px;
  }

  html[lang="ar"] .proof-copy {
    padding-block: 24px 28px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: calc(68px + env(safe-area-inset-top));
  }

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

  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .page-shell {
    padding-inline: 16px;
  }

  .site-header {
    top: 0;
    min-height: var(--header-height);
    grid-template-columns: 1fr auto;
    padding: calc(10px + env(safe-area-inset-top)) 16px 10px;
    border-bottom-color: rgba(186, 255, 55, 0.12);
    background: rgba(5, 7, 4, 0.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .identity strong {
    font-size: 1.05rem;
  }

  .identity span {
    margin-top: 4px;
    font-size: 0.5rem;
  }

  .header-actions {
    gap: 8px;
  }

  .language-toggle,
  .menu-toggle {
    min-height: 36px;
  }

  .language-toggle {
    min-width: 42px;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100vw;
    height: calc(100dvh - var(--header-height));
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    padding: 22px 20px calc(22px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(5, 7, 4, 0.99);
    font-size: 1.3rem;
    line-height: 1.2;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav > a,
  .site-nav .nav-community {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink);
    font-weight: 650;
  }

  .site-nav > a::after {
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--green);
    content: "↗";
    font-family: var(--font-latin);
    font-size: 0.72rem;
    transform: none;
  }

  .site-nav .nav-community {
    border-bottom: 0;
    color: var(--yellow);
  }

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

  .hero {
    min-height: calc(100svh - 90px);
  }

  .hero-grid {
    min-height: calc(100svh - 90px);
    gap: 0;
    align-content: start;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 48px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.61rem;
  }

  .hero h1,
  html[dir="rtl"] .hero h1 {
    font-size: 2.35rem;
    line-height: 1.18;
  }

  html[dir="rtl"] .hero h1 {
    line-height: 1.35;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 0.79rem;
    line-height: 1.8;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-top: 18px;
  }

  .button {
    min-height: 48px;
    gap: 14px;
    padding-inline: 14px;
    font-size: 0.69rem;
  }

  .button-primary {
    min-width: 0;
  }

  .hero-notes {
    gap: 6px 14px;
    margin-top: 15px;
    font-size: 0.58rem;
  }

  html[lang="en"] .hero-notes {
    display: none;
  }

  .hero-stage {
    height: 195px;
    min-height: 195px;
    margin-top: 4px;
  }

  .stage-caption {
    bottom: 0;
    gap: 8px;
    font-size: 0.56rem;
  }

  .scroll-cue {
    display: none;
  }

  .simple-strip .page-shell {
    min-height: 68px;
    grid-template-columns: 1fr;
    gap: 2px;
    align-content: center;
  }

  .simple-strip span {
    font-size: 0.55rem;
  }

  .simple-strip strong {
    font-size: 0.78rem;
  }

  .section {
    padding-block: 76px;
  }

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

  .section-heading h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  html[dir="rtl"] .section-heading h2 {
    line-height: 1.45;
  }

  .section-heading > p:last-child {
    margin-top: 14px;
    font-size: 0.79rem;
    line-height: 1.85;
  }

  .zero-story {
    border-block: 0;
  }

  .world-example {
    padding-block: 0 32px;
  }

  .world-example.is-digital {
    padding-top: 32px;
  }

  .world-example h3 {
    margin-top: 18px;
    font-size: 1.25rem;
  }

  .world-example > p:last-child {
    font-size: 0.76rem;
  }

  .shop-visual,
  .website-visual {
    height: 205px;
  }

  .shop-visual::before {
    height: 120px;
  }

  .shop-visual::after {
    bottom: 138px;
  }

  .shop-sign {
    top: 65px;
  }

  .story-bridge {
    min-height: 64px;
  }

  .translation-block {
    padding-top: 58px;
  }

  .translation-heading h3 {
    font-size: 1.5rem;
  }

  .translation-list > div {
    grid-template-columns: 0.44fr 1fr;
    gap: 14px;
    padding-block: 16px;
  }

  .translation-list dt,
  .translation-list dd span {
    font-size: 0.66rem;
  }

  .translation-list dd strong {
    font-size: 0.8rem;
  }

  .first-definition {
    margin-top: 52px;
    padding: 26px 22px;
  }

  .first-definition h3 {
    font-size: 1.45rem;
  }

  .first-definition > p:not(:first-child) {
    font-size: 0.75rem;
  }

  .model-map article {
    padding: 24px;
  }

  .term-decoder {
    margin-bottom: 52px;
  }

  .term-decoder article {
    padding: 22px 0;
  }

  .term-decoder article > span {
    margin-bottom: 20px;
    font-size: 1.05rem;
  }

  .term-decoder h3 {
    font-size: 1rem;
  }

  .term-decoder p {
    font-size: 0.7rem;
  }

  .platform-note {
    display: grid;
    gap: 15px;
    padding: 18px;
    font-size: 0.68rem;
  }

  .platform-note a {
    justify-content: space-between;
  }

  .analogy {
    margin-top: 70px;
    padding-top: 46px;
  }

  .analogy-copy h3,
  .roles-intro h3 {
    font-size: 1.65rem;
  }

  .analogy-copy > p:last-child,
  .roles-intro > p:last-child {
    font-size: 0.77rem;
  }

  .analogy-list > div {
    min-height: 55px;
  }

  .analogy-list dt,
  .analogy-list dd {
    font-size: 0.7rem;
  }

  .model-principle {
    grid-template-columns: 1fr;
    margin-bottom: 38px;
  }

  .model-principle > div {
    min-height: 105px;
    padding: 20px;
  }

  .model-principle > i,
  html[dir="rtl"] .model-principle > i {
    min-height: 38px;
    transform: rotate(90deg);
  }

  .model-principle > p {
    padding: 13px 20px;
    font-size: 0.67rem;
  }

  .ai-model-card {
    grid-template-columns: 1fr;
  }

  .model-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .model-card-content {
    padding: 23px 20px 21px;
  }

  .model-description {
    font-size: 0.73rem;
  }

  .model-io {
    margin-top: 19px;
  }

  .model-visual-note {
    font-size: 0.59rem;
  }

  .resell-explainer {
    margin-top: 66px;
    padding-top: 44px;
  }

  .resell-heading h3 {
    font-size: 1.65rem;
  }

  .resell-heading > p:last-child {
    font-size: 0.75rem;
  }

  .resell-steps {
    grid-template-columns: 1fr;
  }

  .resell-steps li,
  .resell-steps li:nth-child(even) {
    min-height: 0;
    padding: 20px 0;
    border-inline-end: 0;
  }

  .resell-steps li > span {
    margin-bottom: 15px;
  }

  .resell-note {
    font-size: 0.68rem;
  }

  .customer-flow {
    grid-template-columns: 1fr;
  }

  .customer-flow li,
  .customer-flow li:nth-child(3),
  .customer-flow li:nth-child(even) {
    display: grid;
    min-height: auto;
    grid-template-columns: 42px 1fr;
    gap: 0 12px;
    padding: 20px 0;
    border-inline-end: 0;
    border-top: 1px solid var(--line-soft);
  }

  .customer-flow li:first-child {
    border-top: 0;
  }

  .customer-flow li > span {
    grid-row: 1 / 3;
    margin-bottom: 0;
  }

  .customer-flow p {
    font-size: 0.69rem;
  }

  .roles {
    margin-top: 70px;
  }

  .role-panel {
    min-height: 285px;
    padding: 24px 20px;
  }

  .role-panel li {
    font-size: 0.72rem;
  }

  .opportunity-grid article {
    padding: 25px 0;
  }

  .opportunity-grid article > span {
    margin-bottom: 20px;
  }

  .opportunity-grid p {
    font-size: 0.74rem;
  }

  .truth-note {
    margin-top: 42px;
    padding: 24px 20px;
  }

  .money-explainer {
    gap: 28px;
    margin-top: 48px;
    padding: 24px 18px;
  }

  .money-heading h3 {
    font-size: 1.4rem;
  }

  .money-heading > p:last-child {
    font-size: 0.7rem;
  }

  .money-example {
    gap: 6px;
  }

  .money-example > span {
    min-height: 94px;
    padding-inline: 4px;
  }

  .money-example small {
    font-size: 0.5rem;
  }

  .money-example strong {
    font-size: 1.2rem;
  }

  .example-disclaimer {
    font-size: 0.6rem;
  }

  .truth-note p {
    font-size: 0.73rem;
  }

  .start-steps::before {
    left: 25px;
  }

  html[dir="rtl"] .start-steps::before {
    right: 25px;
  }

  .start-steps li {
    min-height: 112px;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding-block: 20px;
  }

  .start-steps li > span {
    width: 52px;
    height: 40px;
  }

  .start-steps h3 {
    font-size: 1rem;
  }

  .start-steps p {
    font-size: 0.69rem;
  }

  .requirements {
    gap: 32px;
    margin-top: 62px;
    padding: 26px 20px;
  }

  .requirements h3 {
    font-size: 1.55rem;
  }

  .requirements li {
    font-size: 0.7rem;
  }

  .browser-frame {
    min-height: 245px;
  }

  .browser-frame > img {
    height: 245px;
  }

  .phone-frame {
    min-height: 380px;
    padding-top: 20px;
  }

  .phone-frame > img {
    width: 185px;
    height: 360px;
  }

  .social-stat {
    right: 15px;
    bottom: 18px;
    min-width: 88px;
  }

  .proof-copy {
    padding: 23px 20px;
  }

  .proof-copy h3 {
    font-size: 1.15rem;
  }

  .proof-copy > p:not(.proof-label) {
    font-size: 0.72rem;
  }

  .video-section {
    padding-block: 76px;
  }

  .video-layout {
    display: flex;
    flex-direction: column-reverse;
  }

  .video-copy h2 {
    font-size: 2rem;
  }

  .video-copy > p:not(.eyebrow),
  .video-points li {
    font-size: 0.73rem;
  }

  .play-button {
    width: 58px;
    height: 58px;
  }

  .community-section {
    display: block;
    min-height: 0;
  }

  .community-portrait {
    height: 330px;
    min-height: 0;
  }

  .community-portrait img {
    object-position: center 30%;
  }

  .community-content {
    width: 100%;
    padding: 54px 16px 64px;
  }

  .community-content h2 {
    font-size: 2.1rem;
  }

  .community-content > p:not(.eyebrow) {
    font-size: 0.77rem;
  }

  .community-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    font-size: 0.82rem;
  }

  .faq-list details p {
    font-size: 0.72rem;
  }

  .site-footer {
    padding-block: 44px 34px;
  }

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

  .footer-grid nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 140;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(82px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(174, 219, 98, 0.42);
    background: rgba(8, 12, 7, 0.98);
    box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.42);
    animation: mobileDockEnter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .mobile-actions a {
    position: relative;
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    background: #121911;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 850;
  }

  .mobile-watch-cta > span:first-child {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    border: 1px solid rgba(174, 219, 98, 0.45);
    border-radius: 50%;
    color: var(--green);
    font-size: 0.66rem;
    animation: mobilePlayPulse 1.8s ease-in-out infinite;
  }

  .mobile-actions .mobile-join-cta {
    justify-content: space-between;
    padding-inline: 16px;
    border-color: var(--green);
    background: var(--green);
    color: var(--black);
    font-size: 0.86rem;
    animation: mobileJoinPulse 2.2s ease-in-out infinite;
  }

  .mobile-join-cta::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.34) 48%, transparent 58%);
    background-position: 170% 0;
    background-size: 230% 100%;
    content: "";
    pointer-events: none;
    animation: mobileCtaSweep 3.1s ease-in-out infinite;
  }

  .mobile-join-cta > span {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 360px) {
  .hero h1 > span:first-child {
    font-size: 0.9em;
  }

  .hero h1,
  html[dir="rtl"] .hero h1 {
    font-size: 2.05rem;
  }

  .hero-lead {
    font-size: 0.73rem;
  }

  .hero-notes span:nth-child(2) {
    display: none;
  }

  .hero-stage {
    height: 195px;
    min-height: 195px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .section-heading h2 {
    font-size: 1.75rem;
  }

  .translation-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .phone-frame {
    min-height: 350px;
  }

  .phone-frame > img {
    height: 330px;
  }
}

@media (max-width: 680px) and (max-height: 700px) {
  .hero-grid {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 28px;
  }

  .hero h1,
  html[dir="rtl"] .hero h1 {
    font-size: 1.92rem;
  }

  .hero-lead {
    margin-top: 9px;
    line-height: 1.7;
  }

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

  .hero-notes {
    display: none;
  }

  .hero-stage {
    height: 150px;
    min-height: 150px;
  }

  .stage-caption {
    display: none;
  }
}

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

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

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

/* Long-form reading uses light surfaces; dark Vega moments are reserved for emphasis. */
:is(
  .basics-section,
  .idea-section,
  .models-section,
  .system-section,
  .opportunity-section,
  .start-section,
  .proof-section,
  .faq-section
) {
  --ink: #182016;
  --muted: #5f695a;
  --muted-dark: #7c8776;
  --line: rgba(77, 105, 48, 0.28);
  --line-soft: rgba(24, 32, 22, 0.13);
  --panel: #ffffff;
  --panel-strong: #e4eadf;
  --black: #182016;
  --black-soft: #edf0e9;
  --green: #a8d85a;
  --yellow: #a97713;
  color: var(--ink);
}

.basics-section,
.models-section,
.opportunity-section,
.proof-section {
  background: #f5f3eb;
}

.idea-section,
.system-section,
.start-section,
.faq-section {
  background: #e9eee5;
}

:is(
  .basics-section,
  .idea-section,
  .models-section,
  .system-section,
  .opportunity-section,
  .start-section,
  .proof-section,
  .faq-section
) .eyebrow {
  color: #668b35;
}

:is(
  .basics-section,
  .idea-section,
  .models-section,
  .system-section,
  .opportunity-section,
  .start-section,
  .proof-section,
  .faq-section
) .section-index {
  color: #7c651d;
}

:is(.shop-visual, .website-visual) {
  border-color: rgba(24, 32, 22, 0.16);
  background: #dde4d7;
}

.shop-visual {
  background: #dfe7d9;
}

.translation-block,
.analogy,
.roles,
.requirements,
.money-explainer,
.resell-explainer {
  border-color: rgba(24, 32, 22, 0.14);
  box-shadow: 0 18px 50px rgba(31, 43, 27, 0.07);
}

.translation-block,
.analogy,
.requirements,
.money-explainer {
  background: rgba(255, 255, 255, 0.72);
}

.term-decoder,
.customer-flow,
.opportunity-grid,
.proof-funnel {
  border-color: rgba(24, 32, 22, 0.15);
  background: rgba(255, 255, 255, 0.5);
}

.term-decoder article,
.customer-flow li,
.opportunity-grid article,
.proof-funnel > span {
  border-color: rgba(24, 32, 22, 0.13);
}

.model-map article,
.ai-model-card,
.proof-card {
  border-color: rgba(24, 32, 22, 0.15);
  box-shadow: 0 16px 44px rgba(31, 43, 27, 0.08);
}

.model-principle {
  border-color: rgba(24, 32, 22, 0.15);
  background: #dde5d7;
}

.model-principle .is-customer-facing,
.model-map article.is-highlighted,
.money-example .money-result {
  background: #a8d85a;
  color: #182016;
}

.ai-model-card:nth-child(2),
.ai-model-card:nth-child(3) {
  background: #ffffff;
}

.model-card-content,
.proof-copy {
  background: #ffffff;
}

.service-package {
  border-color: rgba(76, 111, 41, 0.22);
  background: #edf3e8;
}

.resell-steps li:nth-child(even),
.role-switcher,
.start-steps li > span {
  background: #e4eadf;
}

.resell-note,
.truth-note {
  border-color: rgba(169, 119, 19, 0.35);
  background: #f6edcf;
}

.money-example > span {
  background: #182016;
  color: #f5f3eb;
}

.proof-section .text-link,
.models-section .text-link,
.start-section .text-link {
  color: #4e7623;
}

.faq-list summary::after {
  color: #5d842d;
}

.video-section {
  background: #1a2118;
}

.community-section {
  background: #b3dc70;
}

@media (max-width: 840px) {
  :is(
    .basics-section,
    .idea-section,
    .models-section,
    .system-section,
    .opportunity-section,
    .start-section,
    .proof-section,
    .faq-section
  ) {
    padding-block: 72px;
  }

  .translation-block,
  .analogy,
  .roles,
  .requirements,
  .money-explainer,
  .resell-explainer {
    box-shadow: 0 12px 32px rgba(31, 43, 27, 0.06);
  }
}

@media (max-width: 360px) and (max-height: 700px) {
  html[lang="ar"] .hero-grid {
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 22px;
  }

  html[lang="ar"] .hero h1 {
    font-size: 1.8rem;
  }

  html[lang="ar"] .hero-lead,
  html[lang="ar"] .hero-actions .button-secondary {
    display: none;
  }

  html[lang="ar"] .hero-actions {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  html[lang="ar"] .hero-stage {
    margin-top: 9px;
  }

  html[lang="ar"] .mobile-hero-story {
    gap: 5px;
  }

  html[lang="ar"] .mobile-hero-story article {
    min-height: 86px;
    grid-template-columns: 1fr;
    padding: 6px 4px;
  }

  html[lang="ar"] .mobile-hero-story article > span {
    width: 30px;
    height: 30px;
    font-size: 0.66rem;
  }

  html[lang="ar"] .mobile-hero-story b {
    font-size: 0.75rem;
  }

  html[lang="ar"] .mobile-hero-story strong {
    display: none;
  }
}

/* Final opportunity-first hero release. This block intentionally wins the legacy responsive layers above. */
.hero-proof-card {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(174, 219, 98, 0.46);
  border-radius: 6px;
  background: #10150f;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.46);
  transition: border-color 180ms ease, transform 260ms ease;
}

.mobile-hero-story:hover .hero-proof-card,
.mobile-hero-story:focus-visible .hero-proof-card {
  border-color: rgba(194, 233, 135, 0.86);
}

.hero-proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-proof-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 11px 13px;
  background: rgba(8, 12, 7, 0.92);
}

.hero-proof-card > div strong,
.hero-proof-card > div b,
.hero-proof-card > span,
.hero-proof-card > small,
.hero-proof-card > mark {
  font-family: var(--font-latin);
}

.hero-proof-card > div strong {
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 900;
}

.hero-proof-card > div b {
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.35;
}

html[lang="ar"] .hero-proof-card > div b {
  font-family: var(--font-arabic);
}

.hero-proof-card > span {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(174, 219, 98, 0.65);
  border-radius: 3px;
  background: rgba(8, 12, 7, 0.9);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.hero-proof-traffic img {
  object-position: center 12%;
}

.hero-proof-store img {
  object-position: top center;
}

.hero-proof-store > span {
  right: auto;
  left: 12px;
  color: var(--yellow);
}

.hero-proof-sale {
  border-color: var(--green);
}

.hero-proof-sale > small {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
}

.hero-proof-sale > mark {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 7px;
  border-radius: 3px;
  background: var(--green);
  color: var(--black);
  font-size: 0.55rem;
  font-weight: 900;
}

.hero-proof-sale > div {
  padding: 10px 14px;
}

.mobile-hero-story > p {
  position: absolute;
  z-index: 6;
  right: 50%;
  bottom: 0;
  display: flex;
  width: max-content;
  gap: 9px;
  align-items: center;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(174, 219, 98, 0.38);
  border-radius: 4px;
  background: rgba(8, 12, 7, 0.94);
  color: #d5dacd;
  font-size: 0.7rem;
  font-weight: 800;
  transform: translateX(50%);
}

.mobile-hero-story > p i {
  color: var(--green);
  font-family: var(--font-latin);
  font-style: normal;
}

html[dir="rtl"] .mobile-hero-story > p i {
  transform: rotate(180deg);
}

.hero-proof-traffic {
  animation: heroProofTrafficIn 720ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-proof-store {
  animation: heroProofStoreIn 780ms 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-proof-sale {
  animation: heroProofSaleIn 760ms 340ms cubic-bezier(0.22, 1, 0.36, 1) both,
    heroSalePulse 3.4s 1.2s ease-in-out infinite;
}

@keyframes heroProofTrafficIn {
  from { opacity: 0; transform: translate(-28px, 24px) rotate(-8deg) translateZ(38px); }
  to { opacity: 1; transform: rotate(-3.5deg) translateZ(38px); }
}

@keyframes heroProofStoreIn {
  from { opacity: 0; transform: translateY(34px) rotate(4deg); }
  to { opacity: 1; transform: rotate(1.4deg); }
}

@keyframes heroProofSaleIn {
  from { opacity: 0; transform: translate(28px, 30px) rotate(8deg) translateZ(64px); }
  to { opacity: 1; transform: rotate(3deg) translateZ(64px); }
}

@keyframes heroSalePulse {
  0%, 100% { box-shadow: 0 24px 68px rgba(0, 0, 0, 0.46); }
  50% { box-shadow: 0 22px 58px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(174, 219, 98, 0.13); }
}

.mobile-hero-story .hero-proof-sale > span {
  position: absolute;
  top: 48px;
  right: 18px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  direction: ltr;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.simple-strip {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  gap: clamp(28px, 5vw, 74px);
}

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

.hero h1 {
  font-size: clamp(3.4rem, 5.5vw, 5.5rem);
}

html[dir="rtl"] .hero h1 {
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1.12;
}

.hero h1 > span:first-child {
  margin-bottom: 12px;
  font-size: 0.58em;
}

.hero-lead,
html[lang="ar"] .hero-lead,
html[lang="en"] .hero-lead {
  max-width: 650px;
  color: #d5dacd;
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.85;
}

.hero-stage {
  height: min(68vh, 610px);
  min-height: 500px;
  perspective: 1100px;
}

.hero-stage canvas {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.hero-stage .stage-caption {
  display: none;
}

.mobile-hero-story,
html[lang="ar"] .mobile-hero-story,
html[lang="en"] .mobile-hero-story {
  position: absolute;
  z-index: 3;
  inset: 4% 0 2%;
  display: block;
  color: var(--ink);
  perspective: 1000px;
}

.mobile-hero-story .hero-proof-card {
  position: absolute;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  text-align: start;
}

.mobile-hero-story .hero-proof-traffic {
  top: 5%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 39%;
  height: 46%;
  transform: rotate(-3.5deg) translateZ(38px);
}

.mobile-hero-story .hero-proof-store {
  top: 18%;
  right: 8%;
  bottom: auto;
  left: auto;
  width: 76%;
  height: 57%;
  transform: rotate(1.4deg);
}

.mobile-hero-story .hero-proof-sale {
  top: auto;
  right: 0;
  bottom: 5%;
  left: auto;
  width: 44%;
  height: 31%;
  padding: 18px;
  transform: rotate(3deg) translateZ(64px);
}

.mobile-hero-story .hero-proof-card > span {
  display: block;
  width: auto;
  height: auto;
  color: var(--green);
  font-size: 0.72rem;
}

.mobile-hero-story .hero-proof-card > div > strong {
  display: block;
}

@media (max-width: 840px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-grid,
  html[lang="ar"] .hero-grid,
  html[lang="en"] .hero-grid {
    min-height: 0;
    gap: 0;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 24px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .hero h1,
  html[dir="rtl"] .hero h1,
  html[lang="ar"] .hero h1,
  html[lang="en"] .hero h1 {
    font-size: 2.35rem;
    line-height: 1.2;
  }

  .hero h1 > span:first-child,
  html[lang="ar"] .hero h1 > span:first-child,
  html[lang="en"] .hero h1 > span:first-child {
    margin-bottom: 5px;
    font-size: 0.62em;
    white-space: normal;
  }

  .hero-lead,
  html[lang="ar"] .hero-lead,
  html[lang="en"] .hero-lead {
    display: block;
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions,
  html[lang="ar"] .hero-actions,
  html[lang="en"] .hero-actions {
    grid-template-columns: 1fr 1fr;
    margin-top: 15px;
  }

  .hero-actions .button {
    min-height: 52px;
    font-size: 0.78rem;
  }

  .hero-notes,
  html[lang="ar"] .hero-notes,
  html[lang="en"] .hero-notes {
    display: none;
  }

  .hero-stage,
  html[lang="ar"] .hero-stage,
  html[lang="en"] .hero-stage {
    width: 100%;
    height: 230px;
    min-height: 230px;
    margin-top: 15px;
  }

  .hero-stage canvas,
  html[lang="ar"] .hero-stage canvas,
  html[lang="en"] .hero-stage canvas {
    display: block !important;
    opacity: 0.08;
  }

  .mobile-hero-story,
  html[lang="ar"] .mobile-hero-story,
  html[lang="en"] .mobile-hero-story {
    inset: 0;
  }

  .mobile-hero-story .hero-proof-traffic {
    top: 4px;
    left: 0;
    width: 37%;
    height: 126px;
  }

  .mobile-hero-story .hero-proof-store {
    top: 18px;
    right: 13%;
    width: 70%;
    height: 165px;
  }

  .mobile-hero-story .hero-proof-sale {
    right: 2%;
    bottom: 18px;
    width: 40%;
    height: 112px;
    padding: 12px;
  }

  .mobile-hero-story .hero-proof-sale > span {
    top: 38px;
    right: 10px;
    font-size: 1.5rem;
  }

  .mobile-hero-story .hero-proof-card > span {
    font-size: 0.58rem;
  }

  .mobile-hero-story .hero-proof-card > div > strong {
    display: block;
  }
}

@media (max-width: 360px) and (max-height: 700px) {
  .hero-grid,
  html[lang="ar"] .hero-grid,
  html[lang="en"] .hero-grid {
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 13px;
  }

  .hero .eyebrow {
    margin-bottom: 6px;
    font-size: 0.62rem;
  }

  .hero h1,
  html[dir="rtl"] .hero h1,
  html[lang="ar"] .hero h1,
  html[lang="en"] .hero h1 {
    font-size: 1.9rem;
  }

  .hero-lead,
  html[lang="ar"] .hero-lead,
  html[lang="en"] .hero-lead {
    display: none;
  }

  .hero-actions,
  html[lang="ar"] .hero-actions,
  html[lang="en"] .hero-actions {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .hero-actions .button-secondary,
  html[lang="ar"] .hero-actions .button-secondary,
  html[lang="en"] .hero-actions .button-secondary {
    display: none;
  }

  .hero-stage,
  html[lang="ar"] .hero-stage,
  html[lang="en"] .hero-stage {
    height: 175px;
    min-height: 175px;
    margin-top: 8px;
  }

  .mobile-hero-story .hero-proof-traffic {
    height: 98px;
  }

  .mobile-hero-story .hero-proof-store {
    top: 12px;
    height: 126px;
  }

  .mobile-hero-story .hero-proof-sale {
    bottom: 14px;
    height: 88px;
  }

  .mobile-hero-story .hero-proof-sale > span {
    top: 32px;
    font-size: 1.22rem;
  }
}

@media (min-width: 841px) and (max-width: 1100px) {
  .hero-grid {
    min-height: calc(100svh - 40px);
    gap: 28px;
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 26px;
  }

  .hero-stage {
    height: 440px;
    min-height: 440px;
  }

  html[dir="rtl"] .hero h1 {
    font-size: 3.45rem;
  }

  .hero-lead,
  html[lang="ar"] .hero-lead,
  html[lang="en"] .hero-lead {
    margin-top: 16px;
    font-size: 0.95rem;
  }

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

  .hero-notes {
    margin-top: 14px;
  }
}

@media (min-width: 341px) and (max-width: 375px) and (min-height: 701px) {
  .hero-grid,
  html[lang="ar"] .hero-grid,
  html[lang="en"] .hero-grid {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 18px;
  }

  .hero h1,
  html[dir="rtl"] .hero h1,
  html[lang="ar"] .hero h1,
  html[lang="en"] .hero h1 {
    font-size: 2.15rem;
  }

  .hero-lead,
  html[lang="ar"] .hero-lead,
  html[lang="en"] .hero-lead {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .hero-stage,
  html[lang="ar"] .hero-stage,
  html[lang="en"] .hero-stage {
    height: 208px;
    min-height: 208px;
    margin-top: 10px;
  }

  .mobile-hero-story .hero-proof-traffic {
    height: 114px;
  }

  .mobile-hero-story .hero-proof-store {
    height: 150px;
  }

  .mobile-hero-story .hero-proof-sale {
    height: 104px;
  }
}

/* 2026-07-18: persistent launch conversion path */
.site-nav .nav-launch {
  color: var(--green);
  font-weight: 850;
}

.site-nav .nav-launch::after {
  background: var(--yellow);
}

.launch-promise-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto 22px;
  gap: 18px;
  align-items: center;
  padding: 19px max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  border-block: 1px solid rgba(16, 20, 15, 0.2);
  background: var(--yellow);
  color: var(--black);
}

.launch-promise-strip > span,
.launch-promise-strip > small {
  font-size: 0.72rem;
  font-weight: 800;
}

.launch-promise-strip > span {
  text-transform: uppercase;
}

.launch-promise-strip > strong {
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.launch-promise-strip > small {
  opacity: 0.72;
}

.launch-promise-strip > i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--green);
  font-style: normal;
  animation: launchArrow 1.5s ease-in-out infinite;
}

@keyframes launchArrow {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

.launch-section {
  padding-block: clamp(72px, 9vw, 126px);
  background: #eef3e7;
  color: #11160f;
}

.launch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}

.launch-copy .eyebrow {
  color: #46523d;
}

.launch-copy .eyebrow > span:first-child {
  background: #6b8d35;
}

.launch-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.45rem, 4.25vw, 4.4rem);
  line-height: 1.05;
}

html[dir="rtl"] .launch-copy h2 {
  line-height: 1.28;
}

.launch-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: #4c5845;
  font-size: 1rem;
  line-height: 1.85;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.launch-actions .button {
  min-height: 58px;
}

.launch-actions .button-primary {
  background: #151d12;
  color: var(--green);
}

.launch-actions .button-secondary {
  border-color: rgba(17, 22, 15, 0.28);
  background: transparent;
  color: #11160f;
}

.launch-actions .button-secondary:hover,
.launch-actions .button-secondary:focus-visible {
  border-color: #11160f;
  background: #dce7cf;
  color: #11160f;
}

.launch-contact-note {
  display: block;
  margin-top: 16px;
  color: #56634e;
  font-size: 0.78rem;
  font-weight: 700;
}

.launch-visual {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(260px, 1.3fr);
  min-height: 430px;
  border: 1px solid rgba(17, 22, 15, 0.2);
  background: #dce7cf;
}

.launch-pass {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
  border-inline-end: 1px solid rgba(174, 219, 98, 0.38);
  background: #11160f;
  color: #f5f3e9;
}

.launch-pass small,
.launch-pass b,
.launch-pass span {
  font-family: var(--font-latin);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0;
}

.launch-pass small,
.launch-pass b {
  color: #a8b29f;
}

.launch-pass strong {
  color: var(--green);
  font-family: var(--font-latin) !important;
  font-size: clamp(4.6rem, 7vw, 7.8rem);
  line-height: 0.85;
}

.launch-pass span {
  width: fit-content;
  padding: 7px 9px;
  background: var(--yellow);
  color: var(--black);
}

.launch-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-steps li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(17, 22, 15, 0.14);
}

.launch-steps li:last-child {
  border-bottom: 0;
}

.launch-steps li > span {
  color: #728168;
  font-family: var(--font-latin);
  font-size: 0.7rem;
  font-weight: 800;
}

.launch-steps li > div {
  display: grid;
  gap: 4px;
}

.launch-steps strong {
  font-size: 1.02rem;
}

.launch-steps small {
  color: #5d6a55;
  font-family: var(--font-latin);
  font-size: 0.68rem;
}

.launch-steps li > b {
  padding: 5px 7px;
  border: 1px solid rgba(17, 22, 15, 0.22);
  font-family: var(--font-latin);
  font-size: 0.58rem;
}

.launch-steps .is-unlocked {
  background: var(--green);
}

.launch-steps .is-unlocked > b {
  border-color: #11160f;
  background: #11160f;
  color: var(--green);
}

.launch-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 6vw, 78px);
  border-block: 1px solid rgba(17, 22, 15, 0.17);
}

.launch-benefits article {
  min-width: 0;
  padding: 30px clamp(20px, 3vw, 38px);
  border-inline-end: 1px solid rgba(17, 22, 15, 0.17);
}

.launch-benefits article:last-child {
  border-inline-end: 0;
}

.launch-benefits span {
  display: block;
  margin-bottom: 24px;
  color: #75836b;
  font-family: var(--font-latin);
  font-size: 0.7rem;
  font-weight: 800;
}

.launch-benefits strong {
  display: block;
  font-size: 1.18rem;
}

.launch-benefits p {
  margin: 10px 0 0;
  color: #53604c;
  font-size: 0.82rem;
  line-height: 1.8;
}

.desktop-actions {
  display: none;
}

@media (min-width: 681px) {
  body {
    padding-bottom: 82px;
  }

  .desktop-actions {
    position: fixed;
    z-index: 140;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    min-height: 82px;
    border-top: 2px solid var(--green);
    background: rgba(11, 15, 10, 0.97);
    box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.28);
  }

  .desktop-actions-inner {
    display: grid;
    width: min(calc(100% - 40px), 1180px);
    min-height: 80px;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    margin-inline: auto;
  }

  .desktop-actions-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .desktop-actions-copy small {
    color: var(--yellow);
    font-family: var(--font-latin);
    font-size: 0.62rem;
    font-weight: 800;
  }

  .desktop-actions-copy strong {
    overflow: hidden;
    font-size: clamp(0.88rem, 1.5vw, 1.08rem);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .desktop-actions a {
    display: flex;
    min-width: 160px;
    min-height: 54px;
    gap: 9px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid rgba(245, 243, 233, 0.2);
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 850;
  }

  .desktop-join-cta {
    border-color: var(--green) !important;
    background: var(--green);
    color: var(--black);
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .desktop-actions-inner {
    width: calc(100% - 24px);
    grid-template-columns: minmax(170px, 1fr) auto auto;
  }

  .desktop-actions a {
    min-width: 138px;
    padding-inline: 14px;
  }
}

@media (max-width: 980px) {
  .launch-layout {
    grid-template-columns: 1fr;
  }

  .launch-copy h2 {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .launch-promise-strip {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 4px 12px;
    padding: 16px;
  }

  .launch-promise-strip > span,
  .launch-promise-strip > small {
    grid-column: 1;
    font-size: 0.7rem;
  }

  .launch-promise-strip > strong {
    grid-column: 1;
    font-size: 1.05rem;
  }

  .launch-promise-strip > i {
    grid-row: 1 / 4;
    grid-column: 2;
  }

  .launch-section {
    padding-block: 68px;
  }

  .launch-layout {
    gap: 38px;
  }

  .launch-copy h2,
  html[dir="rtl"] .launch-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3.15rem);
  }

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

  .launch-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .launch-contact-note {
    font-size: 0.76rem;
  }

  .launch-visual {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .launch-pass {
    min-height: 250px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(174, 219, 98, 0.38);
  }

  .launch-pass strong {
    font-size: clamp(5rem, 27vw, 7rem);
  }

  .launch-steps li {
    min-height: 98px;
    padding: 18px;
  }

  .launch-steps strong {
    font-size: 1rem;
  }

  .launch-steps small {
    font-size: 0.7rem;
  }

  .launch-benefits {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .launch-benefits article {
    padding: 24px 2px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(17, 22, 15, 0.17);
  }

  .launch-benefits article:last-child {
    border-bottom: 0;
  }

  .launch-benefits span {
    margin-bottom: 12px;
  }

  .launch-benefits strong {
    font-size: 1.12rem;
  }

  .launch-benefits p {
    font-size: 0.84rem;
  }

  .mobile-join-cta > span:first-child {
    display: grid;
    gap: 1px;
    text-align: start;
  }

  .mobile-join-cta small {
    font-family: var(--font-latin);
    font-size: 0.54rem;
    line-height: 1;
  }

  .mobile-join-cta b {
    font-size: 0.88rem;
    line-height: 1.2;
  }
}

/* 2026-07-18: AI influencer service showcase */
.influencer-ads-section {
  padding-block: clamp(68px, 6vw, 92px);
  overflow: hidden;
  border-block: 1px solid rgba(174, 219, 98, 0.22);
  background: #11160f;
  color: #f5f3e9;
}

.influencer-ads-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: end;
  margin-bottom: 44px;
}

.influencer-ads-heading .eyebrow {
  color: var(--green);
}

.influencer-ads-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.96;
}

html[dir="rtl"] .influencer-ads-heading h2 {
  line-height: 1.18;
}

.influencer-ads-heading > p {
  margin: 0;
  color: #bdc8b4;
  font-size: 1rem;
  line-height: 1.8;
}

.influencer-ad-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.influencer-ad-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(245, 243, 233, 0.18);
  border-radius: 4px;
  background: #050704;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.influencer-ad-card.is-ai-example {
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(174, 219, 98, 0.36), 0 18px 34px rgba(0, 0, 0, 0.3);
}

.influencer-ad-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050704;
}

.influencer-ad-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  align-items: center;
  padding: 12px;
  background: rgba(5, 7, 4, 0.82);
  pointer-events: none;
}

.influencer-ad-overlay > span {
  grid-row: 1 / 3;
  color: var(--green);
  font-family: var(--font-latin);
  font-size: 0.66rem;
  font-weight: 850;
}

.influencer-ad-overlay mark {
  width: fit-content;
  padding: 3px 5px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-latin);
  font-size: 0.52rem;
  font-weight: 850;
}

.influencer-ad-card.is-ai-example .influencer-ad-overlay mark {
  background: var(--green);
}

.influencer-ad-overlay strong {
  grid-column: 2;
  font-size: 0.88rem;
  line-height: 1.35;
}

.influencer-ad-overlay small {
  grid-column: 2;
  color: #aab3a1;
  font-family: var(--font-latin);
  font-size: 0.54rem;
  font-weight: 750;
}

.influencer-service-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr);
  margin-top: 24px;
  border-block: 1px solid rgba(174, 219, 98, 0.26);
}

.influencer-service-flow > div {
  display: grid;
  min-height: 112px;
  gap: 8px;
  align-content: center;
  padding: 20px;
  border-inline: 1px solid rgba(245, 243, 233, 0.09);
}

html[dir="rtl"] .influencer-service-flow > div {
  direction: rtl;
  text-align: right;
}

.influencer-service-flow > div span {
  color: var(--yellow);
  font-family: var(--font-latin);
  font-size: 0.62rem;
  font-weight: 850;
}

.influencer-service-flow > div strong {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.influencer-service-flow > i {
  display: grid;
  place-items: center;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

html[dir="rtl"] .influencer-service-flow > i {
  transform: rotate(180deg);
}

.influencer-service-flow .is-delivery {
  background: var(--green);
  color: var(--black);
}

.influencer-service-flow .is-delivery span {
  color: #30421e;
}

.influencer-sell {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 30px;
  background: #e8efdf;
  color: #11160f;
}

.influencer-sell > div:first-child {
  display: grid;
  gap: 7px;
}

.influencer-sell small {
  color: #61734e;
  font-family: var(--font-latin);
  font-size: 0.68rem;
  font-weight: 850;
}

.influencer-sell strong {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.35;
}

.influencer-sell p {
  max-width: 650px;
  margin: 0;
  color: #526049;
  font-size: 0.88rem;
}

.influencer-model-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 7px;
}

.influencer-model-chips span {
  padding: 6px 8px;
  border: 1px solid rgba(17, 22, 15, 0.24);
  background: #d8e5ca;
  color: #11160f;
  font-family: var(--font-latin);
  font-size: 0.66rem;
  font-weight: 850;
}

.influencer-model-chips i {
  color: #637153;
  font-family: var(--font-latin);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.influencer-sell-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.influencer-sell .button {
  min-height: 56px;
}

.influencer-sell .button-primary {
  background: #11160f;
  color: var(--green);
}

.influencer-sell .button-secondary {
  border-color: rgba(17, 22, 15, 0.26);
  background: transparent;
  color: #11160f;
}

.influencer-media-note {
  max-width: 900px;
  margin: 18px 0 0;
  color: #9ca795;
  font-size: 0.8rem;
}

@media (max-width: 1040px) {
  .influencer-ad-rail {
    display: flex;
    margin-inline: -24px;
    padding: 0 24px 14px;
    overflow-x: auto;
    scroll-padding-inline: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--green) rgba(245, 243, 233, 0.1);
    scrollbar-width: thin;
  }

  .influencer-ad-card {
    width: min(32vw, 270px);
    flex: 0 0 min(32vw, 270px);
    scroll-snap-align: start;
  }

  .influencer-sell {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .influencer-ads-section {
    padding-block: 68px;
  }

  .influencer-ads-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }

  .influencer-ads-heading h2,
  html[dir="rtl"] .influencer-ads-heading h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .influencer-ads-heading > p {
    font-size: 0.95rem;
  }

  .influencer-ad-rail {
    margin-inline: -16px;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
  }

  .influencer-ad-card {
    width: min(76vw, 280px);
    flex-basis: min(76vw, 280px);
  }

  .influencer-ad-overlay {
    padding: 13px;
  }

  .influencer-ad-overlay strong {
    font-size: 0.94rem;
  }

  .influencer-service-flow {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .influencer-service-flow > div {
    min-height: 92px;
    padding: 18px;
  }

  .influencer-service-flow > i {
    height: 28px;
    transform: rotate(90deg);
  }

  html[dir="rtl"] .influencer-service-flow > i {
    transform: rotate(90deg);
  }

  .influencer-service-flow > div strong {
    font-size: 1.08rem;
  }

  .influencer-sell {
    gap: 22px;
    margin-top: 26px;
    padding: 24px 18px;
  }

  .influencer-sell p,
  .influencer-media-note {
    font-size: 0.84rem;
  }

  .influencer-sell-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .influencer-sell .button {
    width: 100%;
  }
}

/* English launch-state fit and overflow guardrails. */
.social-proof h3 {
  overflow-wrap: anywhere;
}

@media (min-width: 681px) {
  .launch-pass strong {
    max-width: 100%;
    font-size: clamp(2.8rem, 3.8vw, 4.5rem);
  }
}

@media (min-width: 376px) and (max-width: 680px) {
  .hero-grid,
  html[lang="en"] .hero-grid {
    padding-bottom: 12px;
  }

  .hero-stage,
  html[lang="en"] .hero-stage {
    height: 200px;
    min-height: 200px;
  }
}

@media (min-width: 341px) and (max-width: 375px) and (min-height: 701px) {
  .hero-grid,
  html[lang="en"] .hero-grid {
    padding-bottom: 8px;
  }

  .hero-stage,
  html[lang="en"] .hero-stage {
    height: 158px;
    min-height: 158px;
  }

  .mobile-hero-story .hero-proof-traffic {
    height: 105px;
  }

  .mobile-hero-story .hero-proof-store {
    height: 130px;
  }

  .mobile-hero-story .hero-proof-sale {
    height: 92px;
  }
}

/* Phone-first conversion hierarchy and short-screen fit. */
@media (max-width: 680px) {
  .mobile-actions {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 8px;
  }

  .mobile-actions .mobile-join-cta {
    padding-inline: 14px;
  }
}

@media (max-width: 680px) and (max-height: 700px) {
  .hero-grid,
  html[lang="en"] .hero-grid {
    gap: 0;
    padding-top: calc(var(--header-height) + 14px);
    padding-bottom: 9px;
  }

  .hero .eyebrow {
    margin-bottom: 6px;
    font-size: 0.62rem;
  }

  .hero h1,
  html[lang="en"] .hero h1 {
    font-size: 1.82rem;
    line-height: 1.14;
  }

  .hero h1 > span:first-child,
  html[lang="en"] .hero h1 > span:first-child {
    margin-bottom: 4px;
  }

  .hero-lead,
  html[lang="en"] .hero-lead {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .hero-actions,
  html[lang="en"] .hero-actions {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 7px;
    margin-top: 9px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding-inline: 9px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .hero-actions .button-secondary,
  html[lang="en"] .hero-actions .button-secondary {
    display: flex;
  }

  .hero-stage,
  html[lang="en"] .hero-stage {
    height: 150px;
    min-height: 150px;
    margin-top: 8px;
  }

  .mobile-hero-story .hero-proof-traffic {
    height: 92px;
  }

  .mobile-hero-story .hero-proof-store {
    top: 10px;
    height: 124px;
  }

  .mobile-hero-story .hero-proof-sale {
    bottom: 10px;
    height: 84px;
  }
}

@media (max-width: 340px) and (max-height: 700px) {
  .hero .eyebrow {
    font-size: 0.58rem;
  }

  .hero h1,
  html[lang="en"] .hero h1 {
    font-size: 1.72rem;
  }

  .hero-lead,
  html[lang="en"] .hero-lead {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .hero-stage,
  html[lang="en"] .hero-stage {
    height: 140px;
    min-height: 140px;
  }
}
