*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary-font: "Montserrat", sans-serif;
  --arabic-heading-font: "GhaithSans", "ExpoArabic", sans-serif;
  --arabic-body-font: "ExpoArabic", "GhaithSans", sans-serif;
  --secondary-font: "Savate", sans-serif;
  --arabic-heading-font: "GhaithSans", "ExpoArabic", sans-serif;
  --arabic-body-font: "ExpoArabic", "GhaithSans", sans-serif;
  --nav-bg: #061226;
  --nav-text: #f0f4f8;
  --primary: #087e8b;
  --primary-light: #23b0c1;
  --accent: #e6f6f8;
  --canvas: #f9fbff;
  --ink: #0f1e33;
  --muted: rgba(15, 30, 51, 0.68);
  --gold: #f6c343;
  --gold-deep: #d99f17;
  --soft-gold: rgba(246, 195, 67, 0.18);
  --grid-line: rgba(8, 126, 139, 0.18);
  --quote-gradient: linear-gradient(135deg, #041f3b 0%, #114d61 45%, #0a2342 100%);
  --section-title-size: clamp(2rem, 1vw + 1.7rem, 2.75rem);
  --section-title-line: 1.25;
  --section-lead-size: clamp(1.1rem, 0.55vw + 1rem, 1.5rem);
  --section-body-size: clamp(1rem, 0.45vw + 0.96rem, 1.2rem);
  --card-title-size: clamp(1.3rem, 0.6vw + 1.05rem, 1.6rem);
  --card-body-size: clamp(0.98rem, 0.4vw + 0.94rem, 1.1rem);
  scroll-behavior: smooth;
}

@font-face {
  font-family: "ExpoArabic";
  src: url("Fonts/Expo Arabic/EXPOARABIC-LIGHT.OTF") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ExpoArabic";
  src: url("Fonts/Expo Arabic/EXPO ARABIC BOOK.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ExpoArabic";
  src: url("Fonts/Expo Arabic/EXPOARABIC-MEDIUM.OTF") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ExpoArabic";
  src: url("Fonts/Expo Arabic/EXPO ARABIC SEMIBOLD.TTF") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ExpoArabic";
  src: url("Fonts/Expo Arabic/EXPOARABIC-BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GhaithSans";
  src: url("Fonts/GHAITHSANS/GHAITHSANS-REGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GhaithSans";
  src: url("Fonts/GHAITHSANS/GHAITHSANS-MEDIUM.OTF") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GhaithSans";
  src: url("Fonts/GHAITHSANS/GHAITHSANS-BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: var(--primary-font);
  color: var(--ink);
  background-color: var(--canvas);
  padding-top: 72px;
  line-height: 1.6;
}

body.is-arabic {
  direction: rtl;
  font-family: "GhaithSans", "ExpoArabic", sans-serif;
  letter-spacing: normal;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  position: relative;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) clamp(24px, 6vw, 64px);
}

.section-header {
  position: relative;
  z-index: 1;
}

.section-header h2 {
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-family: var(--secondary-font);
  font-size: clamp(30px, 3.5vw, 44px);
  letter-spacing: 0.02em;
  color: #0a2342;
}

.section-header p {
  margin: 0;
  font-size: clamp(1rem, 0.55vw + 0.95rem, 1.2rem);
  line-height: 1.72;
  color: rgba(10, 35, 66, 0.75);
}

.top-bar {
  position: fixed;
  inset: 0 0 auto 0;
  background: linear-gradient(120deg, rgba(7, 18, 32, 0.9) 0%, rgba(12, 36, 69, 0.92) 38%, rgba(17, 77, 97, 0.94) 72%, rgba(6, 18, 38, 0.92) 100%);
  background-size: 180% 180%;
  animation: heroGradient 18s ease infinite;
  color: var(--nav-text);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar--scrolled {
  box-shadow: 0 16px 32px rgba(15, 30, 51, 0.22);
}

.top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  position: relative;
}

.brand img {
  height: 58px;
  width: auto;
}

.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-nav {
  justify-self: center;
}

.primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 32px);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.primary-nav a {
  color: var(--nav-text);
  opacity: 0.84;
  transition: opacity 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  opacity: 1;
}

.primary-nav__investor {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--nav-text);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.14em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.primary-nav__investor:hover,
.primary-nav__investor:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(240, 244, 248, 0.78);
  font-size: clamp(0.62rem, 0.2vw + 0.58rem, 0.72rem);
  letter-spacing: 0;
  text-transform: none;
  background: rgba(3, 12, 24, 0.35);
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.language-switch:hover,
.language-switch:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(9, 28, 52, 0.65);
  transform: translateY(-1px);
}

.language-switch__en {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.language-switch__divider {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.language-switch__ar {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(240, 244, 248, 0.28);
  border-radius: 12px;
  background: transparent;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--nav-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #f4fbff;
  background-color: #071220;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background: radial-gradient(circle at 15% 20%, rgba(8, 126, 139, 0.5), transparent 45%),
    radial-gradient(circle at 80% 35%, rgba(246, 195, 67, 0.35), transparent 55%),
    radial-gradient(circle at 45% 85%, rgba(35, 176, 193, 0.45), transparent 60%),
    linear-gradient(120deg, #071220 0%, #0a2342 30%, #114d61 55%, #1f706b 80%, #071220 100%);
  background-size: 180% 180%;
  animation: heroGradient 18s ease infinite;
  opacity: 0.9;
}

.hero::after {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 60%);
  filter: blur(82px);
  mix-blend-mode: screen;
  opacity: 0.7;
}

@keyframes heroGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(96px, 12vw, 140px) clamp(24px, 6vw, 64px) clamp(72px, 10vw, 120px);
}

.hero__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__text h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 700;
  font-family: var(--primary-font);
}

.hero__subhead {
  margin: 0;
  max-width: 520px;
  color: rgba(244, 251, 255, 0.82);
  font-size: clamp(1rem, 0.6vw + 1rem, 1.24rem);
}

.hero__mantra {
  margin: 12px 0 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  white-space: nowrap;
  overflow: visible;
  scrollbar-width: none;
  font-size: clamp(0.95rem, 0.45vw + 0.95rem, 1.15rem);
  font-family: var(--primary-font);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 251, 255, 0.86);
}

