@font-face {
  font-family: "Montaser Arabic";
  src: url("fonts/montaser-arabic.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montaser Arabic";
  src: url("fonts/montaser-arabic-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}
@font-face {
  font-family: "29LT Bukra";
  src: url("fonts/29lt-bukra-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: "29LT Bukra";
  src: url("fonts/29lt-bukra-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}
@font-face {
  font-family: "Madani Arabic";
  src: url("fonts/madani-arabic.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --purple-1000: #10021f;
  --purple-950: #16052d;
  --purple-900: #210841;
  --purple-850: #2b0c52;
  --purple-800: #351064;
  --purple-700: #4f1b87;
  --purple-600: #6c2eb0;
  --violet-300: #b78ae0;
  --teal-700: #007d6b;
  --teal-600: #00947e;
  --teal-500: #00b398;
  --teal-400: #20d0b1;
  --teal-200: #a6f0e2;
  --cream: #f6f2e9;
  --cream-2: #eee8db;
  --ink: #24113e;
  --muted: #6d6374;
  --white: #ffffff;
  --line: rgb(43 12 82 / 13%);
  --dark-line: rgb(95 231 204 / 22%);
  --shadow-sm: 0 14px 38px rgb(31 8 60 / 10%);
  --shadow-lg: 0 32px 80px rgb(20 2 40 / 24%);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "29LT Bukra", "Madani Arabic", Tahoma, Arial, sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}
body::selection { color: var(--purple-950); background: var(--teal-200); }
img { max-width: 100%; height: auto; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgb(32 208 177 / 55%);
  outline-offset: 4px;
}
.shell { width: min(1200px, calc(100% - 44px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--purple-950);
  background: var(--teal-200);
  text-decoration: none;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  overflow: visible;
}

header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgb(14 2 29 / 82%), transparent);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
header.scrolled {
  border-color: rgb(43 12 82 / 8%);
  background: rgb(246 242 233 / 94%);
  box-shadow: 0 12px 36px rgb(20 2 40 / 9%);
  backdrop-filter: blur(18px) saturate(140%);
}
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo img,
.footer-brand img,
.final-cta img {
  width: 116px;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
header.scrolled .logo img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(54%) saturate(2608%) hue-rotate(252deg) brightness(85%) contrast(101%);
}
.nav nav {
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav nav a,
.actions a {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
header.scrolled .nav nav a,
header.scrolled .actions a:not(.btn) { color: var(--ink); }
.nav nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-400);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav nav a:hover::after { transform: scaleX(1); }
.actions { display: flex; align-items: center; gap: 14px; }
.login-link { white-space: nowrap; }
#menu {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 14px;
  color: #fff;
  background: rgb(255 255 255 / 9%);
  cursor: pointer;
}
#menu span { width: 20px; height: 2px; display: block; border-radius: 3px; background: currentColor; }
header.scrolled #menu { color: var(--purple-800); border-color: var(--line); background: #fff; }

.btn {
  min-height: 52px;
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: #fff !important;
  background: var(--purple-700);
  box-shadow: 0 15px 32px rgb(31 7 62 / 19%);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgb(31 7 62 / 25%); }
.btn.small { min-height: 42px; padding: 9px 16px; border-radius: 13px; font-size: 12px; }
.mint-button {
  color: #10272a !important;
  background: linear-gradient(135deg, #6ee9d2, var(--teal-500));
  box-shadow: 0 16px 34px rgb(0 179 152 / 24%);
}
.ghost-button {
  color: #fff !important;
  border-color: rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 8%);
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.secondary {
  color: var(--purple-800) !important;
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
}
.buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  position: relative;
  min-height: 880px;
  padding: 156px 0 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--purple-950);
  isolation: isolate;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("investors/brand-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(14 2 29 / 32%), rgb(14 2 29 / 84%) 62%, rgb(14 2 29 / 96%)),
    linear-gradient(0deg, var(--purple-950), transparent 36%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -55% -15%;
  z-index: -1;
  height: 70%;
  border-radius: 50%;
  background: rgb(0 179 152 / 18%);
  filter: blur(90px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 40px;
}
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.eyebrow { color: var(--teal-200); }
.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 7px rgb(32 208 177 / 12%);
}
.hero h1,
.section h2,
.investor-banner h2,
.final-cta h2 {
  font-family: "Montaser Arabic", "29LT Bukra", sans-serif;
  font-weight: 700;
}
.hero h1 {
  max-width: 690px;
  margin: 20px 0 22px;
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.hero h1 strong { color: var(--teal-400); font-weight: inherit; }
.hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: rgb(255 255 255 / 77%);
  font-family: "Madani Arabic", "29LT Bukra", sans-serif;
  font-size: 18px;
}
.hero-copy .buttons { margin-top: 30px; }
.proof {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  border-top: 1px solid rgb(255 255 255 / 15%);
  color: rgb(255 255 255 / 68%);
  font-size: 12px;
}
.proof span { display: flex; align-items: baseline; gap: 7px; }
.proof b { color: #fff; font-family: "Poppins", sans-serif; font-size: 23px; line-height: 1; }
.hero-product {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: end center;
  isolation: isolate;
}
.hero-product > img {
  position: relative;
  z-index: 2;
  width: min(720px, 112%);
  max-width: none;
  filter: drop-shadow(0 40px 70px rgb(6 1 15 / 45%));
}
.hero-orbit {
  position: absolute;
  inset: 9% 8% 4%;
  z-index: -1;
  border: 1px solid rgb(99 240 214 / 30%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(79 27 135 / 68%), rgb(12 2 27 / 10%) 64%);
  box-shadow: inset 0 0 55px rgb(0 179 152 / 13%), 0 0 80px rgb(0 179 152 / 16%);
}
.floating-note {
  position: absolute;
  z-index: 4;
  min-width: 224px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgb(110 233 210 / 35%);
  border-radius: 17px;
  color: #fff;
  background: rgb(24 5 48 / 76%);
  box-shadow: 0 20px 40px rgb(7 1 15 / 28%);
  backdrop-filter: blur(16px);
}
.floating-note > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--teal-200);
  background: rgb(0 179 152 / 18%);
}
.floating-note b,
.floating-note small { display: block; }
.floating-note b { font-size: 11px; }
.floating-note small { margin-top: 2px; color: rgb(255 255 255 / 59%); font-size: 9px; }
.note-one { inset: 23% auto auto -4%; }
.note-two { inset: auto -1% 14% auto; }
.scroll-cue {
  position: absolute;
  inset: auto 50% 24px auto;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgb(255 255 255 / 54%);
  font-size: 9px;
  text-decoration: none;
  transform: translateX(50%);
}
.scroll-cue span {
  width: 24px;
  height: 38px;
  position: relative;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 999px;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: 8px 50% auto auto;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal-400);
  transform: translateX(50%);
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue {
  0%, 100% { opacity: .4; transform: translate(50%, 0); }
  50% { opacity: 1; transform: translate(50%, 12px); }
}

.section { position: relative; padding: 120px 0; }
.split-section,
.merchant-grid,
.template-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 76px;
}
.section h2 {
  margin: 13px 0 20px;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.14;
  letter-spacing: -.025em;
}
.section-copy > .lead,
.section-head > p,
.template-copy > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-family: "Madani Arabic", "29LT Bukra", sans-serif;
  font-size: 17px;
}
.feature-list { margin-top: 34px; display: grid; gap: 15px; }
.feature-list article {
  padding: 16px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.feature-list article:hover {
  border-color: var(--line);
  background: rgb(255 255 255 / 58%);
  transform: translateX(-4px);
}
.feature-list article > span,
.merchant-tools article > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--purple-700);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 21px;
}
.feature-list h3,
.merchant-tools h3 { margin: 1px 0 4px; font-size: 15px; }
.feature-list p,
.merchant-tools p { margin: 0; color: var(--muted); font-size: 12px; }
.text-link {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-700);
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { color: var(--teal-700); }
.product-stage {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(79 27 135 / 11%);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(150deg, rgb(255 255 255 / 86%), rgb(238 232 219 / 55%)),
    var(--cream-2);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.saudi-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .09;
  background:
    linear-gradient(45deg, transparent 46%, var(--purple-700) 47% 53%, transparent 54%) 0 0 / 42px 42px,
    linear-gradient(-45deg, transparent 46%, var(--teal-600) 47% 53%, transparent 54%) 0 0 / 42px 42px;
}
.product-stage::after {
  content: "";
  position: absolute;
  inset: auto -10% -18%;
  z-index: -1;
  height: 55%;
  border-radius: 50%;
  background: rgb(0 179 152 / 20%);
  filter: blur(48px);
}
.product-stage img {
  width: 108%;
  max-width: none;
  transform: translateY(20px);
  filter: drop-shadow(0 28px 45px rgb(40 12 70 / 13%));
}
.stage-pill {
  position: absolute;
  inset: auto 28px 26px;
  padding: 12px 20px;
  border: 1px solid rgb(79 27 135 / 12%);
  border-radius: 999px;
  color: var(--purple-700);
  background: rgb(255 255 255 / 83%);
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(13px);
}

.merchant-section {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgb(16 2 31 / 92%), rgb(38 8 72 / 94%)),
    url("investors/brand-hero.jpg") center / cover;
  isolation: isolate;
}
.merchant-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background:
    radial-gradient(circle at 75% 22%, var(--teal-400) 0 1px, transparent 2px) 0 0 / 54px 54px;
}
.merchant-glow {
  position: absolute;
  inset: auto auto -30% -16%;
  z-index: -1;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgb(0 179 152 / 20%);
  filter: blur(90px);
}
.merchant-visual {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.merchant-visual::before {
  content: "";
  position: absolute;
  inset: 13% 7% 3%;
  border: 1px solid rgb(102 227 206 / 28%);
  border-radius: 48% 52% 25% 25%;
  background: radial-gradient(circle, rgb(79 27 135 / 68%), rgb(11 2 25 / 12%) 67%);
}
.merchant-visual img {
  position: relative;
  z-index: 2;
  width: min(590px, 100%);
  max-height: 680px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 36px 60px rgb(4 0 12 / 45%));
}
.merchant-stat {
  position: absolute;
  z-index: 4;
  min-width: 142px;
  padding: 14px 16px;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  color: #fff;
  background: rgb(24 5 48 / 78%);
  box-shadow: 0 20px 46px rgb(5 0 14 / 34%);
  backdrop-filter: blur(14px);
}
.merchant-stat b,
.merchant-stat span { display: block; }
.merchant-stat b { color: var(--teal-400); font-family: "Poppins", sans-serif; font-size: 24px; }
.merchant-stat span { color: rgb(255 255 255 / 62%); font-size: 9px; }
.stat-orders { inset: 22% auto auto 0; }
.stat-rating { inset: auto 5% 14% auto; }
.kicker.light { color: var(--teal-200); }
.merchant-copy h2 { color: #fff; }
.merchant-copy h2 strong { color: var(--teal-400); font-weight: inherit; }
.merchant-copy > p { margin: 0; color: rgb(255 255 255 / 70%); font-family: "Madani Arabic", sans-serif; font-size: 17px; }
.merchant-tools {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.merchant-tools article {
  padding: 16px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 12px;
  border: 1px solid rgb(110 233 210 / 17%);
  border-radius: 18px;
  background: rgb(255 255 255 / 5%);
}
.merchant-tools article > span {
  width: 44px;
  height: 44px;
  color: var(--teal-200);
  background: rgb(0 179 152 / 14%);
  box-shadow: none;
}
.merchant-tools h3 { color: #fff; }
.merchant-tools p { color: rgb(255 255 255 / 55%); }

.journey-section { background: #fff; }
.section-head { max-width: 780px; margin: 0 auto 54px; text-align: center; }
.section-head > p { margin-inline: auto; }
.journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.journey-grid::before {
  content: "";
  position: absolute;
  inset: 49px 10% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-400), var(--purple-600), transparent);
}
.journey-grid article {
  position: relative;
  min-height: 245px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.journey-grid article > b {
  position: absolute;
  inset: 12px auto auto 17px;
  color: rgb(79 27 135 / 10%);
  font-family: "Poppins", sans-serif;
  font-size: 48px;
}
.journey-grid article > span {
  width: 54px;
  height: 54px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: var(--purple-700);
  box-shadow: 0 0 0 9px #fff;
  font-size: 23px;
}
.journey-grid article:nth-child(even) > span { color: var(--purple-950); background: var(--teal-400); }
.journey-grid h3 { margin: 24px 0 8px; font-size: 18px; }
.journey-grid p { margin: 0; color: var(--muted); font-size: 12px; }

.templates-section { overflow: hidden; background: var(--cream-2); }
.template-copy ul {
  margin: 26px 0 30px;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}
.template-copy li { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13px; }
.template-copy li .icon { color: var(--teal-600); }
.template-stack {
  min-height: 600px;
  position: relative;
  perspective: 1000px;
}
.template-card {
  position: absolute;
  width: 70%;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 30px 65px rgb(27 5 52 / 26%);
  transition: transform .25s ease;
}
.template-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -45%;
  width: 230px;
  height: 230px;
  border: 38px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
}
.template-card span { color: rgb(255 255 255 / 46%); font-family: "Poppins", sans-serif; font-size: 12px; }
.template-card h3 { margin: 46px 0 5px; font-family: "Poppins", "29LT Bukra", sans-serif; font-size: 25px; }
.template-card p { margin: 0; color: rgb(255 255 255 / 62%); font-size: 11px; }
.signature { inset: 0 0 auto auto; z-index: 4; background: linear-gradient(145deg, #19042f, #5b1e98); transform: rotate(2deg); }
.fresh { inset: 118px auto auto 0; z-index: 3; color: #13393c; background: linear-gradient(145deg, #f5fff9, #62d7bf); transform: rotate(-3deg); }
.fresh p, .fresh span { color: rgb(19 57 60 / 62%); }
.fresh::after { border-color: rgb(255 255 255 / 24%); }
.heritage { inset: 240px 5% auto auto; z-index: 2; color: #3e2118; background: linear-gradient(145deg, #f2d8b9, #b56e45); transform: rotate(3deg); }
.heritage p, .heritage span { color: rgb(62 33 24 / 60%); }
.bold { inset: 360px auto auto 5%; z-index: 1; color: #111; background: linear-gradient(145deg, #f6c342, #ef6b32); transform: rotate(-2deg); }
.bold p, .bold span { color: rgb(17 17 17 / 58%); }
.template-stack:hover .signature { transform: translateY(-8px) rotate(2deg); }
.template-stack:hover .fresh { transform: translateY(-4px) rotate(-3deg); }

.pricing-section { background: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 15px;
}
.price-card {
  position: relative;
  padding: 28px 23px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 14px 40px rgb(28 7 52 / 7%);
}
.price-card.featured {
  color: #fff;
  border-color: var(--teal-400);
  background: linear-gradient(155deg, var(--purple-950), var(--purple-700));
  box-shadow: 0 26px 60px rgb(43 12 82 / 27%);
  transform: translateY(-12px);
}
.plan-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--purple-700);
  background: var(--cream);
  font-size: 22px;
}
.featured .plan-icon { color: var(--purple-950); background: var(--teal-400); }
.plan-name { margin: 18px 0 3px; color: var(--teal-700); font-family: "Poppins", sans-serif; font-weight: 700; }
.featured .plan-name { color: var(--teal-200); }
.price-card h3 { margin: 0 0 22px; }
.price-card h3 b { display: block; font-family: "Poppins", "29LT Bukra", sans-serif; font-size: 41px; line-height: 1.2; }
.price-card h3 small { color: var(--muted); font-size: 10px; font-weight: 400; }
.featured h3 small { color: rgb(255 255 255 / 62%); }
.price-card ul {
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.price-card li { display: flex; align-items: flex-start; gap: 7px; color: var(--muted); font-size: 11px; }
.price-card li .icon { margin-top: 3px; color: var(--teal-600); }
.featured li { color: rgb(255 255 255 / 72%); }
.featured li .icon { color: var(--teal-400); }
.price-card .btn { width: 100%; margin-top: auto; }
.popular {
  position: absolute;
  inset: -15px 24px auto auto;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--purple-950);
  background: var(--teal-400);
  font-size: 9px;
  font-weight: 900;
}
.pricing-note { margin: 27px 0 0; color: var(--muted); font-size: 10px; text-align: center; }

.investor-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgb(17 2 33 / 94%), rgb(41 9 75 / 82%)),
    url("investors/investor-road.jpg") center / cover;
}
.investor-banner-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  align-items: center;
  gap: 50px;
}
.investor-banner span { color: var(--teal-200); font-size: 12px; font-weight: 800; }
.investor-banner h2 { max-width: 700px; margin: 13px 0 18px; font-size: clamp(38px, 5vw, 64px); line-height: 1.12; }
.investor-banner p { max-width: 620px; margin: 0 0 26px; color: rgb(255 255 255 / 68%); font-family: "Madani Arabic", sans-serif; }
.investor-banner img {
  align-self: end;
  justify-self: center;
  width: min(345px, 100%);
  max-height: 480px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 50px rgb(5 0 14 / 42%));
}

.final-cta {
  position: relative;
  padding: 105px 0;
  overflow: hidden;
  color: #fff;
  background: var(--purple-950);
  text-align: center;
}
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgb(32 208 177 / 16%);
  border-radius: 50%;
}
.final-cta::before { inset: -210px auto auto -120px; }
.final-cta::after { inset: auto -170px -220px auto; }
.final-cta .shell { position: relative; z-index: 2; }
.final-cta img { width: 130px; }
.final-cta h2 { margin: 16px 0 12px; font-size: clamp(40px, 5vw, 66px); }
.final-cta p { margin: 0; color: rgb(255 255 255 / 65%); }
.final-cta .buttons { margin-top: 28px; justify-content: center; }
.install-button { color: #fff !important; border-color: rgb(255 255 255 / 25%); background: transparent; box-shadow: none; }

footer { padding: 66px 0 24px; color: rgb(255 255 255 / 67%); background: #0c0118; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 1fr);
  gap: 48px;
}
.footer-brand p { max-width: 320px; margin: 15px 0 0; font-size: 11px; }
.footer-grid h3 { margin: 8px 0 14px; color: #fff; font-size: 13px; }
.footer-grid a { margin: 7px 0; display: block; color: inherit; font-size: 11px; text-decoration: none; }
.footer-grid a:hover { color: var(--teal-200); }
.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgb(255 255 255 / 9%);
  color: rgb(255 255 255 / 37%);
  font-size: 9px;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.has-js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .001ms !important; }
  .has-js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .nav nav { gap: 16px; }
  .nav nav a { font-size: 11px; }
  .actions .login-link { display: none; }
  .hero-grid { grid-template-columns: minmax(380px, .9fr) minmax(0, 1.1fr); gap: 10px; }
  .hero h1 { font-size: clamp(50px, 6.6vw, 75px); }
  .floating-note { transform: scale(.9); }
  .split-section, .merchant-grid, .template-shell { gap: 44px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card.featured { transform: none; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 76px; }
  .shell { width: min(100% - 28px, 680px); }
  header { background: rgb(16 2 31 / 87%); backdrop-filter: blur(15px); }
  .nav { min-height: 74px; gap: 10px; }
  .logo img { width: 96px; height: 48px; }
  .actions { margin-inline-start: auto; }
  .actions .btn { min-height: 40px; padding: 8px 12px; font-size: 10px; }
  #menu { display: grid; }
  .nav nav {
    position: absolute;
    inset: calc(100% + 1px) 14px auto;
    padding: 12px;
    display: grid;
    gap: 3px;
    visibility: hidden;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 17px;
    background: rgb(22 5 45 / 96%);
    box-shadow: 0 25px 50px rgb(5 0 15 / 33%);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .nav.open nav { visibility: visible; opacity: 1; transform: none; }
  .nav nav a,
  header.scrolled .nav nav a { padding: 10px 12px; color: #fff; font-size: 12px; }
  .nav nav a::after { display: none; }
  .hero { min-height: auto; padding: 124px 0 64px; }
  .hero::before { background: linear-gradient(0deg, var(--purple-950) 4%, rgb(14 2 29 / 90%) 62%, rgb(14 2 29 / 78%)); }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { text-align: center; }
  .hero h1 { margin-inline: auto; font-size: clamp(47px, 12vw, 71px); }
  .hero-copy > p { margin-inline: auto; font-size: 16px; }
  .hero-copy .buttons, .proof { justify-content: center; }
  .hero-product { min-height: 470px; }
  .hero-product > img { width: min(720px, 116%); }
  .note-one { inset: 14% auto auto 0; }
  .note-two { inset: auto 0 4% auto; }
  .scroll-cue { display: none; }
  .section { padding: 88px 0; }
  .split-section, .merchant-grid, .template-shell { grid-template-columns: 1fr; }
  .product-stage { min-height: 520px; }
  .merchant-copy { grid-row: 1; }
  .merchant-visual { min-height: 570px; }
  .merchant-visual img { max-height: 570px; }
  .journey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-grid::before { display: none; }
  .template-stack { min-height: 550px; }
  .investor-banner-grid { grid-template-columns: 1fr .45fr; }
  .investor-banner img { width: 260px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 520px); }
  .actions .btn { display: none; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: clamp(43px, 14.3vw, 62px); }
  .hero-copy > p { font-size: 14px; }
  .hero-copy .buttons .btn { flex: 1 1 100%; }
  .proof { gap: 17px; }
  .proof span { flex: 1 1 auto; flex-direction: column; align-items: center; gap: 4px; }
  .hero-product { min-height: 370px; margin-inline: -12px; }
  .hero-product > img { width: 120%; }
  .hero-orbit { inset: 7% 3% 2%; }
  .floating-note { min-width: 180px; padding: 9px 10px; transform: scale(.78); }
  .note-one { inset: 4% auto auto -12%; }
  .note-two { inset: auto -10% -2% auto; }
  .section { padding: 72px 0; }
  .section h2 { font-size: clamp(34px, 10.8vw, 48px); }
  .section-copy > .lead, .section-head > p, .template-copy > p { font-size: 14px; }
  .feature-list article { padding: 11px 3px; grid-template-columns: 44px 1fr; }
  .feature-list article > span { width: 44px; height: 44px; }
  .product-stage { min-height: 360px; border-radius: 25px; }
  .product-stage img { width: 115%; }
  .stage-pill { inset: auto 14px 14px; font-size: 9px; }
  .merchant-tools { grid-template-columns: 1fr; }
  .merchant-visual { min-height: 470px; }
  .merchant-visual img { max-height: 470px; }
  .merchant-stat { min-width: 118px; padding: 10px 12px; }
  .stat-orders { inset: 21% auto auto -5px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-grid article { min-height: auto; }
  .template-stack { min-height: 500px; }
  .template-card { width: 84%; min-height: 190px; padding: 23px; }
  .template-card h3 { margin-top: 35px; font-size: 20px; }
  .fresh { inset: 105px auto auto 0; }
  .heritage { inset: 210px 3% auto auto; }
  .bold { inset: 315px auto auto 3%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 25px 22px; }
  .investor-banner-grid { min-height: 650px; padding-top: 72px; grid-template-columns: 1fr; text-align: center; }
  .investor-banner p { margin-inline: auto; }
  .investor-banner .btn { width: 100%; }
  .investor-banner img { width: 230px; max-height: 300px; }
  .final-cta { padding: 78px 0; }
  .final-cta .buttons .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}