.hero__mantra span {
  opacity: 0.6;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.hero__mantra::-webkit-scrollbar {
  display: none;
}

.hero__mantra strong {
  color: #fefdfc;
  flex-shrink: 0;
}

.hero__link-line {
  margin: 16px 0 0;
}

.hero__inline-link {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 8px;
  font-size: clamp(0.95rem, 0.5vw + 0.95rem, 1.1rem);
  color: #ff9f66;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero__inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff9f66, #ffd284);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.hero__inline-link:hover::after,
.hero__inline-link:focus-visible::after {
  transform: scaleX(1);
}

.hero__inline-link:hover,
.hero__inline-link:focus-visible {
  color: #ffb482;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(8, 126, 139, 0.25));
  filter: blur(48px);
  z-index: -1;
}

.hero__visual img {
  width: min(620px, 100%);
  filter: drop-shadow(0 36px 62px rgba(10, 35, 66, 0.5));
}

.how-it-works {
  margin-top: 0;
  background: #1b1f26;
  color: rgba(244, 245, 247, 0.86);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.how-it-works::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.25;
  z-index: 0;
}

.how-it-works::after {
  content: "";
  position: absolute;
  inset: -8% -12%;
  background: linear-gradient(135deg, rgba(12, 19, 31, 0.55), rgba(12, 19, 31, 0.15));
  filter: blur(14px);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.how-it-works__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(280px, 0.68fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.how-it-works__header {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.how-it-works__header h2 {
  margin: 0;
  font-size: var(--section-title-size);
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--primary-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: var(--section-title-line);
}

.how-it-works__body {
  display: grid;
  gap: clamp(20px, 3.5vw, 32px);
  text-align: left;
}

.how-it-works__lead {
  margin: 0;
  font-size: var(--section-lead-size);
  color: rgba(237, 240, 245, 0.85);
  font-weight: 500;
}

.how-it-works__visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 4vw, 24px);
  margin: 0;
}

.how-it-works__visual img {
  width: 100%;
  max-width: 520px;
  border-radius: 26px;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.45);
  filter: saturate(1.02);
}

.how-it-works__copy {
  display: grid;
  gap: clamp(14px, 3vw, 22px);
  text-align: left;
  font-size: var(--section-body-size);
  color: rgba(227, 229, 234, 0.74);
}

.how-it-works__copy p {
  margin: 0;
}

@media (max-width: 640px) {
  .how-it-works__layout {
    grid-template-columns: 1fr;
  }

  .how-it-works__header {
    text-align: center;
  }

  .how-it-works__body {
    text-align: center;
  }

  .how-it-works__visual {
    align-items: center;
  }

  .how-it-works__copy {
    text-align: center;
  }
}

.services {
  margin-top: clamp(60px, 10vw, 120px);
  background: linear-gradient(180deg, #fafdff 0%, #eef5f8 100%);
  color: #0a2342;
  position: relative;
  z-index: 2;
}

.services__inner {
  position: relative;
  color: inherit;
  display: grid;
  grid-template-rows: 5fr auto 10fr minmax(0, 70fr) 15fr;
  min-height: clamp(720px, 100vh, 1080px);
  padding: 0 clamp(24px, 6vw, 64px);
}

.services__header {
  grid-row: 2;
  justify-self: center;
  align-self: center;
  display: flex;
  justify-content: center;
}

.services__intro {
  margin: 0;
  font-weight: 600;
  font-family: var(--primary-font);
  letter-spacing: 0.04em;
  color: rgba(10, 35, 66, 0.82);
  text-align: center;
  max-width: 620px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.services__grid {
  grid-row: 4;
  align-self: stretch;
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(12px, 2.5vw, 20px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: minmax(280px, 1fr);
  grid-auto-flow: row;
  align-items: stretch;
  min-height: 0;
  height: 100%;
}

.services__tile {
  border-radius: 24px;
  padding: clamp(28px, 3vw, 36px);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: clamp(10px, 2vw, 18px);
  align-content: start;
  justify-items: start;
  border: 2px solid #0b4f46;
  background: #ffffff;
  box-shadow: none;
  min-height: 0;
  transition: border-color 0.25s ease;
}

.services__tile:hover,
.services__tile:focus-within {
  border-color: #0f6a5c;
  box-shadow: none;
}

.services__tile--wide {
  grid-column: span 1;
}

.services__tile--tall {
  grid-row: span 1;
}

.services__tile--square {
  grid-column: span 1;
  grid-row: span 1;
}

.services__tile--spotlight {
  grid-column: span 1;
  grid-row: span 1;
}

@media (min-width: 960px) {
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(320px, 1fr);
  }

  .services__tile {
    min-height: 100%;
  }

  .services__tile--wide,
  .services__tile--tall,
  .services__tile--square,
  .services__tile--spotlight {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 780px) {
  .services__tile--wide,
  .services__tile--tall,
  .services__tile--square {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.services__tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  overflow: visible;
}

.services__tile-icon img {
  width: 100%;
  height: auto;
}

.services__tile h3 {
  margin: 0;
  font-size: var(--card-title-size);
  font-family: var(--primary-font);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.services__tile p {
  margin: 0;
  font-size: var(--card-body-size);
  font-weight: 600;
  color: #6d6d71;
  line-height: 1.55;
}

.services__tile--kord {
  gap: clamp(8px, 1.6vw, 14px);
}

.services__tile--kord .services__tile-icon {
  align-self: start;
}

.services__tile--kord .services__tile-icon img {
  width: clamp(96px, 11vw, 148px);
}

.services__tile--kord h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.services__tile--kuarter {
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "title icon"
    "body body";
  align-items: start;
}

.services__tile--kuarter h3 {
  grid-area: title;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
}

.services__tile--kuarter .services__tile-icon {
  grid-area: icon;
  justify-self: end;
  align-self: start;
}

.services__tile--kuarter .services__tile-icon img {
  width: clamp(117px, 13vw, 182px);
}

.services__tile--kuarter p {
  grid-area: body;
}

.services__tile--kite {
  position: relative;
  overflow: visible;
  padding-top: clamp(64px, 11vw, 96px);
}

.services__tile--kite .services__tile-icon {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-35%, -35%);
}

.services__tile--kite .services__tile-icon img {
  width: clamp(104px, 13vw, 166px);
}

.services__tile--kite h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  align-self: start;
}

.services__tile--kumeter {
  justify-items: center;
  text-align: center;
  gap: clamp(12px, 2.4vw, 18px);
}

.services__tile--kumeter .services__tile-icon img {
  width: clamp(109px, 13vw, 172px);
}

.services__tile--kumeter h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
}

.services__tile--kumeter p {
  max-width: 26ch;
}

.services__tile--kurve {
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "title icon"
    "body body";
  align-items: start;
}

.services__tile--kurve h3 {
  grid-area: title;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
}

.services__tile--kurve .services__tile-icon {
  grid-area: icon;
  justify-self: end;
  align-self: start;
}

.services__tile--kurve .services__tile-icon img {
  width: clamp(143px, 17vw, 247px);
}

.services__tile--kurve p {
  grid-area: body;
}

.services__tile--wallet {
  justify-items: center;
  text-align: center;
  gap: clamp(12px, 2vw, 18px);
}

.services__tile--wallet h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
}

.services__tile--wallet .services__tile-icon img {
  width: clamp(115px, 13vw, 182px);
}

.services__tile--wallet p {
  max-width: 28ch;
}

.audience {
  background: var(--quote-gradient);
  color: #f7fbff;
}

.audience__inner {
  display: grid;
  gap: clamp(32px, 6vw, 60px);
}

.audience__header h2 {
  margin: 0;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  font-weight: 600;
  font-family: var(--primary-font);
  color: #ffffff;
  max-width: 860px;
}

.audience__title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(8px, 1.4vw, 16px);
}

.audience__title-main,
.audience__title-tail {
  font-family: var(--primary-font);
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.audience__title-tail {
  font-family: var(--secondary-font);
  color: rgba(255, 255, 255, 0.82);
}

.audience__list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(24px, 4vw, 36px);
}

.audience__item {
  position: relative;
  padding-left: 58px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.audience__item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.audience__item::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  width: 2px;
  height: calc(100% - 28px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
}

.audience__item:last-child::after {
  display: none;
}

.audience__item h3 {
  margin: 0;
  font-size: var(--card-title-size);
  font-weight: 600;
  font-family: var(--primary-font);
  color: rgba(255, 255, 255, 0.92);
}

.audience__item p {
  margin: 10px 0 0;
  font-size: var(--card-body-size);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 400;
  font-family: var(--primary-font);
}

.audience__item--visible {
  opacity: 1;
  transform: translateY(0);
}

.numbers {
  background: transparent;
}

.numbers__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 6vw, 48px);
  padding: clamp(56px, 9vw, 96px) clamp(24px, 6vw, 64px);
}

.numbers__label {
  display: flex;
  justify-content: center;
  width: 100%;
}

.numbers__title {
  margin: 0;
  font-size: var(--section-title-size);
  color: #2b2f36;
  font-family: var(--primary-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: var(--section-title-line);
  text-align: center;
}

.numbers__content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}

.numbers__item {
  --numbers-width: 20%;
  --numbers-gap: 6%;
  flex: 0 0 var(--numbers-width);
  max-width: var(--numbers-width);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 2.6vw, 18px);
  margin-right: var(--numbers-gap);
}

.numbers__item:last-child {
  margin-right: calc(100% - (4 * var(--numbers-width)) - (3 * var(--numbers-gap)));
}

.numbers__figure {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1.2vw, 10px);
  text-align: left;
}

.numbers__currency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.numbers__currency img {
  width: clamp(18px, 2.8vw, 26px);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(7, 18, 32, 0.25));
}

body.pitch-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(120deg, #071220 0%, #0a2342 30%, #114d61 58%, #1f706b 88%, #071220 100%);
  color: #f4fbff;
  font-family: var(--primary-font);
}

.pitch-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(12px, 3vw, 20px) clamp(18px, 4vw, 36px);
  background: rgba(6, 18, 38, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.pitch-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #f4fbff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pitch-nav__brand img {
  width: clamp(42px, 6vw, 56px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(5, 15, 28, 0.45));
}

.pitch-nav__actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 20px);
}

.pitch-nav__link {
  color: rgba(244, 251, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.pitch-nav__link:hover,
.pitch-nav__link:focus-visible {
  color: #ffb482;
}

.pitch-main {
  flex: 1;
  display: flex;
  padding: clamp(12px, 4vw, 36px);
}

.pitch-frame-wrapper {
  flex: 1;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(4, 18, 59, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
    rgba(4, 18, 59, 0.35);
}

.pitch-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #ffffff;
}

.pitch-frame__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px;
  text-align: center;
  color: #0f1e33;
  font-size: var(--card-body-size);
  background: #ffffff;
}

.pitch-frame__fallback a {
  color: var(--primary);
  font-weight: 600;
}

.pitch-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 18, 32, 0.06) 0%, rgba(7, 18, 32, 0) 16%);
}

@media (max-width: 768px) {
  .pitch-nav {
    padding: 12px 18px;
  }

  .pitch-nav__brand span {
    font-size: 0.82rem;
  }

  .pitch-main {
    padding: 16px;
  }

  .pitch-frame-wrapper {
    border-radius: 18px;
  }
}

@media (max-width: 520px) {
  .pitch-nav__actions {
    display: none;
  }

  .pitch-nav__brand {
    gap: 10px;
  }

  .pitch-nav__brand img {
    width: 40px;
  }
}

.numbers__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(6px, 1.2vw, 10px);
  width: 100%;
  text-align: left;
}

.stat__number {
  font-size: clamp(1.82rem, 2.8vw + 1.1rem, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0d5a4f;
  display: inline-block;
}

.stat__unit {
  font-size: var(--card-body-size);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(10, 35, 66, 0.72);
}

.stat__caption {
  margin: 0;
  font-size: var(--card-body-size);
  line-height: 1.55;
  color: rgba(10, 35, 66, 0.78);
}

@media (max-width: 860px) {
  .numbers__inner {
    gap: clamp(24px, 6vw, 36px);
    padding: clamp(48px, 9vw, 68px) clamp(24px, 7vw, 48px);
  }

  .numbers__label {
    justify-content: flex-start;
    align-items: center;
  }

  .numbers__content {
    flex-wrap: wrap;
    gap: clamp(18px, 4vw, 32px);
  }

  .numbers__item {
    flex: 1 1 calc(50% - clamp(18px, 4vw, 32px));
    max-width: calc(50% - clamp(18px, 4vw, 32px));
    margin-right: 0;
  }

  .numbers__item:last-child {
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .numbers__content {
    gap: clamp(16px, 5vw, 24px);
  }

  .numbers__item {
    flex: 1 1 100%;
    max-width: 100%;
    margin-right: 0;
  }

  .numbers__item:last-child {
    margin-right: 0;
  }

  .stat__number {
    font-size: clamp(1.68rem, 7.2vw, 2.5rem);
  }

  .stat__unit {
    font-size: var(--card-body-size);
    letter-spacing: 0.18em;
  }

  .stat__caption {
    font-size: var(--card-body-size);
  }
}

.funding-model {
  position: relative;
  background: linear-gradient(120deg, #071220 0%, #0c223c 40%, #134e61 78%, #071220 100%);
  color: #f7fbff;
  overflow: hidden;
}

.funding-model::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.4px);
  background-size: 28px 28px;
  opacity: 0.28;
  pointer-events: none;
}

.funding-model::after {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 28% 22%, rgba(35, 176, 193, 0.42), transparent 58%),
    radial-gradient(circle at 74% 68%, rgba(8, 24, 46, 0.65), transparent 68%);
  filter: blur(28px);
  opacity: 0.45;
  pointer-events: none;
}

.funding-model__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  align-items: stretch;
}

.funding-model__header h2 {
  margin: 0;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  font-family: var(--primary-font);
  font-weight: 700;
  color: #ffffff;
}

.funding-model__header p {
  margin: 12px 0 0;
  font-family: "Marck Script", cursive;
  font-size: clamp(22px, 2.4vw, 28px);
  color: rgba(255, 255, 255, 0.85);
}

.model__split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(32px, 7vw, 48px);
  align-items: stretch;
}

.model__split::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(35, 176, 193, 0.58) 45%, rgba(10, 35, 66, 0.12) 100%);
  transform: translateX(-50%);
  border-radius: 999px;
  pointer-events: none;
  box-shadow: 0 12px 32px rgba(7, 16, 30, 0.22);
}

.model__column {
  position: relative;
  padding: clamp(18px, 4vw, 26px) clamp(10px, 3vw, 22px);
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.model__column::before {
  content: none;
}

.model__column h3 {
  position: relative;
  margin: 0;
  font-size: var(--card-title-size);
  color: #ffffff;
  font-family: var(--primary-font);
  font-weight: 600;
}

.model__column p {
  position: relative;
  margin: 16px 0 0;
  color: rgba(247, 251, 255, 0.88);
  font-family: var(--primary-font);
  font-size: var(--card-body-size);
  line-height: 1.6;
}

.model__column--equity h3 {
  color: #ffffff;
}

.contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(8, 126, 139, 0.07));
}

.contact__inner {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
}

.contact__header h2 {
  margin: 0;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  font-family: var(--primary-font);
  font-weight: 700;
  color: #5d6473;
}

.contact__panel {
  background: #ffffff;
  border-radius: 32px;
  padding: clamp(24px, 6vw, 48px);
  display: grid;
  gap: 24px;
  border: 1px solid rgba(8, 126, 139, 0.12);
  box-shadow: 0 24px 48px rgba(15, 30, 51, 0.08);
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact__panel--premium {
  border: 2px solid var(--gold);
  box-shadow: 0 36px 72px rgba(246, 195, 67, 0.18);
  background: linear-gradient(150deg, rgba(255, 248, 233, 0.85), #ffffff 65%);
}

.contact__form {
  display: grid;
  gap: 18px;
}

.contact__field {
  display: grid;
  gap: 8px;
}

.contact__field label {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(15, 30, 51, 0.7);
}

.contact__field input,
.contact__field textarea,
.contact__select select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(8, 126, 139, 0.25);
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__select select {
  appearance: none;
  background-image: none;
  padding-right: 48px;
}

.contact__field input:focus-visible,
.contact__field textarea:focus-visible,
.contact__select select:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8, 126, 139, 0.15);
  outline: none;
}

.contact__select {
  position: relative;
  display: flex;
}

.contact__select::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  border: 2px solid rgba(15, 30, 51, 0.5);
  border-top: none;
  border-left: none;
  border-radius: 2px;
}

.contact__submit {
  justify-self: start;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact__submit:hover,
.contact__submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(8, 126, 139, 0.22);
  outline: none;
}

.contact__feedback {
  display: none;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(8, 126, 139, 0.08);
  font-size: 0.95rem;
}

.contact__feedback a {
  color: var(--primary);
  font-weight: 600;
}

.contact__feedback--visible {
  display: block;
}

.contact__feedback--script {
  font-family: "Marck Script", cursive;
  font-size: 1.8rem;
  text-align: center;
  background: transparent;
}

.contact__feedback--error {
  background: rgba(161, 26, 45, 0.12);
  border: 1px solid rgba(161, 26, 45, 0.24);
  color: #8b1b2c;
}

.site-footer {
  background: var(--nav-bg);
  color: var(--nav-text);
  padding: clamp(48px, 6vw, 72px) clamp(24px, 6vw, 64px);
  display: grid;
  gap: clamp(24px, 4vw, 36px);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 5vw, 48px);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translate(-4px, -8px);
}

.site-footer__brand img {
  width: 140px;
  height: auto;
  margin-bottom: 16px;
}

.site-footer__quote {
  margin: 0;
  color: rgba(240, 244, 248, 0.75);
}

.site-footer__contact h4 {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.site-footer__contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}

.site-footer__contact li {
  display: grid;
  gap: 4px;
  font-size: 0.95rem;
}

.site-footer__contact span {
  color: rgba(240, 244, 248, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.site-footer__contact a {
  color: #ffffff;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  opacity: 1;
}

.site-footer__contact-link--investor {
  color: var(--gold);
  font-weight: 700;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-end;
}

.site-footer__regulatory {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.78;
}

.site-footer__copy {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.85rem;
  opacity: 0.64;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(240, 244, 248, 0.24);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  background: rgba(240, 244, 248, 0.16);
}

@media (max-width: 1024px) {
  body {
    padding-top: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(360px, calc(100vw - 48px));
    background: linear-gradient(150deg, rgba(5, 15, 28, 0.96) 0%, rgba(18, 55, 78, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 24px 24px 28px;
    display: none;
    box-shadow: 0 26px 48px rgba(3, 8, 18, 0.45);
    backdrop-filter: blur(14px);
  }

  .primary-nav--open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .primary-nav__investor {
    text-align: center;
  }

  .top-bar__actions {
    gap: 16px;
  }

  .language-switch {
    font-size: 0.72rem;
    padding: 6px 16px;
  }

  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__visual img {
    width: min(420px, 90%);
  }

  .services__tile--span-col-2,
  .services__tile--span-row-2 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .numbers__inner {
    gap: 24px;
  }
}

.back-to-top-button {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, rgba(8, 126, 139, 0.95), rgba(10, 35, 66, 0.95));
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 20px 32px rgba(10, 35, 66, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 2000;
}

.back-to-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }

  .section__inner {
    padding: 56px 24px 64px;
  }

  .hero__content {
    padding: 88px 24px 72px;
  }

  .how-it-works {
    margin-top: -60px;
  }

  .how-it-works__layout {
    grid-template-columns: 1fr;
  }

  .audience__item {
    padding-left: 32px;
  }

  .audience__item::before {
    left: 4px;
  }

  .audience__item::after {
    left: 9px;
  }

  .model__split {
    grid-template-columns: 1fr;
  }

  .model__split::before {
    display: none;
  }

  .contact__submit {
    justify-self: stretch;
    text-align: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}



