:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #fcfcfd;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --panel-light: #f7f7f6;
  --border: rgba(20, 22, 28, 0.08);
  --border-strong: rgba(20, 22, 28, 0.14);
  --text: #171920;
  --text-inverse: #f5f7fb;
  --muted: #616775;
  --muted-strong: #858b99;
  --dark-text: #14161c;
  --brand-navy: #17365e;
  --accent-blue: #5f93ff;
  --accent-green: #46d17f;
  --accent-red: #ff5f57;
  --accent-yellow: #f9d54b;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Google Sans Flex", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(95, 147, 255, 0.07), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(249, 213, 75, 0.06), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fefefe 52%, #fcfcfd 100%);
  color: var(--text);
}

/* Ensure anchor jumps land cleanly below the top nav */
#product {
  scroll-margin-top: 7rem;
}

/* Simple premium top nav for the hero. */
.top-nav {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 0.95rem 1.4rem;
  border-radius: 0;
  border: 1px solid rgba(202, 208, 219, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 12px 28px rgba(138, 148, 164, 0.08);
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.top-nav-logo img {
  height: 2.4rem;
  width: auto;
  display: block;
}

.top-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.top-nav-link {
  padding: 0.55rem 0.65rem;
  border-radius: 0;
  font-weight: 500;
  color: rgba(17, 19, 26, 0.88);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.top-nav-link:hover,
.top-nav-link:focus-visible {
  background: rgba(74, 114, 240, 0.08);
  color: #11131a;
  transform: translateY(-1px);
}

.top-nav-link-primary {
  background: linear-gradient(180deg, #4f66ff 0%, #3f59ee 100%);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(79, 102, 255, 0.18);
  padding-inline: 1rem;
  border-radius: 0.2rem;
}

.top-nav-link-primary:hover,
.top-nav-link-primary:focus-visible {
  background: #0b0d13;
  color: #ffffff;
}

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

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

button {
  font: inherit;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.14;
  pointer-events: none;
}

.page-glow-left {
  top: -10rem;
  left: -10rem;
  background: rgba(95, 147, 255, 0.1);
}

.page-glow-right {
  right: -12rem;
  top: 18rem;
  background: rgba(70, 209, 127, 0.06);
}

.site-header,
.section,
.site-footer,
.download-strip,
.footer-logo-band {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: #11131a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.brand-mark-large {
  min-height: 4.1rem;
  padding: 1rem 1.3rem;
}

.brand-logo {
  height: 1.35rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
}

.brand-header-logo .brand-mark {
  background: transparent;
  box-shadow: none;
  padding: 0;
  min-height: auto;
}

.brand-header-logo .brand-logo {
  height: 3rem;
  max-width: 19rem;
}

.header-menu-button {
  display: none;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 1px solid rgba(17, 19, 26, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  flex-direction: column;
  cursor: pointer;
}

.header-menu-button span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: #11131a;
}

.header-menu-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0.9rem;
  min-width: 11rem;
  display: grid;
  gap: 0.4rem;
  padding: 0.7rem;
  border: 1px solid rgba(17, 19, 26, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
}

.header-menu-panel[hidden] {
  display: none !important;
}

.header-menu-panel a {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 0.9rem;
  color: #11131a;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.header-menu-panel a:hover,
.header-menu-panel a:focus-visible {
  background: rgba(95, 147, 255, 0.1);
  color: #2452c8;
}

.brand-mark-large .brand-logo {
  height: 2rem;
  max-width: 16rem;
}

.brand-text {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.brand-kicker,
.brand-name {
  line-height: 1;
}

.brand-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 600;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.button,
.ghost-action,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible,
.ghost-action:hover,
.ghost-action:focus-visible,
.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
}

.button {
  min-height: 3.25rem;
  padding: 0 1.35rem;
  font-weight: 600;
}

.button-compact {
  min-height: 2.7rem;
  padding-inline: 1.05rem;
}

.button-primary {
  background: var(--dark-text);
  color: var(--text-inverse);
  box-shadow: 0 16px 30px rgba(20, 22, 28, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #090b10;
}

.button-secondary,
.ghost-action {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.78);
  color: var(--dark-text);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.ghost-action:hover,
.ghost-action:focus-visible {
  border-color: rgba(20, 22, 28, 0.2);
  background: rgba(245, 247, 251, 0.96);
}

.button-dark {
  background: #151821;
  color: var(--text-inverse);
}

.button-light {
  background: rgba(255, 255, 255, 0.78);
  color: var(--dark-text);
  border-color: rgba(20, 22, 28, 0.18);
}

.symbol {
  font-family: "Google Symbols", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.section {
  padding: 6rem 0 0;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 50rem;
  padding-top: 2.25rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-copy {
  max-width: none;
  width: 100%;
}

.hero-copy-centered {
  position: relative;
  z-index: 3;
  display: grid;
  align-self: start;
  justify-items: center;
  align-content: start;
  text-align: center;
  width: min(100%, 108rem);
  padding-inline: 1.2rem;
  gap: 0.9rem;
  padding-top: 1.6rem;
}

.hero-newsbar {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.3rem;
  margin-bottom: 0.6rem;
  color: #1a1d25;
  font-size: 1.05rem;
}

.hero-newsbar-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 0.2rem;
  background: #b9f3b4;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.hero-newsbar-text {
  color: rgba(17, 19, 26, 0.88);
}

.hero-brandline {
  display: none;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.2rem;
}

.hero-brandline-logo {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}

.hero-brandline-text {
  color: rgba(17, 19, 26, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: "Google Sans Flex", "Alexandria", sans-serif;
}

.hero-title-wide {
  width: min(100%, 54rem);
  max-width: none;
  margin-inline: auto;
  color: #04070d;
  font-size: clamp(4.1rem, 6.4vw, 6rem);
  line-height: 1;
  text-wrap: balance;
  text-align: center;
  direction: rtl;
  font-family: "Alexandria", "Google Sans Flex", "Tajawal", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0;
}

.hero-summary-centered {
  max-width: 34rem;
  margin-top: 0.2rem;
  color: rgba(23, 25, 32, 0.58);
  font-size: clamp(0.94rem, 1.35vw, 1.04rem);
  line-height: 1.78;
}

.hero-actions-centered {
  justify-content: center;
  margin-top: 0.75rem;
}

.hero-actions-dual {
  gap: 0.7rem;
}

.hero-media-under {
  width: min(100%, 72rem);
  margin-top: 10rem;
  position: relative;
  z-index: 3;
}

.hero-button-primary {
  background: #11131a;
  box-shadow: 0 18px 36px rgba(17, 19, 26, 0.12);
  color: #ffffff;
  border-color: transparent;
  min-width: 16.8rem;
  min-height: 3.9rem;
  border-radius: 999px;
  padding-inline: 1.8rem;
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 19, 26, 0.08);
  min-width: 14.8rem;
  min-height: 3.9rem;
  border-radius: 999px;
  padding-inline: 1.8rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.hero-button-primary-blue {
  background: linear-gradient(180deg, #4f66ff 0%, #3f59ee 100%);
  box-shadow: 0 10px 18px rgba(79, 102, 255, 0.22);
  letter-spacing: 0.08em;
  font-weight: 500;
  min-height: 3.2rem;
  min-width: 10.8rem;
  border-radius: 0.18rem;
}

.hero-particle-stage {
  position: absolute;
  inset: 0;
  left: 50%;
  width: min(100%, 112rem);
  height: 100%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
  isolation: isolate;
}

.hero-particle-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(115px);
  opacity: 0.12;
}

.hero-particle-glow-left {
  width: 28rem;
  height: 28rem;
  left: 14%;
  top: 7rem;
  background: rgba(188, 196, 212, 0.12);
}

.hero-particle-glow-right {
  width: 31rem;
  height: 31rem;
  right: 12%;
  top: 8rem;
  background: rgba(102, 148, 255, 0.14);
}

.hero-particle-stage::after {
  content: "";
  position: absolute;
  inset: 29rem 8% auto;
  height: 26rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(244,247,255,0.3));
  filter: blur(6px);
  opacity: 0.35;
  z-index: -1;
}

.hero-geo-network,
.hero-geo-grid,
.hero-geo-globe,
.hero-geo-badge,
.hero-geo-panel {
  position: absolute;
}

.hero-geo-network {
  inset: 0 0 auto;
  height: 72rem;
  opacity: 0.5;
  background-image:
    linear-gradient(125deg, transparent 0 18%, rgba(192, 199, 214, 0.38) 18.25%, transparent 18.7%),
    linear-gradient(31deg, transparent 0 26%, rgba(192, 199, 214, 0.34) 26.25%, transparent 26.7%),
    linear-gradient(155deg, transparent 0 54%, rgba(192, 199, 214, 0.25) 54.25%, transparent 54.7%),
    linear-gradient(76deg, transparent 0 71%, rgba(192, 199, 214, 0.28) 71.25%, transparent 71.7%);
  background-size: 36rem 18rem, 32rem 20rem, 44rem 24rem, 40rem 22rem;
  background-position: left top, 18% 6%, 72% 0, right 3%;
}

.hero-geo-grid {
  display: block;
  top: 34.5rem;
  left: 50%;
  width: min(112vw, 82rem);
  height: 17rem;
  opacity: 0.82;
  background-image:
    linear-gradient(
      to right,
      transparent calc(50% - 1.2px),
      rgba(73, 103, 240, 0.96) calc(50% - 1.2px),
      rgba(73, 103, 240, 0.96) calc(50% + 1.2px),
      transparent calc(50% + 1.2px)
    ),
    linear-gradient(
      to bottom,
      transparent calc(50% - 1.2px),
      rgba(73, 103, 240, 0.96) calc(50% - 1.2px),
      rgba(73, 103, 240, 0.96) calc(50% + 1.2px),
      transparent calc(50% + 1.2px)
    );
  background-size: 22px 22px, 22px 22px;
  background-position: center;
  background-repeat: repeat;
  transform: translateX(-50%);
  mask-image:
    radial-gradient(ellipse at center top, rgba(0,0,0,0) 0 32%, rgba(0,0,0,0.9) 33%, rgba(0,0,0,1) 44%, rgba(0,0,0,1) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.42) 18%, rgba(0,0,0,0.78) 36%, rgba(0,0,0,1) 62%, rgba(0,0,0,1) 100%);
  z-index: 1;
}

.hero-geo-grid-left {
  left: 50%;
  clip-path: none;
}

.hero-geo-grid-right {
  display: none;
}

.hero-geo-globe {
  display: block;
  top: 27.5rem;
  left: 56%;
  width: min(78vw, 64rem);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  transform-style: flat;
  opacity: 0.9;
}

.hero-geo-ambient {
  display: none;
}

.hero-geo-globe-sphere {
  display: none;
}

.hero-geo-globe-atmosphere {
  display: none;
}

.hero-geo-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  filter: saturate(1.08) contrast(1.08);
}

.hero-geo-map-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(126, 150, 230, 0.18),
    0 18px 48px rgba(104, 131, 223, 0.1);
  background: radial-gradient(circle at 50% 44%, rgba(108, 145, 255, 0.16), rgba(123, 155, 255, 0.05) 58%, rgba(255, 255, 255, 0) 78%);
}

.hero-geo-map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: #f4f7fc;
  background-image:
    radial-gradient(circle, rgba(108, 139, 247, 0.34) 0 1.35px, transparent 1.7px),
    radial-gradient(circle at 50% 34%, rgba(127, 157, 255, 0.12), rgba(127, 157, 255, 0.02) 52%, transparent 72%);
  background-size: 8px 8px, 100% 100%;
  background-position: center;
  pointer-events: none;
}

.hero-geo-map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0) 58%, rgba(243, 247, 252, 0.06) 80%, rgba(243, 247, 252, 0.42) 100%);
  pointer-events: none;
}

.hero-geo-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.03) translateY(1.2%);
  opacity: 0.98;
  image-rendering: auto;
  filter: saturate(1.12) contrast(1.08) brightness(1.01);
  animation: heroGlobeSpin 16s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 1;
}

@keyframes heroGlobeSpin {
  0% {
    transform: scale(1.03) translateX(-2.2%) translateY(1.2%);
  }

  50% {
    transform: scale(1.03) translateX(0%) translateY(1.2%);
  }

  100% {
    transform: scale(1.03) translateX(2.2%) translateY(1.2%);
  }
}

.hero-geo-node {
  position: absolute;
  width: 0.92rem;
  height: 0.92rem;
  border: 3px solid #ffffff;
  background: transparent;
  box-shadow: none;
  z-index: 2;
}

.hero-geo-node-1 {
  left: 38.8%;
  top: 51.2%;
}

.hero-geo-node-2 {
  left: 60.2%;
  top: 42.6%;
}

.hero-geo-node-3 {
  left: 53.8%;
  top: 62.4%;
}

.hero-geo-badge {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(177, 184, 197, 0.72);
  border-radius: 0.6rem;
  background: rgba(248, 250, 255, 0.88);
  color: #222831;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  box-shadow: 0 10px 28px rgba(138, 148, 164, 0.08);
  backdrop-filter: blur(10px);
  z-index: 3;
}

.hero-geo-badge::before {
  display: inline-block;
  margin-inline-end: 0.7rem;
  font-weight: 700;
}

.hero-geo-badge-danger {
  top: 22.1rem;
  left: 24%;
}

.hero-geo-badge-danger::before {
  content: "×";
  color: #e14a44;
}

.hero-geo-badge-success {
  top: 28.5rem;
  right: 8%;
}

.hero-geo-badge-success::before {
  content: "✓";
  color: #4f78ff;
}

.hero-geo-badge-verified {
  top: 30.5rem;
  left: 10%;
}

.hero-geo-badge-verified::before {
  content: "✓";
  color: #4f78ff;
}

.eyebrow-dark {
  color: rgba(20, 22, 28, 0.58);
}

.hero-geo-badge-danger::before {
  content: "×";
}

.hero-geo-badge-success::before,
.hero-geo-badge-verified::before {
  content: "✓";
}

.hero-geo-panel {
  display: block;
  top: 20rem;
  right: 18%;
  width: min(22rem, 28vw);
  border: 1px solid rgba(190, 198, 212, 0.92);
  border-radius: 0.35rem;
  background: rgba(252, 253, 255, 0.98);
  box-shadow: 0 12px 26px rgba(145, 153, 170, 0.08);
  overflow: hidden;
  color: #1f232b;
  z-index: 3;
}

.hero-geo-panel-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid rgba(212, 217, 227, 0.95);
  font-size: 1.05rem;
}

.hero-geo-panel-head strong {
  font-family: "Google Sans Flex", "Inter", sans-serif;
  font-weight: 600;
}

.hero-geo-panel-pin {
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  background: rgba(82, 127, 248, 0.1);
  position: relative;
}

.hero-geo-panel-pin::before {
  content: "";
  position: absolute;
  inset: 0.42rem 0.56rem 0.72rem;
  border: 2px solid #1f232b;
  border-radius: 999px;
}

.hero-geo-panel-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.38rem;
  width: 0.36rem;
  height: 0.36rem;
  background: #1f232b;
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-geo-panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-geo-panel-metrics article {
  padding: 0.9rem 1rem 1rem;
  border-bottom: 1px solid rgba(212, 217, 227, 0.95);
}

.hero-geo-panel-metrics article + article {
  border-left: 1px solid rgba(212, 217, 227, 0.95);
}

.hero-geo-panel-metrics span {
  display: block;
  margin-bottom: 1rem;
  color: rgba(31, 35, 43, 0.82);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.hero-geo-panel-metrics strong {
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero-geo-panel-tags {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 1rem 1rem;
}

.hero-geo-panel-tags::before {
  content: "TOP SECTORS";
  color: rgba(31, 35, 43, 0.82);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.hero-geo-panel-tags span {
  width: max-content;
  padding: 0.24rem 0.6rem;
  border-radius: 0.14rem;
  font-size: 0.82rem;
  line-height: 1;
}

.hero-geo-panel-tags span:nth-child(1) {
  background: rgba(95, 147, 255, 0.15);
}

.hero-geo-panel-tags span:nth-child(2) {
  background: rgba(132, 238, 145, 0.42);
}

.hero-geo-panel-tags span:nth-child(3) {
  background: rgba(95, 147, 255, 0.14);
}

/* Arabic eyebrow in the download strip: keep it consistent with the hero tone. */
.download-strip .eyebrow-dark[dir="rtl"] {
  font-family: "Tajawal", "Google Sans Flex", "Alexandria", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-title,
.section-heading h2,
.download-strip h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5.7rem);
  line-height: 0.94;
  font-weight: 580;
  letter-spacing: -0.05em;
}

.section#product .section-heading {
  /* Keep the product heading open and editorial instead of dense and card-like. */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: min(58rem, 100%);
}

.section#product .section-heading .eyebrow {
  text-align: left;
}

.section#product .section-heading h2 {
  font-family: "Alexandria", "Google Sans Flex", "Tajawal", sans-serif;
  font-weight: 800;
  font-size: clamp(2.7rem, 4.8vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: min(18ch, 100%);
  text-wrap: balance;
  direction: rtl;
  unicode-bidi: plaintext;
  text-align: right;
}

.product-heading-modern {
  width: 100%;
  text-align: right;
}

.hero-title {
  position: relative;
}

.hero-cursor {
  position: absolute;
  left: -1.2rem;
  top: 0.4rem;
  width: 1rem;
  animation: blink 1.15s steps(1) infinite;
}

.hero-summary,
.section-summary,
.promo-copy,
.download-strip p,
.footer-note,
.feature-card p,
.usecase-card p,
.blog-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.hero-summary {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
  color: #11131a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.feature-card,
.usecase-card,
.promo-card,
.blog-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 248, 251, 1) 100%);
  box-shadow: var(--shadow);
}

.hero-loop-video {
  position: relative;
  z-index: 1;
}

.hero-loop-video {
  display: grid;
  gap: 1rem;
  height: 100%;
  padding: 1.25rem;
}

.code-window,
.logo-sequence {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
.panel-label,
.workspace-sidebar p,
.code-caption,
.code-title {
  margin: 0;
}

.loop-stage {
  position: relative;
  isolation: isolate;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(95, 147, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(18, 39, 70, 0.98) 0%, rgba(11, 24, 45, 1) 100%);
}

.code-sequence,
.logo-sequence {
  position: absolute;
  inset: 0;
}

.code-sequence {
  padding: 1.2rem;
  animation: code-sequence-cycle 10s ease-in-out infinite;
}

.code-window {
  height: 100%;
  padding: 1.35rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(11, 26, 50, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.code-heading {
  margin: 0 0 1rem;
  color: rgba(214, 224, 245, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.typing-line {
  width: 0;
  margin: 0 0 0.78rem;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  color: #e7f0ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  animation: typing-line-cycle 10s steps(32, end) infinite;
}

.typing-line span {
  display: inline-block;
  padding-inline: 0.2rem;
  background: linear-gradient(90deg, rgba(95, 147, 255, 0.16), rgba(255, 255, 255, 0));
}

.typing-line-1 {
  --target-width: 16.5ch;
  animation-delay: 0s;
}

.typing-line-2 {
  --target-width: 27ch;
  animation-delay: 0.55s;
}

.typing-line-3 {
  --target-width: 29ch;
  animation-delay: 1.1s;
}

.typing-line-4 {
  --target-width: 43ch;
  animation-delay: 1.65s;
}

.typing-line-5 {
  --target-width: 14ch;
  animation-delay: 2.2s;
}

.typing-line-6 {
  --target-width: 38ch;
  animation-delay: 2.75s;
}

.typing-caret {
  width: 0.16rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
  animation: typing-caret-cycle 10s linear infinite, blink 1s steps(1, end) infinite;
}

.logo-sequence {
  display: grid;
  place-items: center;
  justify-items: center;
  gap: 0.8rem;
  padding: 2rem;
  opacity: 0;
  transform: scale(0.94);
  animation: logo-sequence-cycle 10s ease-in-out infinite;
}

.logo-glow {
  position: absolute;
  width: 70%;
  height: 46%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 117, 255, 0.55) 0%, rgba(63, 117, 255, 0.12) 38%, transparent 72%);
  filter: blur(34px);
}

.loop-logo {
  position: relative;
  z-index: 1;
  width: min(86%, 28rem);
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(95, 147, 255, 0.28));
}

.logo-sequence-label,
.logo-sequence-copy {
  position: relative;
  z-index: 1;
  margin: 0;
}

.logo-sequence-label {
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.logo-sequence-copy {
  color: rgba(214, 224, 245, 0.72);
  font-size: 0.98rem;
}

@keyframes code-sequence-cycle {
  0%,
  54% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

  62%,
  100% {
    opacity: 0;
    transform: scale(0.985) translateY(0.6rem);
    filter: blur(8px);
  }
}

@keyframes typing-line-cycle {
  0%,
  8% {
    width: 0;
    opacity: 0;
  }

  16%,
  54% {
    width: var(--target-width);
    opacity: 1;
  }

  62%,
  100% {
    width: var(--target-width);
    opacity: 0;
  }
}

@keyframes typing-caret-cycle {
  0%,
  56% {
    opacity: 1;
  }

  62%,
  100% {
    opacity: 0;
  }
}

@keyframes logo-sequence-cycle {
  0%,
  58% {
    opacity: 0;
    transform: scale(0.94);
    filter: blur(12px);
  }

  70%,
  90% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: scale(1.02);
    filter: blur(10px);
  }
}

.icon-belt {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.4rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.icon-belt::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.icon-belt-track {
  display: block;
  padding: 1.35rem 0 1.75rem;
}

.icon-lane {
  overflow: hidden;
  min-height: 11.6rem;
}

.icon-lane-marquee {
  --lane-gap: 0.85rem;
  display: flex;
  gap: var(--lane-gap);
  width: max-content;
  will-change: transform;
  animation: icon-lane-marquee var(--lane-duration, 20s) linear infinite;
  animation-delay: var(--lane-delay, 0s);
}

.icon-lane-set {
  display: flex;
  gap: var(--lane-gap);
  align-items: flex-start;
  flex: none;
}

.icon-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  white-space: nowrap;
  flex: none;
}

.icon-pill-circle {
  width: 5.55rem;
  height: 5.55rem;
  justify-content: center;
  padding: 0;
  border-color: rgba(20, 22, 28, 0.05);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
  transform: translateY(var(--curve-offset, 0));
}

.icon-pill .symbol {
  color: #12161f;
  font-size: 2rem;
  font-variation-settings:
    "FILL" 0,
    "wght" 330,
    "GRAD" 0,
    "opsz" 48;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes icon-lane-marquee {
  0% {
    transform: translate3d(calc(-50% - (var(--lane-gap) / 2)), calc(var(--lane-drop, 0.8rem) * -1), 0);
  }

  100% {
    transform: translate3d(0, var(--lane-drop, 0.8rem), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .icon-lane-marquee {
    animation: none;
  }
}

.section-heading {
  margin-bottom: 2.6rem;
}

.section-heading h2 {
  max-width: 17ch;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.section-summary {
  max-width: 42rem;
  margin-top: 1rem;
}

#product .section-summary,
#product .section-heading p:not(.eyebrow) {
  max-width: 34rem;
  color: rgba(17, 19, 26, 0.6);
}

.section-heading-with-controls,
.section-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

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

#product #feature-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 3.2rem;
}

.feature-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  border: 0;
  background: transparent;
  box-shadow: none;
}

#product #feature-grid .feature-card {
  display: grid;
  grid-template-columns: minmax(22rem, 31rem) minmax(0, 1fr);
  align-items: center;
  gap: 2.4rem;
  border: 0;
  background: transparent !important;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}

#product #feature-grid .feature-card .feature-copy {
  order: 2;
}

#product #feature-grid .feature-card .feature-media,
#product #feature-grid .feature-card .feature-media-dashboard {
  order: 1;
}

.feature-card.featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 34rem);
  align-items: center;
  padding: 1.5rem;
}

#product #feature-grid .feature-card.featured {
  grid-column: auto;
  grid-template-columns: minmax(22rem, 31rem) minmax(0, 1fr);
  padding: 0;
}

#product #feature-grid .feature-card-dashboard {
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

#product #feature-grid .feature-card-dashboard .feature-copy,
#product #feature-grid .feature-card-dashboard .feature-media-dashboard {
  order: initial;
}

#product #feature-grid .feature-card-dashboard .feature-copy {
  max-width: 42rem;
}

.feature-card.video-card .feature-media {
  min-height: 18rem;
}

.feature-copy h3,
.promo-card h3,
.usecase-card h3,
.blog-card h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-family: "Tajawal", "Google Sans Flex", "Alexandria", sans-serif;
  font-weight: 900;
}

.blog-card-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.blog-card-title-row h3 {
  margin: 0 0 0.85rem;
}

.blog-card-price {
  flex: 0 0 auto;
  font-family: "Tajawal", "Google Sans Flex", "Alexandria", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: rgba(17, 19, 26, 0.72);
  letter-spacing: -0.01em;
}

/* Product featured copy: keep it modern, crisp, and aligned with the hero typography. */
.section#product .feature-card.featured .feature-copy > p {
  font-family: "Tajawal", "Google Sans Flex", "Alexandria", sans-serif;
  color: rgba(17, 19, 26, 0.74);
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.feature-copy.is-rtl {
  text-align: right;
}

.feature-copy.is-rtl h3 {
  font-family: "Tajawal", "Google Sans Flex", "Alexandria", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.feature-copy.is-rtl p:not(.card-label) {
  font-family: "Tajawal", "Google Sans Flex", "Alexandria", sans-serif;
  letter-spacing: -0.01em;
}

#product #feature-grid .feature-copy {
  background: transparent !important;
  border: 0;
  box-shadow: none;
  padding-inline: 0.1rem;
  justify-self: stretch;
}

.feature-dual-cta-block h3[dir="rtl"] {
  font-family: "Tajawal", "Google Sans Flex", "Alexandria", sans-serif;
  font-weight: 900;
  text-align: right;
  letter-spacing: -0.02em;
}

.card-label,
.blog-meta,
.promo-label {
  margin: 0 0 0.95rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.feature-media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(20, 22, 28, 0.06);
  background: rgba(20, 22, 28, 0.04);
}

#product #feature-grid .feature-media {
  border: 0;
  background: transparent !important;
  border-radius: 1.6rem;
  width: 100%;
}

.feature-media img,
.feature-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.feature-media-dashboard {
  background:
    radial-gradient(circle at 22% 16%, rgba(86, 137, 255, 0.3), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(92, 128, 255, 0.22), transparent 28%),
    radial-gradient(circle at 76% 82%, rgba(52, 103, 214, 0.18), transparent 26%),
    linear-gradient(135deg, #17365e 0%, #0f2f59 48%, #183e73 100%);
}

.dashboard-shell {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  color: var(--brand-navy);
}

.dashboard-topline {
  padding: 1.2rem 1.25rem 0.25rem;
}

.dashboard-topline p,
.dashboard-summary-copy p,
.dashboard-module-list p,
.dashboard-chart-card p {
  margin: 0;
  color: var(--brand-navy);
  font-size: 0.88rem;
}

.dashboard-topline h4 {
  margin: 0.4rem 0 0;
  color: var(--brand-navy);
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.dashboard-summary,
.metric-card,
.dashboard-module-list,
.dashboard-chart-card,
.dashboard-footer-metrics article {
  border: 1px solid rgba(113, 157, 255, 0.16);
  border-radius: 1.6rem;
  background: rgba(202, 223, 249, 0.9);
  box-shadow: 0 10px 28px rgba(12, 37, 82, 0.14);
}

.dashboard-summary {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  color: #14161C;
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.dashboard-tabs span {
  padding: 0.52rem 0.9rem;
  border: 1px solid rgba(113, 157, 255, 0.16);
  border-radius: 999px;
  background: rgba(202, 223, 249, 0.92);
  color: #14161C;
  font-size: 0.92rem;
  font-weight: 600;
}

.dashboard-summary-copy {
  display: grid;
  gap: 0.35rem;
  text-align: right;
}

.dashboard-summary-copy h5 {
  margin: 0;
  color: #14161C;
  font-family: "Alexandria", "Google Sans Flex", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.45;
}

.dashboard-summary .dashboard-summary-copy p {
  color: #14161C;
}

.dashboard-metrics,
.dashboard-footer-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.metric-card,
.dashboard-footer-metrics article {
  padding: 1rem 1.05rem;
}

.metric-card span,
.dashboard-footer-metrics span {
  display: block;
  color: var(--brand-navy);
  font-size: 0.95rem;
}

.metric-card strong,
.dashboard-footer-metrics strong {
  display: block;
  margin-top: 0.65rem;
  color: var(--brand-navy);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 0.9rem;
}

.dashboard-module-list,
.dashboard-chart-card {
  padding: 1rem;
}

.dashboard-module-list {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.module-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(86, 57, 113, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.95);
}

.module-chip span {
  color: var(--brand-navy);
}

.module-chip strong {
  color: var(--brand-navy);
  font-size: 1.02rem;
}

.dashboard-chart-card {
  display: grid;
  gap: 0.7rem;
}

.dashboard-chart {
  min-height: 16rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 239, 245, 0.84) 0%, rgba(255, 246, 240, 0.74) 100%);
  overflow: hidden;
}

.dashboard-chart svg {
  width: 100%;
  height: 100%;
}

.chart-area {
  fill: rgba(181, 145, 255, 0.14);
}

.chart-line {
  fill: none;
  stroke: url(#dashboardLine);
  stroke-width: 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 740;
  stroke-dashoffset: 740;
  animation: chart-draw 3.8s ease-in-out infinite alternate;
}

.dashboard-footer-metrics article {
  text-align: center;
}

@keyframes chart-draw {
  0% {
    stroke-dashoffset: 740;
    transform: translateY(8px);
  }

  55%,
  100% {
    stroke-dashoffset: 0;
    transform: translateY(0);
  }
}

@keyframes dotted-drift {
  0% {
    transform: translate3d(0, 0, 0);
    background-position: 0 0;
  }

  50% {
    transform: translate3d(0, -6px, 0);
    background-position: 6px 8px;
  }

  100% {
    transform: translate3d(0, 0, 0);
    background-position: 12px 16px;
  }
}

@keyframes dev-dot-form {
  0%,
  12% {
    opacity: 0;
    transform: translate3d(var(--dot-scatter-x), var(--dot-scatter-y), 0) scale(0.2);
  }

  35%,
  82% {
    opacity: 0.92;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 0.38;
    transform: translate3d(calc(var(--dot-scatter-x) * -0.1), calc(var(--dot-scatter-y) * -0.1), 0) scale(0.84);
  }
}

@keyframes dual-cta-type {
  0%,
  12% {
    clip-path: inset(0 100% 0 0);
    opacity: 0.35;
  }

  48%,
  78% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes dual-cta-caret {
  0%,
  46% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.feature-media-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  isolation: isolate;
}

.feature-media-overlay-mask,
.feature-media-overlay-text {
  position: absolute;
}

.feature-media-overlay-sdk .feature-media-overlay-mask {
  left: 13%;
  right: 13%;
  top: 33%;
  bottom: 33%;
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse at center,
      rgba(2, 7, 18, 1) 0%,
      rgba(2, 7, 18, 0.98) 28%,
      rgba(2, 7, 18, 0.84) 46%,
      rgba(2, 7, 18, 0.42) 62%,
      rgba(2, 7, 18, 0.06) 78%,
      transparent 92%
    );
  filter: blur(18px);
  transform: scale(1.04, 0.82);
  opacity: 0.96;
}

.feature-media-overlay-sdk::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 18%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 142, 255, 0.22) 0%, rgba(92, 142, 255, 0) 72%);
  filter: blur(16px);
  opacity: 0.9;
}

.feature-media-overlay-sdk .feature-media-overlay-text {
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  color: #eff4ff;
  direction: rtl;
  white-space: nowrap;
  font-family: "Alexandria", "Google Sans Flex", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  text-shadow:
    0 0 10px rgba(148, 184, 255, 0.32),
    0 0 28px rgba(88, 135, 255, 0.22),
    0 0 46px rgba(10, 24, 52, 0.74);
  filter: drop-shadow(0 0 12px rgba(88, 135, 255, 0.2));
}

.feature-link,
.blog-link,
.usecase-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  color: var(--dark-text);
  font-weight: 600;
}

.feature-link .symbol,
.blog-link .symbol,
.usecase-link .symbol {
  font-size: 1.15rem;
}

.card-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(19rem, 23.5rem);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x proximity;
}

.card-rail::-webkit-scrollbar {
  height: 0.45rem;
}

.card-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(20, 22, 28, 0.14);
}

.usecase-card,
.blog-card {
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
}

.blog-card-media {
  position: relative;
}

.usecase-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.blog-card-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(3, 10, 23, 0.64) 0%, rgba(3, 10, 23, 0.24) 28%, rgba(3, 10, 23, 0) 62%);
}

.blog-card-overlay span {
  color: #eef4ff;
  direction: rtl;
  white-space: nowrap;
  font-family: "Alexandria", "Google Sans Flex", sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-shadow:
    0 0 12px rgba(130, 170, 255, 0.34),
    0 0 28px rgba(63, 112, 234, 0.18);
}

.usecase-card-body,
.blog-card-body {
  padding: 1.2rem;
}

.usecase-card-body h3,
.blog-card-body h3 {
  font-size: 1.45rem;
}

.rail-controls {
  display: inline-flex;
  gap: 0.6rem;
}

.icon-button {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark-text);
}

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

.promo-card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.promo-card-muted {
  background: linear-gradient(180deg, rgba(244, 247, 255, 1) 0%, rgba(235, 240, 249, 1) 100%);
}

.dual-cta-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.75rem;
  border: 1px solid rgba(20, 22, 28, 0.06);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  color: #4b4f5d;
  font-size: 0.9rem;
}

.feature-dual-cta-block h3 {
  margin: 1rem 0 2rem;
  color: #171920;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.dual-cta-button {
  min-width: 10.5rem;
}

.feature-card-dual-cta {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#product #feature-grid .feature-card-dual-cta {
  grid-template-columns: 1fr;
  gap: 0;
}

.feature-card-dual-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.feature-dual-cta-shell {
  position: relative;
  min-height: 100%;
  display: grid;
  gap: 1rem;
  padding: 0.25rem 0;
}

.feature-dev-dots {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.feature-dev-dots-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(95, 147, 255, 0.22) 0.55px, transparent 0.72px),
    radial-gradient(circle, rgba(95, 147, 255, 0.12) 0.5px, transparent 0.7px);
  background-size: 19px 19px, 19px 19px;
  background-position: 0 0, 9px 9px;
  opacity: 0.56;
  animation: dotted-drift 14s ease-in-out infinite;
}

.dev-dot {
  position: absolute;
  left: var(--dot-x);
  top: var(--dot-y);
  width: 4px;
  height: 4px;
  margin-left: -2px;
  margin-top: -2px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
  opacity: 0;
  transform: translate3d(var(--dot-scatter-x), var(--dot-scatter-y), 0) scale(0.4);
  animation: dev-dot-form 6.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-delay: var(--dot-delay);
}

.feature-dual-cta-block,
.dual-cta-tag,
.dual-cta-button {
  position: relative;
  z-index: 1;
}

.dev-dot-red {
  color: #ff5f57;
  background: #ff5f57;
}

.dev-dot-green {
  color: #46d17f;
  background: #46d17f;
}

.dev-dot-blue {
  color: #5f93ff;
  background: #5f93ff;
}

.dual-cta-typing {
  position: relative;
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: dual-cta-type 5.8s steps(24, end) infinite;
}

.dual-cta-typing::after {
  content: "";
  position: absolute;
  top: 0.08em;
  bottom: 0.08em;
  right: -0.14em;
  width: 0.08em;
  border-radius: 999px;
  background: rgba(34, 73, 178, 0.7);
  animation: dual-cta-caret 5.8s steps(1, end) infinite;
}

.dual-cta-typing-delay {
  animation-delay: 0.8s;
}

.dual-cta-typing-delay::after {
  animation-delay: 0.8s;
}

.feature-dual-cta-block {
  min-height: 18.25rem;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  padding: 0.15rem 1rem 1.35rem;
}

.download-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  align-items: center;
  gap: 2rem;
  margin-top: 6rem;
  margin-bottom: 2rem;
  padding: 2.25rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 24% 18%, rgba(111, 151, 255, 0.12), transparent 22%),
    radial-gradient(circle at 70% 50%, rgba(84, 129, 255, 0.16), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(56, 104, 225, 0.11), transparent 26%),
    linear-gradient(135deg, #173a69 0%, #163d73 52%, #204b86 100%);
  color: var(--dark-text);
  border: 1px solid rgba(82, 131, 232, 0.32);
  box-shadow: 0 24px 54px rgba(19, 53, 103, 0.16);
}

.download-strip h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  max-width: 12ch;
  color: #f4f8ff;
}

.download-strip p {
  color: rgba(224, 234, 250, 0.84);
  max-width: 34rem;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-logo-band {
  display: grid;
  place-items: center;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0 0.3rem;
  overflow: hidden;
}

.footer-logo-band-image {
  width: min(100%, 52rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(45, 96, 255, 0.24));
  opacity: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
  padding: 2rem 2.2rem 2.4rem;
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 20% 16%, rgba(86, 137, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 84%, rgba(52, 103, 214, 0.16), transparent 26%),
    linear-gradient(135deg, #17365e 0%, #0f2f59 48%, #183e73 100%);
  color: #f4f6fb;
  border: 1px solid rgba(59, 121, 255, 0.34);
  box-shadow: 0 24px 54px rgba(17, 52, 106, 0.16);
}

.footer-column {
  display: grid;
  gap: 0.9rem;
}

.footer-column h3,
.footer-column h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-column h4 {
  font-size: 1.15rem;
}

.footer-kicker,
.footer-description,
.footer-links li,
.footer-links a {
  color: rgba(228, 232, 242, 0.84);
  font-size: 1rem;
  line-height: 1.85;
}

.footer-kicker,
.footer-description {
  margin: 0;
}

.footer-description {
  max-width: 34rem;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-column {
  justify-items: start;
}

.intro-dialog {
  width: min(90vw, 68rem);
  padding: 0;
  border: 0;
  border-radius: 1.6rem;
  background: #05070d;
  overflow: hidden;
}

.intro-dialog::backdrop {
  background: rgba(3, 4, 7, 0.72);
  backdrop-filter: blur(8px);
}

.terms-page {
  padding-top: 5.5rem;
}

.terms-card {
  width: min(100%, 68rem);
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.4rem;
}

.terms-card h3 {
  margin: 1.35rem 0 0.6rem;
  font-size: 1.25rem;
  font-family: "Tajawal", "Google Sans Flex", "Alexandria", sans-serif;
}

.terms-card h3:first-child {
  margin-top: 0;
}

.terms-card p {
  margin: 0 0 0.75rem;
  color: rgba(17, 19, 26, 0.74);
  line-height: 1.8;
}

.terms-divider {
  height: 1px;
  margin: 1.4rem 0;
  border: 0;
  background: rgba(17, 19, 26, 0.08);
}

.terms-subtitle {
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: "Tajawal", "Google Sans Flex", "Alexandria", sans-serif;
}

.terms-meta {
  margin: 0 0 1rem;
  color: rgba(17, 19, 26, 0.6);
  font-size: 0.95rem;
}

.terms-list {
  margin: 0 0 1.1rem;
  padding: 0 1.1rem 0 0;
  color: rgba(17, 19, 26, 0.74);
  line-height: 1.85;
}

.terms-list li {
  margin: 0.2rem 0;
}

.terms-logo-footer {
  width: min(100%, 68rem);
  margin: 2.4rem auto 0;
  display: grid;
  place-items: center;
  padding: 1.4rem 0 0.2rem;
}

.terms-logo {
  width: min(100%, 34rem);
  height: auto;
  filter: drop-shadow(0 22px 42px rgba(15, 23, 42, 0.12));
}

.dialog-showcase {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 4rem 2rem 3rem;
  text-align: center;
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top, rgba(95, 147, 255, 0.2), transparent 30%),
    linear-gradient(180deg, #0b1019 0%, #05070d 100%);
}

.dialog-showcase h2,
.dialog-showcase p {
  margin: 0;
}

.dialog-showcase h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.dialog-showcase p {
  max-width: 34rem;
  color: rgba(214, 224, 245, 0.76);
  line-height: 1.7;
}

.dialog-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(3, 4, 8, 0.56);
  color: var(--text-inverse);
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.12;
  }
}

@media (max-width: 1024px) {
  .site-header {
    border-radius: 1.2rem;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .download-strip,
  .promo-grid,
  .feature-card.featured {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 48rem;
  }

  .hero-copy-centered {
    width: min(100%, 56rem);
    padding-top: 1.8rem;
  }

  .hero-title-wide {
    font-size: clamp(3.6rem, 8vw, 5.4rem);
  }

  .hero-newsbar {
    margin-top: 1.25rem;
  }

  .hero-geo-globe {
    width: min(86vw, 52rem);
    top: 28.5rem;
    left: 55%;
    opacity: 0.88;
  }

  .hero-geo-panel {
    top: 21rem;
    right: 7%;
    width: min(18rem, 32vw);
  }

  .hero-geo-grid {
    top: 36rem;
    width: min(110vw, 66rem);
    height: 14rem;
  }

  .hero-geo-badge {
    font-size: 0.78rem;
    padding: 0.62rem 0.85rem;
  }

  .hero-geo-badge-danger {
    top: 22rem;
    left: 15%;
  }

  .hero-geo-badge-success {
    top: 28rem;
    right: 5%;
  }

  .hero-geo-badge-verified {
    top: 30.4rem;
    left: 6%;
  }

  .top-nav {
    top: 0.5rem;
  }

  .hero-button-primary,
  .hero-button-secondary {
    min-width: 0;
  }

  .loop-stage {
    min-height: 20rem;
  }

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

  .feature-card.featured {
    grid-column: auto;
  }

  #product #feature-grid .feature-card,
  #product #feature-grid .feature-card.featured {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  #product #feature-grid .feature-card .feature-copy,
  #product #feature-grid .feature-card .feature-media,
  #product #feature-grid .feature-card .feature-media-dashboard {
    order: initial;
  }

  .dashboard-metrics,
  .dashboard-footer-metrics,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .feature-dual-cta-block {
    min-height: 15rem;
  }

  .section-heading-with-controls,
  .section-actions,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .top-nav {
    margin-top: 0;
    padding: 0.75rem 0.9rem;
  }

  .top-nav-logo img {
    height: 4.7rem;
  }

  .top-nav-link {
    padding: 0.55rem 0.8rem;
  }

  .site-header {
    padding: 0.9rem;
  }

  .button-compact {
    display: none;
  }

  .header-menu-button {
    display: inline-flex;
  }

  .header-menu-panel {
    right: 0.9rem;
    left: auto;
  }

  .section {
    padding-top: 4.5rem;
  }

  .hero {
    min-height: 58rem;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .hero-title,
  .section-heading h2,
  .download-strip h2 {
    letter-spacing: -0.06em;
  }

  .section#product .section-heading {
    max-width: 100%;
  }

  .section#product .section-heading h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 6.4vw, 2.7rem);
    line-height: 1.18;
    letter-spacing: -0.015em;
    text-wrap: pretty;
  }

  .hero-cursor {
    left: -0.7rem;
    top: 0.3rem;
  }

  .dashboard-shell {
    padding: 0.8rem;
  }

  .feature-card-dual-cta::before {
    background: none;
  }

  .feature-dev-dots-grid {
    background-size: 16px 16px, 16px 16px, 16px 16px;
  }

  .dev-dot {
    width: 3px;
    height: 3px;
    margin-left: -1.5px;
    margin-top: -1.5px;
  }

  .feature-dual-cta-block {
    min-height: 12.75rem;
    padding: 0.1rem 0.8rem 1rem;
  }

  .feature-dual-cta-block h3 {
    margin-bottom: 1.35rem;
    font-size: clamp(2rem, 8vw, 3.15rem);
  }

  .dashboard-topline {
    padding: 0.8rem 0.85rem 0.1rem;
  }

  .dashboard-summary,
  .metric-card,
  .dashboard-module-list,
  .dashboard-chart-card,
  .dashboard-footer-metrics article {
    border-radius: 1.25rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 1.6rem 1.2rem 1.9rem;
  }

  .footer-logo-band {
    margin-top: 0.6rem;
    margin-bottom: 0.35rem;
  }

  .footer-logo-band-image {
    width: min(100%, 30rem);
  }

  .footer-description {
    max-width: none;
    font-size: 0.98rem;
  }

  .dashboard-chart {
    min-height: 12.8rem;
  }

  .feature-media-overlay-sdk .feature-media-overlay-mask {
    left: 10%;
    right: 10%;
    top: 34%;
    bottom: 34%;
    transform: scale(1.05, 0.88);
  }

  .feature-media-overlay-sdk::after {
    width: 56%;
    height: 21%;
  }

  .feature-media-overlay-sdk .feature-media-overlay-text {
    font-size: clamp(1.7rem, 6.7vw, 2.7rem);
    letter-spacing: -0.035em;
  }

  .icon-lane {
    min-height: 9.6rem;
  }

  .icon-pill-circle {
    width: 4.35rem;
    height: 4.35rem;
  }

  .icon-pill .symbol {
    font-size: 1.65rem;
  }

  .code-window {
    padding: 1rem;
  }

  .code-heading {
    margin-bottom: 0.8rem;
  }

  .typing-line {
    font-size: 0.78rem;
  }

  .logo-sequence {
    padding: 1.4rem;
  }

  .logo-sequence-copy {
    text-align: center;
    font-size: 0.88rem;
  }

  .card-rail {
    grid-auto-columns: minmax(16.5rem, 84vw);
  }

  .download-strip {
    padding: 1.5rem;
  }

  .download-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-copy-centered {
    width: min(100%, 40rem);
    padding-top: 1.2rem;
  }

  .hero-title-wide {
    width: 100%;
    max-width: none;
    font-size: clamp(3rem, 11vw, 4.1rem);
    line-height: 0.96;
    text-wrap: balance;
  }

  .hero-summary-centered {
    max-width: 22rem;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .hero-newsbar {
    gap: 0.55rem;
    margin-top: 0.9rem;
    margin-bottom: 0.8rem;
    font-size: 0.74rem;
  }

  .hero-newsbar-tag {
    min-height: 1.7rem;
    padding-inline: 0.55rem;
    font-size: 0.72rem;
  }

  .hero-particle-canvas {
    width: 100%;
    height: 100%;
  }

  .hero-brandline {
    margin-bottom: 1.1rem;
  }

  .hero-brandline-logo {
    width: 1.45rem;
    height: 1.45rem;
  }

  .hero-brandline-text {
    font-size: 1rem;
  }

  .hero-actions-dual {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 21rem);
  }

  .hero-button-primary,
  .hero-button-secondary {
    width: 100%;
  }

  .hero-particle-stage {
    width: min(100%, 36rem);
  }

  .hero-particle-stage::after {
    inset: 25rem 8% auto;
    height: 24rem;
    opacity: 0.74;
  }

  .hero-geo-network {
    height: 50rem;
    opacity: 0.3;
  }

  .hero-geo-grid {
    top: 34rem;
    width: min(116vw, 32rem);
    height: 10rem;
    opacity: 0.74;
    background-size: 18px 18px, 18px 18px;
  }

  .hero-geo-globe {
    width: min(112vw, 34rem);
    top: 28.5rem;
    left: 55%;
    opacity: 0.86;
  }

  .hero-geo-panel {
    top: 21rem;
    right: 4%;
    width: min(13.5rem, 56vw);
  }

  .hero-geo-badge {
    font-size: 0.68rem;
    padding: 0.55rem 0.72rem;
    letter-spacing: 0.02em;
  }

  .hero {
    min-height: 60rem;
    padding-bottom: 5rem;
  }

  .hero-copy-centered {
    padding-top: 1.2rem;
  }

  .hero-particle-stage::after {
    inset: 28rem 8% auto;
    height: 25rem;
  }

  .hero-geo-network {
    height: 58rem;
  }

  .hero-geo-grid {
    top: 35rem;
  }

  .hero-geo-globe {
    top: 29.5rem;
  }

  .hero-geo-panel {
    top: 22rem;
  }

  .hero-geo-badge-danger {
    top: 19.8rem;
    left: 8%;
  }

  .hero-geo-badge-success {
    top: 25.6rem;
    right: 6%;
  }

  .hero-geo-badge-verified {
    top: 27.7rem;
    left: 3%;
  }

  .top-nav {
    top: 0.4rem;
    width: min(calc(100% - 1rem), var(--max-width));
    padding: 0.7rem 0.8rem;
  }

  .top-nav-logo img {
    height: 1.9rem;
  }

  .button,
  .ghost-action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-geo-globe {
    animation: none;
  }
}

/* Hero reset: match the requested composition with text first, visual second. */
.hero {
  width: min(calc(100% - 0.3rem), 100%);
  max-width: none;
  min-height: 50rem;
  padding-top: 6rem;
  padding-bottom: 1.5rem;
  background: #f7f9fc;
  overflow: hidden;
}

.hero-copy-centered {
  z-index: 20;
  width: min(100%, 80rem);
  padding-top: 0;
  gap: 0;
}

.hero-newsbar {
  gap: 0.75rem;
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.05);
  font-size: 0.95rem;
}

.hero-newsbar-tag {
  min-height: auto;
  padding: 0.35rem 0.7rem;
  border-radius: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-brandline {
  display: inline-flex;
  margin-bottom: 0.8rem;
}

.hero-brandline-text {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.hero-title-wide {
  width: min(100%, 64rem);
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.hero-summary-centered {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: rgba(15, 23, 42, 0.7);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions-centered {
  margin-top: 2rem;
}

.hero-actions-dual {
  gap: 0;
}

.hero-button-primary-blue {
  min-width: 12.5rem;
  min-height: 3.5rem;
  padding-inline: 2rem;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.2);
}

.hero-visual-stage {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 0.5rem), 100rem);
  max-width: none;
  height: 24rem;
  margin: 3rem auto 0;
  overflow: hidden;
}

.hero-particle-stage,
.hero-particle-glow,
.hero-particle-stage::after,
.hero-geo-grid,
.hero-geo-node,
.hero-geo-ambient,
.hero-geo-globe-sphere,
.hero-geo-globe-atmosphere {
  display: none !important;
}

.hero-geo-network,
.hero-geo-globe,
.hero-geo-badge,
.hero-geo-panel {
  position: absolute;
}

.hero-geo-network {
  inset: 0;
  height: 100%;
  opacity: 0.55;
  background-image:
    linear-gradient(130deg, transparent 0 18%, rgba(190, 198, 214, 0.36) 18.25%, transparent 18.75%),
    linear-gradient(34deg, transparent 0 30%, rgba(190, 198, 214, 0.28) 30.25%, transparent 30.75%),
    linear-gradient(156deg, transparent 0 57%, rgba(190, 198, 214, 0.22) 57.25%, transparent 57.75%),
    linear-gradient(78deg, transparent 0 72%, rgba(190, 198, 214, 0.22) 72.25%, transparent 72.75%);
  background-size: 33rem 16rem, 29rem 18rem, 40rem 20rem, 36rem 18rem;
  background-position: left top, 14% 7%, 76% 0, right 10%;
}

.hero-geo-globe {
  top: -0.2rem;
  left: 50%;
  width: min(65.5rem, 92vw);
  height: min(65.5rem, 92vw);
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  opacity: 0.84;
  z-index: 1;
  pointer-events: none;
  box-shadow:
    inset -3.4rem -2.6rem 5.5rem rgba(43, 84, 210, 0.16),
    inset 2.1rem 2rem 4rem rgba(255, 255, 255, 0.44),
    0 2.2rem 4.5rem rgba(77, 116, 255, 0.12);
  filter: saturate(1.04);
  will-change: transform;
  animation: heroGlobeFloat 8s ease-in-out infinite;
}

.hero-geo-globe::before,
.hero-geo-globe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.hero-geo-globe::before {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.14) 15%, rgba(255, 255, 255, 0.03) 28%, transparent 42%),
    radial-gradient(circle at 64% 58%, transparent 0 58%, rgba(15, 23, 42, 0.05) 76%, rgba(15, 23, 42, 0.12) 100%);
  mix-blend-mode: screen;
}

.hero-geo-globe::after {
  inset: 1.1%;
  border: 1px solid rgba(173, 196, 255, 0.4);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1.8rem 3.5rem rgba(18, 39, 94, 0.1);
}

.hero-geo-map-frame {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: none;
  background: transparent;
  clip-path: circle(50% at 50% 50%);
  -webkit-mask-image: radial-gradient(circle at center, #000 64%, #000 69%, transparent 74%);
  mask-image: radial-gradient(circle at center, #000 64%, #000 69%, transparent 74%);
  transform: translateZ(0);
}

.hero-geo-map-frame::before {
  background-color: transparent;
  background-image: none;
}

.hero-geo-map-frame::after {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0) 58%, rgba(247, 249, 252, 0.03) 74%, rgba(247, 249, 252, 0.12) 88%, rgba(247, 249, 252, 0.2) 100%);
}

.hero-geo-map-image {
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.02);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  will-change: transform, filter;
  filter: saturate(1.08) contrast(1.18) brightness(1.02);
  animation: heroGlobeRotate 11.5s linear infinite alternate;
}

.hero-geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.08);
  color: #222831;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.18em;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  backdrop-filter: blur(8px);
  z-index: 3;
  animation: heroCardFloat 7s ease-in-out infinite;
}

.hero-geo-badge::before,
.hero-geo-badge-danger::before,
.hero-geo-badge-success::before,
.hero-geo-badge-verified::before {
  content: none;
}

.hero-geo-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
}

.hero-geo-badge-icon-danger {
  color: #ef4444;
}

.hero-geo-badge-icon-verified {
  color: #2563eb;
}

.hero-geo-badge-danger {
  left: 14%;
  top: 7rem;
  animation-delay: 0s;
}

.hero-geo-badge-verified {
  left: 8%;
  top: 14.75rem;
  animation-delay: 1.1s;
}

.hero-geo-badge-success {
  right: -0.5rem;
  top: 8.25rem;
  animation-delay: 0.65s;
}

@keyframes heroGlobeRotate {
  0% {
    transform: scale(1.02) translateX(-2.2%);
  }

  50% {
    transform: scale(1.025) translateX(0%);
  }

  100% {
    transform: scale(1.02) translateX(2.2%);
  }
}

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

  50% {
    transform: translateX(calc(-50% + 0.6rem));
  }
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.45rem);
  }
}

.hero-geo-panel {
  top: -0.25rem;
  right: 11.5%;
  width: 22.5rem;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 60px rgba(148, 163, 184, 0.2);
  overflow: hidden;
  color: #0f172a;
  z-index: 4;
}

.hero-geo-panel-head {
  gap: 0.75rem;
  padding: 1rem 1.25rem;
}

.hero-geo-panel-pin {
  width: 2rem;
  height: 2rem;
  border-radius: 0.35rem;
}

.hero-geo-panel-metrics article {
  padding: 1.15rem 1.25rem 1.25rem;
}

.hero-geo-panel-metrics span,
.hero-geo-panel-tags::before {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}

.hero-geo-panel-metrics strong {
  font-size: 3rem;
  line-height: 1;
}

.hero-geo-panel-tags {
  gap: 0.5rem;
  padding: 1.15rem 1.25rem 1.25rem;
}

.hero-geo-panel-tags span {
  border-radius: 0.25rem;
  padding: 0.36rem 0.65rem;
  font-size: 0.78rem;
}

@media (max-width: 1100px) {
  .hero {
    width: min(calc(100% - 0.2rem), 100%);
    max-width: none;
    min-height: 46rem;
  }

  .hero-visual-stage {
    width: min(calc(100% - 0.3rem), 100%);
    height: 21rem;
    margin-top: 2.75rem;
  }

  .hero-geo-globe {
    top: -0.25rem;
    width: min(58rem, 96vw);
    height: min(58rem, 96vw);
  }

  .hero-geo-panel {
    right: 7%;
    width: min(22.5rem, 34vw);
  }

  .hero-geo-badge-danger {
    left: 10%;
  }

  .hero-geo-badge-verified {
    left: 5%;
  }

  .hero-geo-badge-success {
    right: 0;
  }
}

@media (max-width: 820px) {
  .top-nav {
    width: min(calc(100% - 0.35rem), var(--max-width));
    padding-inline: 0.9rem;
  }

  .hero {
    width: min(calc(100% - 0.1rem), 100%);
    max-width: none;
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 1.25rem;
    overflow: hidden;
  }

  .hero-copy-centered {
    width: 100%;
    padding-inline: 0.7rem;
  }

  .hero-newsbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.7rem 0.85rem;
    font-size: 0.82rem;
  }

  .hero-title-wide {
    width: min(100%, 22rem);
    font-size: clamp(2.2rem, 7vw, 3.1rem);
    line-height: 1.02;
  }

  .hero-summary-centered {
    max-width: 22rem;
    margin-top: 1.1rem;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero-actions-centered {
    margin-top: 1.5rem;
  }

  .hero-button-primary-blue {
    width: min(100%, 21rem);
  }

  .hero-visual-stage {
    width: min(calc(100% - 0.1rem), 100%);
    height: 25rem;
    margin-top: 2.2rem;
  }

  .hero-geo-network {
    opacity: 0.34;
  }

  .hero-geo-globe {
    top: 6.7rem;
    width: min(30rem, 108vw);
    height: min(30rem, 108vw);
    opacity: 0.72;
    animation-duration: 7s;
  }

  .hero-geo-map-image {
    object-position: center 30%;
    transform: scale(1.1);
    animation-duration: 9s;
  }

  .hero-geo-badge {
    padding: 0.65rem 0.8rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero-geo-badge-danger {
    left: 1.2rem;
    top: 8rem;
  }

  .hero-geo-badge-verified {
    left: 0.85rem;
    top: 11.4rem;
  }

  .hero-geo-badge-success {
    right: 0.25rem;
    top: 7.7rem;
  }

  .hero-geo-panel {
    top: 9.7rem;
    right: 0.5rem;
    width: min(17.5rem, calc(100% - 1rem));
  }

  .hero-geo-panel-metrics strong {
    font-size: 2.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-geo-globe,
  .hero-geo-badge,
  .hero-geo-map-image {
    animation: none;
  }
}

.feature-ide-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1.08fr);
  gap: 3.5rem;
  align-items: center;
  min-height: 40rem;
}

.feature-ide-copy {
  max-width: 30rem;
  padding-inline-start: 1.5rem;
}

.feature-ide-heading {
  margin: 0;
  color: #0f1115;
  font-family: "Google Sans Flex", "Alexandria", sans-serif;
  font-size: clamp(2.9rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-align: right;
  text-wrap: balance;
}

.feature-ide-summary {
  margin: 1.7rem 0 0;
  max-width: 27rem;
  color: rgba(15, 17, 21, 0.84);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-ide-button {
  margin-top: 2.1rem;
  min-width: 13.5rem;
  min-height: 3.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.feature-ide-visual {
  position: relative;
  inset: 0;
  width: 100%;
  min-width: 0;
  min-height: 38rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(250, 251, 255, 0.88), rgba(248, 249, 252, 0.96));
  overflow: hidden;
}

.feature-ide-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 58%, rgba(255, 208, 94, 0.42), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(141, 236, 255, 0.34), transparent 28%),
    radial-gradient(circle at 52% 26%, rgba(255, 176, 156, 0.2), transparent 24%);
  filter: blur(24px);
  opacity: 0.9;
}

.feature-ide-window {
  position: absolute;
  inset: 8rem 2.2rem 5rem 2.2rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(160, 172, 198, 0.42);
  box-shadow:
    0 18px 40px rgba(146, 163, 195, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  overflow: hidden;
}

.feature-ide-toolbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(172, 182, 201, 0.2);
  background: rgba(255, 255, 255, 0.78);
}

.feature-ide-toolbar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(191, 198, 210, 0.86);
}

.feature-ide-body {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  min-height: calc(100% - 3.4rem);
}

.feature-ide-sidebar {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1rem 0.75rem;
  border-inline-end: 1px solid rgba(172, 182, 201, 0.14);
  background: rgba(248, 249, 252, 0.82);
}

.feature-ide-sidebar span {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.35rem;
  background: linear-gradient(180deg, rgba(106, 124, 255, 0.12), rgba(106, 124, 255, 0.04));
  border: 1px solid rgba(155, 167, 191, 0.22);
}

.feature-ide-editor {
  display: grid;
  grid-template-rows: auto 1fr;
}

.feature-ide-tabs {
  display: flex;
  gap: 1.2rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(172, 182, 201, 0.14);
  color: rgba(17, 19, 26, 0.42);
  font-size: 0.95rem;
}

.feature-ide-tabs .is-active {
  color: #3346d3;
}

.feature-ide-code {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem 1.5rem 1.8rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.85), rgba(249,250,253,0.95));
}

.feature-ide-code-line {
  display: grid;
  grid-template-columns: 1.3rem 1fr;
  gap: 1rem;
  color: #4d596b;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.92rem;
  line-height: 1.7;
}

.feature-ide-code-line .line-no {
  color: rgba(88, 98, 119, 0.45);
}

.typing-line .typing-text {
  display: inline-block;
  width: 0;
  max-width: max-content;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid rgba(69, 87, 255, 0.85);
  animation:
    featureCodeTyping 1.8s steps(var(--typing-steps)) forwards,
    featureCodeCaret 0.8s steps(1) infinite;
  animation-delay: var(--typing-delay), var(--typing-delay);
}

.feature-ide-code-line .code-violet {
  color: #9c5fd4;
}

.feature-ide-code-line .code-cyan {
  color: #7495b9;
}

.feature-ide-code-line .code-warm {
  color: #bc7a55;
}

@keyframes featureCodeTyping {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes featureCodeCaret {
  0%,
  49% {
    border-right-color: rgba(69, 87, 255, 0.85);
  }

  50%,
  100% {
    border-right-color: transparent;
  }
}

@media (max-width: 1000px) {
  .feature-ide-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .feature-ide-copy {
    max-width: 100%;
    padding-inline-start: 0;
  }

  .feature-ide-visual {
    min-height: 30rem;
  }
}

@media (max-width: 720px) {
  .feature-ide-heading {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .feature-ide-summary {
    font-size: 0.96rem;
  }

  .feature-ide-button {
    width: 100%;
    justify-content: center;
  }

  .feature-ide-visual {
    min-height: 23rem;
    border-radius: 1.35rem;
  }

  .feature-ide-window {
    inset: 4rem 1rem 2.25rem 1rem;
  }

  .feature-ide-body {
    grid-template-columns: 2.8rem 1fr;
  }

  .feature-ide-tabs {
    gap: 0.7rem;
    padding: 0.75rem 0.9rem;
    font-size: 0.82rem;
  }

  .feature-ide-code {
    padding: 1rem;
  }

  .feature-ide-code-line {
    gap: 0.7rem;
    font-size: 0.74rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .typing-line .typing-text {
    width: 100%;
    border-right: 0;
    animation: none;
  }
}

.cosmos-cta {
  position: relative;
  width: min(calc(100% - 0.75rem), 118rem);
  min-height: 37rem;
  margin: 3.5rem auto 0;
  padding: 3rem 3.4rem;
  border-radius: 2.25rem;
  background: #020306;
  overflow: hidden;
}

.cosmos-cta-particles {
  position: absolute;
  inset: 0;
}

.cosmos-starfield {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(255,255,255,0.2) 0 1px, transparent 1.6px),
    radial-gradient(circle at 16% 84%, rgba(255,255,255,0.18) 0 1px, transparent 1.7px),
    radial-gradient(circle at 22% 42%, rgba(92, 114, 255, 0.55) 0 1.3px, transparent 1.9px),
    radial-gradient(circle at 28% 18%, rgba(129, 148, 255, 0.65) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 31% 58%, rgba(129, 148, 255, 0.7) 0 1.5px, transparent 2.1px),
    radial-gradient(circle at 37% 70%, rgba(129, 148, 255, 0.55) 0 1.2px, transparent 1.9px),
    radial-gradient(circle at 44% 24%, rgba(129, 148, 255, 0.72) 0 1.6px, transparent 2.2px),
    radial-gradient(circle at 52% 34%, rgba(129, 148, 255, 0.9) 0 2px, transparent 2.8px),
    radial-gradient(circle at 56% 68%, rgba(129, 148, 255, 0.8) 0 1.8px, transparent 2.5px),
    radial-gradient(circle at 60% 52%, rgba(129, 148, 255, 0.85) 0 2px, transparent 2.8px),
    radial-gradient(circle at 67% 28%, rgba(129, 148, 255, 0.72) 0 1.6px, transparent 2.2px),
    radial-gradient(circle at 74% 20%, rgba(129, 148, 255, 0.7) 0 1.9px, transparent 2.6px),
    radial-gradient(circle at 81% 62%, rgba(129, 148, 255, 0.75) 0 2px, transparent 2.8px),
    radial-gradient(circle at 86% 40%, rgba(129, 148, 255, 0.72) 0 1.6px, transparent 2.2px),
    radial-gradient(circle at 92% 26%, rgba(255,255,255,0.14) 0 1px, transparent 1.7px),
    radial-gradient(circle at 88% 80%, rgba(255,255,255,0.14) 0 1px, transparent 1.7px);
  background-repeat: repeat;
  opacity: 0.92;
  transform: translate3d(0, 0, 0);
  animation: cosmosArrowDrift 10s linear infinite, cosmosFieldFloat 18s ease-in-out infinite alternate;
}

.cosmos-starfield::before,
.cosmos-starfield::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  pointer-events: none;
}

.cosmos-starfield::before {
  background-image:
    radial-gradient(circle at 4% 16%, rgba(99, 121, 255, 0.56) 0 1.1px, transparent 1.8px),
    radial-gradient(circle at 10% 52%, rgba(131, 149, 255, 0.42) 0 1px, transparent 1.7px),
    radial-gradient(circle at 14% 76%, rgba(255, 255, 255, 0.15) 0 0.9px, transparent 1.5px),
    radial-gradient(circle at 18% 28%, rgba(99, 121, 255, 0.62) 0 1.15px, transparent 1.9px),
    radial-gradient(circle at 24% 64%, rgba(131, 149, 255, 0.52) 0 1.1px, transparent 1.7px),
    radial-gradient(circle at 29% 12%, rgba(255, 255, 255, 0.12) 0 0.9px, transparent 1.5px),
    radial-gradient(circle at 33% 44%, rgba(99, 121, 255, 0.58) 0 1.2px, transparent 1.9px),
    radial-gradient(circle at 39% 82%, rgba(131, 149, 255, 0.46) 0 1px, transparent 1.7px),
    radial-gradient(circle at 45% 18%, rgba(99, 121, 255, 0.6) 0 1.15px, transparent 1.9px),
    radial-gradient(circle at 51% 58%, rgba(131, 149, 255, 0.5) 0 1.05px, transparent 1.7px),
    radial-gradient(circle at 57% 34%, rgba(255, 255, 255, 0.13) 0 0.9px, transparent 1.5px),
    radial-gradient(circle at 62% 72%, rgba(99, 121, 255, 0.64) 0 1.2px, transparent 1.9px),
    radial-gradient(circle at 68% 24%, rgba(131, 149, 255, 0.5) 0 1.05px, transparent 1.7px),
    radial-gradient(circle at 74% 86%, rgba(99, 121, 255, 0.58) 0 1.1px, transparent 1.8px),
    radial-gradient(circle at 79% 38%, rgba(255, 255, 255, 0.14) 0 0.95px, transparent 1.5px),
    radial-gradient(circle at 84% 66%, rgba(131, 149, 255, 0.48) 0 1px, transparent 1.7px),
    radial-gradient(circle at 90% 14%, rgba(99, 121, 255, 0.62) 0 1.15px, transparent 1.8px),
    radial-gradient(circle at 95% 56%, rgba(131, 149, 255, 0.44) 0 1px, transparent 1.7px);
  opacity: 0.88;
  animation: cosmosFieldDriftA 14s ease-in-out infinite alternate;
}

.cosmos-starfield::after {
  background-image:
    radial-gradient(circle at 6% 30%, rgba(255, 255, 255, 0.1) 0 0.85px, transparent 1.45px),
    radial-gradient(circle at 12% 68%, rgba(115, 136, 255, 0.46) 0 1px, transparent 1.65px),
    radial-gradient(circle at 17% 8%, rgba(99, 121, 255, 0.48) 0 1px, transparent 1.65px),
    radial-gradient(circle at 23% 48%, rgba(255, 255, 255, 0.1) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 27% 88%, rgba(115, 136, 255, 0.42) 0 0.95px, transparent 1.6px),
    radial-gradient(circle at 35% 22%, rgba(99, 121, 255, 0.52) 0 1px, transparent 1.7px),
    radial-gradient(circle at 41% 62%, rgba(255, 255, 255, 0.11) 0 0.85px, transparent 1.45px),
    radial-gradient(circle at 47% 10%, rgba(115, 136, 255, 0.44) 0 0.95px, transparent 1.6px),
    radial-gradient(circle at 53% 78%, rgba(99, 121, 255, 0.46) 0 1px, transparent 1.65px),
    radial-gradient(circle at 59% 42%, rgba(255, 255, 255, 0.1) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 65% 18%, rgba(115, 136, 255, 0.45) 0 0.95px, transparent 1.6px),
    radial-gradient(circle at 71% 58%, rgba(99, 121, 255, 0.48) 0 1px, transparent 1.7px),
    radial-gradient(circle at 76% 90%, rgba(255, 255, 255, 0.1) 0 0.85px, transparent 1.45px),
    radial-gradient(circle at 82% 28%, rgba(115, 136, 255, 0.44) 0 1px, transparent 1.6px),
    radial-gradient(circle at 88% 72%, rgba(99, 121, 255, 0.5) 0 1px, transparent 1.7px),
    radial-gradient(circle at 94% 40%, rgba(255, 255, 255, 0.1) 0 0.8px, transparent 1.4px);
  opacity: 0.74;
  animation: cosmosFieldDriftB 20s ease-in-out infinite alternate;
}

.cosmos-ring {
  display: none;
}

.cosmos-ring::before {
  content: none;
}

.cosmos-ring-one::before {
  animation: none;
}

.cosmos-ring-two {
  display: none;
}

.cosmos-ring-two::before {
  animation: none;
}

.cosmos-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 28rem;
  padding-top: 16rem;
}

.cosmos-cta h2 {
  margin: 0;
  color: #f8fbff;
  font-family: "Google Sans Flex", "Alexandria", sans-serif;
  font-size: clamp(3rem, 5.4vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.cosmos-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.cosmos-cta-button {
  min-width: 10.8rem;
  min-height: 3.5rem;
  border-radius: 999px;
}

.cosmos-cta-button-secondary {
  background: rgba(33, 37, 47, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(245, 247, 255, 0.95);
}

.top-nav-link-active {
  background: rgba(74, 114, 240, 0.08);
  color: #11131a;
}

.portfolio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: end;
  gap: 2.5rem;
  padding-top: 7.5rem;
}

.portfolio-hero-copy {
  max-width: 48rem;
}

.portfolio-hero h1,
.portfolio-cta h2 {
  margin: 0;
  color: #10131b;
  font-family: "Alexandria", "Google Sans Flex", "Tajawal", sans-serif;
  font-size: clamp(3rem, 5.8vw, 5.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-wrap: balance;
}

.portfolio-hero-summary {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  color: rgba(17, 19, 26, 0.68);
  font-family: "Tajawal", "Google Sans Flex", "Alexandria", sans-serif;
  font-size: 1.14rem;
  line-height: 1.9;
}

.portfolio-hero-panel {
  min-height: 23rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(135, 194, 255, 0.45), transparent 26%),
    radial-gradient(circle at 28% 84%, rgba(116, 133, 255, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(239, 244, 255, 0.92));
  border: 1px solid rgba(18, 22, 32, 0.06);
  box-shadow: 0 28px 70px rgba(42, 65, 140, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-hero-panel::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(243, 247, 255, 0.58));
}

.portfolio-hero-panel-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem;
}

.portfolio-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  min-height: 2.7rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(18, 22, 32, 0.92);
  color: #dbe5ff;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(18, 22, 32, 0.12);
  animation: portfolioChipHue 6s ease-in-out infinite alternate;
  will-change: transform, color;
}

.portfolio-chip:nth-child(1) {
  animation:
    portfolioChipFloatOne 5.6s ease-in-out infinite,
    portfolioChipHue 7s ease-in-out infinite alternate;
}

.portfolio-chip:nth-child(2) {
  animation:
    portfolioChipFloatTwo 6.4s ease-in-out infinite,
    portfolioChipHueAlt 7.8s ease-in-out infinite alternate;
}

.portfolio-chip:nth-child(3) {
  animation:
    portfolioChipFloatThree 5.9s ease-in-out infinite,
    portfolioChipHueSoft 8.4s ease-in-out infinite alternate;
}

.portfolio-showcase {
  padding-top: 4rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1.35rem;
  align-items: center;
  padding: 1.35rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 26, 0.08);
  box-shadow: 0 22px 50px rgba(28, 40, 82, 0.08);
  backdrop-filter: blur(12px);
}

.portfolio-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  padding: 1.8rem;
}

.portfolio-card-media {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1.7rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
  border: 1px solid rgba(17, 19, 26, 0.06);
}

.portfolio-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card-copy {
  min-width: 0;
}

.portfolio-label {
  margin: 0 0 0.65rem;
  color: rgba(58, 85, 189, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.portfolio-card h2,
.portfolio-card h3 {
  margin: 0;
  color: #10131b;
  font-family: "Alexandria", "Google Sans Flex", "Tajawal", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.portfolio-card h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.12;
}

.portfolio-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.16;
}

.portfolio-card p:last-child {
  margin: 0.8rem 0 0;
  color: rgba(17, 19, 26, 0.68);
  font-family: "Tajawal", "Google Sans Flex", "Alexandria", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

.portfolio-cta {
  padding-bottom: 4rem;
}

.portfolio-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 248, 255, 0.9));
  border: 1px solid rgba(17, 19, 26, 0.08);
  box-shadow: 0 20px 44px rgba(26, 42, 88, 0.08);
}

.portfolio-cta-shell .eyebrow {
  margin-bottom: 0.8rem;
}

.portfolio-cta-shell h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.portfolio-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@keyframes portfolioChipFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0.2rem, -0.45rem, 0);
  }
}

@keyframes portfolioChipFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-0.25rem, -0.55rem, 0);
  }
}

@keyframes portfolioChipFloatThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0.1rem, -0.35rem, 0);
  }
}

@keyframes portfolioChipHue {
  0% {
    color: #dbe5ff;
  }

  50% {
    color: #95b2ff;
  }

  100% {
    color: #ffffff;
  }
}

@keyframes portfolioChipHueAlt {
  0% {
    color: #ffffff;
  }

  50% {
    color: #a8c7ff;
  }

  100% {
    color: #dbe5ff;
  }
}

@keyframes portfolioChipHueSoft {
  0% {
    color: #dbe5ff;
  }

  50% {
    color: #b8caff;
  }

  100% {
    color: #ffffff;
  }
}

@keyframes cosmosArrowDrift {
  from {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0;
  }

  to {
      background-position:
      -8px 0,
      -10px 0,
      -12px 0,
      -14px 0,
      -16px 0,
      -18px 0,
      -20px 0,
      -22px 0,
      -24px 0,
      -26px 0,
      -28px 0;
  }
}

@keyframes cosmosFieldFloat {
  from {
    transform: translate3d(-1.2%, 0, 0) scale(1);
  }

  to {
    transform: translate3d(1.8%, 0, 0) scale(1.02);
  }
}

@keyframes cosmosFieldDriftA {
  from {
    transform: translate3d(-2.5%, 0.35rem, 0);
  }

  50% {
    transform: translate3d(1.2%, -0.25rem, 0);
  }

  to {
    transform: translate3d(3%, 0.15rem, 0);
  }
}

@keyframes cosmosFieldDriftB {
  from {
    transform: translate3d(2.2%, -0.2rem, 0) scale(1);
  }

  50% {
    transform: translate3d(-1.1%, 0.25rem, 0) scale(1.015);
  }

  to {
    transform: translate3d(-2.8%, -0.15rem, 0) scale(0.99);
  }
}

.geo-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: center;
  gap: 3rem;
  padding-top: 7rem;
}

.geo-product-copy {
  display: grid;
  gap: 1.15rem;
}

.geo-product-copy h1,
.geo-product-section-heading h2,
.geo-product-cta-shell h2 {
  margin: 0;
  font-family: "Alexandria", "Google Sans Flex", "Tajawal", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #111827;
  text-wrap: balance;
}

.geo-product-summary {
  max-width: 42rem;
  margin: 0;
  color: rgba(17, 24, 39, 0.7);
  font-size: 1.06rem;
  line-height: 1.9;
}

.geo-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 0.75rem;
}

.geo-product-visual {
  position: relative;
  min-height: 30rem;
}

.geo-visual-shell {
  position: relative;
  min-height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(206, 214, 230, 0.9);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(91, 130, 255, 0.18), transparent 34%),
    radial-gradient(circle at 84% 26%, rgba(122, 232, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.94));
  box-shadow: 0 30px 80px rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.geo-visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(112, 146, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 146, 255, 0.08) 1px, transparent 1px);
  background-size: 2.7rem 2.7rem;
  mask-image: radial-gradient(circle at center, #000 52%, transparent 96%);
  opacity: 0.55;
}

.geo-visual-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

.geo-visual-topline span,
.geo-info-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: rgba(17, 24, 39, 0.76);
  font-size: 0.8rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.08em;
}

.geo-visual-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4.2rem;
}

.geo-visual-grid article {
  padding: 1.25rem 1.1rem;
  border: 1px solid rgba(204, 213, 230, 0.82);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 34px rgba(148, 163, 184, 0.12);
}

.geo-visual-grid strong {
  display: block;
  color: #2553eb;
  font-family: "Alexandria", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1;
}

.geo-visual-grid span {
  display: block;
  margin-top: 0.65rem;
  color: rgba(17, 24, 39, 0.68);
  font-size: 0.96rem;
  line-height: 1.7;
}

.geo-visual-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(88, 127, 255, 0.16);
}

.geo-ring-one {
  width: 18rem;
  height: 18rem;
  left: -2rem;
  bottom: -3rem;
  box-shadow: inset 0 0 0 1px rgba(101, 140, 255, 0.08);
}

.geo-ring-two {
  width: 12rem;
  height: 12rem;
  right: 1rem;
  top: 5rem;
}

.geo-ring-three {
  width: 22rem;
  height: 22rem;
  right: 10%;
  bottom: -8rem;
  border-color: rgba(86, 217, 255, 0.14);
}

.geo-product-details,
.geo-product-flow,
.geo-product-cta {
  margin-top: 4rem;
}

.geo-product-section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.geo-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.geo-product-value-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.geo-value-card {
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(205, 213, 228, 0.88);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 44px rgba(148, 163, 184, 0.11);
}

.geo-value-card-primary {
  background:
    radial-gradient(circle at 12% 16%, rgba(79, 102, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(244, 247, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.geo-value-card h3 {
  margin: 0.95rem 0 0.7rem;
  font-size: 1.6rem;
  color: #101827;
}

.geo-value-card p:last-child {
  margin: 0;
  color: rgba(17, 24, 39, 0.68);
  line-height: 1.9;
}

.geo-info-card,
.geo-flow-step,
.geo-product-cta-shell {
  border: 1px solid rgba(205, 213, 228, 0.88);
  border-radius: 1.85rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 50px rgba(148, 163, 184, 0.12);
}

.geo-info-card {
  padding: 1.6rem;
}

.geo-info-card h3,
.geo-flow-step h3 {
  margin: 1rem 0 0.7rem;
  font-size: 1.45rem;
  color: #111827;
}

.geo-info-card p,
.geo-flow-step p {
  margin: 0;
  color: rgba(17, 24, 39, 0.68);
  line-height: 1.9;
}

.geo-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.geo-flow-step {
  padding: 1.45rem 1.2rem;
}

.geo-flow-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #4f66ff 0%, #3f59ee 100%);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.geo-product-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
}

.chatbot-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 14%, rgba(64, 91, 255, 0.22), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(68, 231, 255, 0.16), transparent 20%),
    radial-gradient(circle at 50% 68%, rgba(93, 111, 255, 0.12), transparent 34%),
    #04060b;
  color: #f3f6ff;
}

.top-nav-dark {
  border-color: rgba(123, 146, 255, 0.22);
  background: rgba(10, 12, 20, 0.7);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.top-nav-link-dark {
  color: rgba(239, 244, 255, 0.88);
}

.top-nav-link-dark:hover,
.top-nav-link-dark:focus-visible {
  background: rgba(92, 117, 255, 0.12);
  color: #ffffff;
}

.eyebrow-dark {
  color: rgba(226, 235, 255, 0.82);
}

.chatbot-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  gap: 3rem;
  align-items: center;
  min-height: 58rem;
  padding-top: 7rem;
  overflow: hidden;
}

.chatbot-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(131, 152, 255, 0.24) 0 1px, transparent 1.1px);
  background-size: 1.5rem 1.5rem;
  opacity: 0.16;
  mask-image: radial-gradient(circle at center, #000 28%, transparent 92%);
  pointer-events: none;
}

.chatbot-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(90, 115, 255, 0.14);
  pointer-events: none;
}

.chatbot-orbit-one {
  width: 46rem;
  height: 46rem;
  left: 48%;
  top: 10rem;
  transform: translateX(-50%);
}

.chatbot-orbit-two {
  width: 34rem;
  height: 34rem;
  left: 51%;
  top: 16rem;
  transform: translateX(-50%);
  border-color: rgba(85, 221, 255, 0.16);
}

.chatbot-hero-copy,
.chatbot-section-heading {
  position: relative;
  z-index: 2;
}

.chatbot-hero-copy h1,
.chatbot-section-heading h2,
.chatbot-cta-shell h2 {
  margin: 0;
  color: #f7f9ff;
  font-family: "Alexandria", "Google Sans Flex", "Tajawal", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.35rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.chatbot-hero-summary {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  color: rgba(227, 234, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.95;
}

.chatbot-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1.6rem;
}

.chatbot-button-primary {
  background: linear-gradient(180deg, #eef2ff 0%, #dfe8ff 100%);
  color: #0d1321;
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(113, 145, 255, 0.18);
}

.chatbot-button-secondary {
  background: rgba(19, 24, 39, 0.72);
  color: #f7f9ff;
  border-color: rgba(129, 146, 195, 0.22);
}

.chatbot-time-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.chatbot-time-strip article,
.chatbot-benefit-card,
.chatbot-flow-step,
.chatbot-cta-shell {
  border: 1px solid rgba(105, 123, 176, 0.2);
  border-radius: 1.5rem;
  background: rgba(10, 13, 22, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.chatbot-time-strip article {
  padding: 1rem 1rem 1.15rem;
}

.chatbot-time-strip strong {
  display: block;
  color: #90a8ff;
  font-size: 1.65rem;
  line-height: 1;
}

.chatbot-time-strip span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(232, 238, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}

.chatbot-hero-visual {
  position: relative;
  z-index: 2;
  min-height: 38rem;
}

.chatbot-screen-glow {
  position: absolute;
  inset: 2rem 1.5rem 1.5rem;
  border-radius: 2.25rem;
  background:
    radial-gradient(circle at 18% 78%, rgba(255, 176, 67, 0.32), transparent 18%),
    radial-gradient(circle at 82% 14%, rgba(81, 224, 255, 0.28), transparent 20%),
    radial-gradient(circle at 66% 72%, rgba(140, 102, 255, 0.22), transparent 18%),
    rgba(244, 248, 255, 0.08);
  filter: blur(0.2rem);
}

.chatbot-screen {
  position: relative;
  margin: 0 auto;
  width: min(100%, 46rem);
  border-radius: 2rem;
  border: 1px solid rgba(153, 176, 255, 0.24);
  background: rgba(244, 248, 255, 0.92);
  color: #0f172a;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.chatbot-screen-toolbar {
  display: flex;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(214, 220, 235, 0.72);
  background: rgba(255, 255, 255, 0.7);
}

.chatbot-screen-toolbar span {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(183, 191, 208, 0.92);
}

.chatbot-screen-body {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  min-height: 31rem;
}

.chatbot-screen-sidebar {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 1.2rem 0.75rem;
  border-inline-end: 1px solid rgba(220, 226, 240, 0.74);
  background: linear-gradient(180deg, rgba(242, 245, 255, 0.98), rgba(236, 241, 252, 0.95));
}

.chatbot-screen-sidebar span {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.45rem;
  background: linear-gradient(180deg, rgba(227, 233, 255, 1), rgba(214, 221, 248, 0.9));
  box-shadow: inset 0 0 0 1px rgba(180, 191, 224, 0.34);
}

.chatbot-screen-content {
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.98)),
    linear-gradient(90deg, rgba(89, 128, 255, 0.03), transparent 30%);
}

.chatbot-screen-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(90, 102, 126, 0.8);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.chatbot-message {
  max-width: 80%;
  padding: 0.95rem 1rem;
  border-radius: 1.25rem;
  margin-bottom: 0.95rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.chatbot-message small {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(100, 116, 139, 0.82);
  font-size: 0.72rem;
}

.chatbot-message p {
  margin: 0;
  line-height: 1.75;
}

.chatbot-message-bot {
  background: linear-gradient(180deg, rgba(236, 241, 255, 0.98), rgba(225, 233, 255, 0.94));
}

.chatbot-message-user {
  margin-inline-start: auto;
  background: linear-gradient(180deg, rgba(44, 77, 212, 0.94), rgba(71, 101, 236, 0.95));
  color: #ffffff;
}

.chatbot-message-user small {
  color: rgba(231, 238, 255, 0.88);
}

.chatbot-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.chatbot-signal-row span,
.chatbot-card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(59, 88, 198, 0.08);
  color: #4361dd;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.chatbot-benefits,
.chatbot-flow,
.chatbot-cta {
  margin-top: 4rem;
}

.chatbot-section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.chatbot-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.chatbot-benefit-card,
.chatbot-flow-step {
  padding: 1.4rem;
}

.chatbot-benefit-card h3,
.chatbot-flow-step h3 {
  margin: 1rem 0 0.65rem;
  color: #f5f7ff;
  font-size: 1.4rem;
}

.chatbot-benefit-card p:last-child,
.chatbot-flow-step p {
  margin: 0;
  color: rgba(229, 236, 255, 0.7);
  line-height: 1.85;
}

.chatbot-flow-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.chatbot-flow-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #7ba1ff 0%, #4f66ff 100%);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
}

.chatbot-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
}

.tuning-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.tuning-product-copy {
  display: grid;
  gap: 1.3rem;
}

.tuning-product-copy h1,
.tuning-product-section-heading h2,
.tuning-product-cta-shell h2 {
  margin: 0;
  font-family: "Alexandria", "Tajawal", sans-serif;
  font-size: clamp(2.45rem, 4.8vw, 4.5rem);
  line-height: 1.08;
  color: #10213f;
}

.tuning-product-summary {
  max-width: 43rem;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.95;
  color: rgba(28, 44, 74, 0.78);
}

.tuning-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.tuning-product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tuning-product-strip article,
.tuning-info-card,
.tuning-flow-step,
.tuning-product-cta-shell {
  border: 1px solid rgba(205, 213, 228, 0.88);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 56px rgba(31, 46, 83, 0.08);
  backdrop-filter: blur(18px);
}

.tuning-product-strip article {
  padding: 1rem 1rem 1.15rem;
  border-radius: 1.6rem;
}

.tuning-product-strip strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Google Sans Flex", "Alexandria", sans-serif;
  font-size: 1.3rem;
  color: #1a3ed7;
}

.tuning-product-strip span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(28, 44, 74, 0.74);
}

.tuning-product-visual {
  position: relative;
}

.tuning-visual-shell {
  position: relative;
  padding: 2rem;
  border-radius: 2.6rem;
  background:
    radial-gradient(circle at top left, rgba(153, 191, 255, 0.44), transparent 42%),
    radial-gradient(circle at bottom right, rgba(56, 118, 255, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(246, 249, 255, 0.98), rgba(232, 240, 255, 0.92));
  border: 1px solid rgba(199, 213, 240, 0.8);
  box-shadow: 0 34px 90px rgba(33, 57, 102, 0.12);
  overflow: hidden;
}

.tuning-visual-shell::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 2rem;
  background-image:
    linear-gradient(rgba(76, 117, 202, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 117, 202, 0.06) 1px, transparent 1px);
  background-size: 2.8rem 2.8rem;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 88%);
}

.tuning-visual-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(198, 211, 238, 0.82);
}

.tuning-visual-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(196, 206, 228, 0.78);
  color: rgba(52, 71, 110, 0.88);
  font-family: "Google Sans Flex", "Alexandria", sans-serif;
  font-size: 0.9rem;
}

.tuning-visual-score {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.tuning-visual-score article,
.tuning-knowledge-card {
  padding: 1rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(236, 242, 255, 0.98), rgba(225, 235, 255, 0.88));
  border: 1px solid rgba(187, 203, 236, 0.82);
}

.tuning-visual-score small,
.tuning-info-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: rgba(44, 66, 109, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tuning-visual-score strong {
  display: block;
  margin-top: 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  color: #0f254d;
}

.tuning-visual-knowledge {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.tuning-knowledge-card p {
  margin: 0 0 0.75rem;
  font-weight: 800;
  color: #13305d;
}

.tuning-knowledge-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: rgba(23, 42, 78, 0.82);
}

.tuning-knowledge-card li::before {
  content: "•";
  display: inline-block;
  margin-inline-start: 0.45rem;
  color: #2458f1;
}

.tuning-knowledge-card-accent {
  background: linear-gradient(180deg, rgba(28, 64, 164, 0.94), rgba(18, 42, 110, 0.96));
  color: #eef3ff;
}

.tuning-knowledge-card-accent p,
.tuning-knowledge-card-accent ul,
.tuning-knowledge-card-accent li::before {
  color: inherit;
}

.tuning-floating {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(192, 206, 234, 0.8);
  box-shadow: 0 18px 34px rgba(32, 53, 96, 0.1);
  color: #14325e;
  font-size: 0.84rem;
  font-weight: 700;
}

.tuning-floating-one {
  top: 1.2rem;
  left: -0.5rem;
}

.tuning-floating-two {
  top: 4.7rem;
  right: -1rem;
}

.tuning-floating-three {
  bottom: 1rem;
  left: 2rem;
}

.tuning-product-details,
.tuning-product-compare,
.tuning-product-flow,
.tuning-product-cta {
  margin-top: 4rem;
}

.tuning-product-section-heading {
  max-width: 47rem;
}

.tuning-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.tuning-info-card {
  padding: 1.55rem;
  border-radius: 1.9rem;
}

.tuning-info-card h3,
.tuning-flow-step h3 {
  margin: 1rem 0 0.7rem;
  font-size: 1.32rem;
  color: #11254a;
}

.tuning-info-card p,
.tuning-flow-step p {
  margin: 0;
  color: rgba(28, 44, 74, 0.8);
  line-height: 1.9;
}

.tuning-flow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tuning-flow-step {
  padding: 1.45rem 1.25rem;
  border-radius: 1.8rem;
}

.tuning-flow-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #e7efff 0%, #d8e6ff 100%);
  color: #1f47cf;
  font-weight: 800;
}

.tuning-compare-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.tuning-compare-shell-modern {
  align-items: stretch;
}

.tuning-compare-column {
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(205, 213, 228, 0.88);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 56px rgba(31, 46, 83, 0.08);
  backdrop-filter: blur(18px);
}

.tuning-compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  font-family: "Alexandria", "Tajawal", sans-serif;
  border-bottom: 1px solid rgba(205, 213, 228, 0.76);
}

.tuning-compare-head strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.tuning-compare-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(53, 69, 105, 0.7);
}

.tuning-compare-head-before {
  background: linear-gradient(180deg, rgba(248, 250, 253, 0.98), rgba(241, 245, 251, 0.96));
  color: #13233f;
}

.tuning-compare-head-after {
  background: linear-gradient(180deg, rgba(231, 240, 255, 0.98), rgba(220, 233, 255, 0.95));
  color: #1740c8;
}

.tuning-compare-results {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.tuning-compare-item {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.85;
}

.tuning-compare-item-before {
  background: linear-gradient(180deg, rgba(251, 252, 255, 0.98), rgba(245, 247, 252, 0.96));
  border: 1px solid rgba(224, 229, 239, 0.92);
  color: rgba(40, 53, 78, 0.82);
}

.tuning-compare-item-after {
  background: linear-gradient(180deg, rgba(242, 247, 255, 0.98), rgba(231, 240, 255, 0.95));
  border: 1px solid rgba(194, 211, 245, 0.92);
  color: #13315f;
  font-weight: 700;
}

.tuning-product-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 2rem;
}

.market-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.market-product-copy {
  display: grid;
  gap: 1.3rem;
}

.market-product-copy h1,
.market-product-section-heading h2,
.market-product-cta-shell h2 {
  margin: 0;
  font-family: "Alexandria", "Tajawal", sans-serif;
  font-size: clamp(2.45rem, 4.8vw, 4.3rem);
  line-height: 1.08;
  color: #10213f;
}

.market-product-summary {
  max-width: 43rem;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.95;
  color: rgba(28, 44, 74, 0.78);
}

.market-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.market-product-strip,
.market-product-grid,
.market-journey-steps,
.market-compare-shell {
  display: grid;
}

.market-product-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.market-product-strip article,
.market-info-card,
.market-journey-step,
.market-product-cta-shell,
.market-compare-column {
  border: 1px solid rgba(205, 213, 228, 0.88);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 56px rgba(31, 46, 83, 0.08);
  backdrop-filter: blur(18px);
}

.market-product-strip article {
  padding: 1rem 1rem 1.15rem;
  border-radius: 1.6rem;
}

.market-product-strip strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Google Sans Flex", "Alexandria", sans-serif;
  font-size: 1.3rem;
  color: #1a3ed7;
}

.market-product-strip span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(28, 44, 74, 0.74);
}

.market-product-visual {
  position: relative;
}

.market-visual-shell {
  border-radius: 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(124, 168, 255, 0.28), transparent 36%),
    radial-gradient(circle at bottom left, rgba(21, 92, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(247, 250, 255, 0.98), rgba(233, 240, 255, 0.92));
  border: 1px solid rgba(199, 213, 240, 0.8);
  box-shadow: 0 34px 90px rgba(33, 57, 102, 0.12);
}

.market-visual-stage {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  min-height: 31rem;
  background:
    linear-gradient(180deg, rgba(6, 18, 40, 0.22), rgba(4, 13, 29, 0.34)),
    linear-gradient(180deg, rgba(7, 15, 34, 0.9), rgba(10, 20, 42, 0.94));
}

.market-visual-stage::before {
  content: "";
  position: absolute;
  inset: -4%;
  background:
    radial-gradient(circle at 18% 20%, rgba(63, 138, 255, 0.95) 0 1.35px, transparent 1.95px),
    radial-gradient(circle at 76% 18%, rgba(63, 138, 255, 0.9) 0 1.55px, transparent 2.1px),
    radial-gradient(circle at 88% 66%, rgba(63, 138, 255, 0.92) 0 1.45px, transparent 2px),
    radial-gradient(circle at 24% 82%, rgba(63, 138, 255, 0.86) 0 1.3px, transparent 1.9px),
    radial-gradient(circle at 64% 88%, rgba(63, 138, 255, 0.82) 0 1.2px, transparent 1.85px);
  background-size:
    72px 72px,
    88px 88px,
    80px 80px,
    96px 96px,
    76px 76px;
  background-position:
    0 0,
    30px 20px,
    20px 40px,
    10px 0,
    50px 30px;
  opacity: 0.9;
  mix-blend-mode: screen;
  animation: marketDotsDrift 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.market-visual-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 0 56%, rgba(8, 19, 40, 0.18) 78%, rgba(8, 19, 40, 0.34) 100%);
  pointer-events: none;
  z-index: 3;
}

.market-visual-stage img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  filter: contrast(1.08) saturate(1.04) brightness(1.08);
  z-index: 1;
}

.market-info-label {
  display: inline-flex;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(44, 66, 109, 0.7);
}

.market-product-image {
  object-position: center;
}

@keyframes marketDotsDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, 7px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.market-visual-overlay small,
.market-info-label {
  display: inline-flex;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(44, 66, 109, 0.7);
}

.market-product-details,
.market-product-journey,
.market-product-compare,
.market-product-cta {
  margin-top: 4rem;
}

.market-product-section-heading {
  max-width: 47rem;
}

.market-product-grid,
.market-journey-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.market-info-card,
.market-journey-step {
  padding: 1.55rem;
  border-radius: 1.9rem;
}

.market-info-card h3,
.market-journey-step h3 {
  margin: 1rem 0 0.7rem;
  font-size: 1.32rem;
  color: #11254a;
}

.market-info-card p,
.market-journey-step p {
  margin: 0;
  color: rgba(28, 44, 74, 0.8);
  line-height: 1.9;
}

.market-journey-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #e7efff 0%, #d8e6ff 100%);
  color: #1f47cf;
  font-weight: 800;
}

.market-compare-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.market-compare-column {
  border-radius: 2rem;
  overflow: hidden;
}

.market-compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  font-family: "Alexandria", "Tajawal", sans-serif;
  border-bottom: 1px solid rgba(205, 213, 228, 0.76);
}

.market-compare-head span {
  font-size: 0.84rem;
  color: rgba(53, 69, 105, 0.72);
}

.market-compare-head strong {
  font-size: 1.15rem;
}

.market-compare-head-before {
  background: linear-gradient(180deg, rgba(248, 250, 253, 0.98), rgba(241, 245, 251, 0.96));
  color: #13233f;
}

.market-compare-head-after {
  background: linear-gradient(180deg, rgba(231, 240, 255, 0.98), rgba(220, 233, 255, 0.95));
  color: #1740c8;
}

.market-compare-list {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.market-compare-item {
  min-height: 5rem;
  display: flex;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  font-size: 1rem;
  line-height: 1.85;
  background: linear-gradient(180deg, rgba(251, 252, 255, 0.98), rgba(245, 247, 252, 0.96));
  border: 1px solid rgba(224, 229, 239, 0.92);
  color: rgba(40, 53, 78, 0.82);
}

.market-compare-item-after {
  background: linear-gradient(180deg, rgba(242, 247, 255, 0.98), rgba(231, 240, 255, 0.95));
  border-color: rgba(194, 211, 245, 0.92);
  color: #13315f;
  font-weight: 700;
}

.market-product-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 2rem;
}

@media (max-width: 1000px) {
  .cosmos-cta {
    width: min(calc(100% - 1rem), 100rem);
    min-height: 31rem;
    padding: 2.25rem 2rem;
  }

  .chatbot-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .chatbot-benefit-grid,
  .chatbot-flow-line {
    grid-template-columns: 1fr;
  }

  .geo-product-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tuning-product-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .market-product-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .geo-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tuning-product-grid,
  .tuning-flow-steps,
  .tuning-product-strip,
  .tuning-visual-knowledge {
    grid-template-columns: 1fr;
  }

  .tuning-product-cta-shell {
    flex-direction: column;
  }

  .market-product-grid,
  .market-journey-steps,
  .market-product-strip,
  .market-compare-shell {
    grid-template-columns: 1fr;
  }

  .market-product-cta-shell {
    flex-direction: column;
  }

  .cosmos-cta-copy {
    max-width: 22rem;
    padding-top: 13rem;
  }

}

@media (max-width: 720px) {
  .portfolio-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 5.5rem;
  }

  .portfolio-hero h1,
  .portfolio-cta h2 {
    font-size: clamp(1.95rem, 7.2vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
  }

  .portfolio-cta h2 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    line-height: 1.22;
    max-width: 100%;
  }

  .portfolio-hero-copy {
    max-width: 100%;
  }

  .portfolio-hero-panel {
    min-height: 15rem;
  }

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

  .portfolio-card,
  .portfolio-card-featured {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .portfolio-card-media {
    max-width: 10rem;
  }

  .portfolio-cta-shell {
    flex-direction: column;
    align-items: stretch;
    padding: 1.4rem;
  }

  .portfolio-cta-actions {
    flex-direction: column;
  }

  .chatbot-hero-copy h1,
  .chatbot-section-heading h2,
  .chatbot-cta-shell h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.12;
  }

  .chatbot-time-strip {
    grid-template-columns: 1fr;
  }

  .chatbot-screen-body {
    grid-template-columns: 3.2rem 1fr;
    min-height: 25rem;
  }

  .chatbot-cta-shell {
    flex-direction: column;
    align-items: stretch;
    padding: 1.4rem;
  }

  .chatbot-hero-actions {
    flex-direction: column;
  }

  .geo-product-copy h1,
  .geo-product-section-heading h2,
  .geo-product-cta-shell h2 {
    font-size: clamp(1.95rem, 7.2vw, 2.85rem);
    line-height: 1.16;
  }

  .geo-product-grid,
  .geo-product-value-strip,
  .geo-flow-steps {
    grid-template-columns: 1fr;
  }

  .geo-visual-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .geo-product-cta-shell {
    flex-direction: column;
    align-items: stretch;
    padding: 1.4rem;
  }

  .geo-product-actions {
    flex-direction: column;
  }

  .tuning-product-copy h1,
  .tuning-product-section-heading h2,
  .tuning-product-cta-shell h2 {
    font-size: clamp(2rem, 7.2vw, 3rem);
    line-height: 1.16;
  }

  .tuning-product-actions {
    flex-direction: column;
  }

  .tuning-product-strip,
  .tuning-visual-score,
  .tuning-compare-shell,
  .tuning-product-grid,
  .tuning-flow-steps,
  .tuning-visual-knowledge {
    grid-template-columns: 1fr;
  }

  .tuning-floating {
    position: static;
    margin-top: 0.75rem;
    width: fit-content;
    max-width: 100%;
  }

  .tuning-product-cta-shell {
    flex-direction: column;
    align-items: stretch;
    padding: 1.4rem;
  }

  .market-product-copy h1,
  .market-product-section-heading h2,
  .market-product-cta-shell h2 {
    font-size: clamp(2rem, 7.2vw, 3rem);
    line-height: 1.16;
  }

  .market-product-actions {
    flex-direction: column;
  }

  .market-product-strip,
  .market-product-grid,
  .market-journey-steps,
  .market-compare-shell {
    grid-template-columns: 1fr;
  }

  .market-product-cta-shell {
    flex-direction: column;
    align-items: stretch;
    padding: 1.4rem;
  }

  .cosmos-cta {
    min-height: 24rem;
    margin-top: 2.5rem;
    padding: 2rem 1.35rem;
    border-radius: 1.6rem;
  }

  .cosmos-cta-copy {
    max-width: 13rem;
    padding-top: 10.5rem;
  }

  .cosmos-cta h2 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

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

  .cosmos-cta-button {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  .cosmos-starfield,
  .cosmos-starfield::before,
  .cosmos-starfield::after {
    animation: none;
  }

  .portfolio-chip,
  .portfolio-chip:nth-child(1),
  .portfolio-chip:nth-child(2),
  .portfolio-chip:nth-child(3) {
    animation: none;
  }
}

.appx-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 18%, rgba(86, 128, 255, 0.12), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(127, 226, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.appx-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 2.8rem;
  align-items: center;
  min-height: calc(100vh - 8rem);
  padding-top: 2rem;
}

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

.appx-copy {
  display: grid;
  gap: 1.2rem;
}

.appx-copy h1,
.appx-section-heading h2,
.appx-cta-shell h2 {
  margin: 0;
  color: #0f1730;
  font-family: "Alexandria", "Google Sans Flex", "Tajawal", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.appx-summary {
  max-width: 42rem;
  margin: 0;
  color: rgba(31, 42, 71, 0.76);
  font-size: 1.05rem;
  line-height: 1.95;
}

.appx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.6rem;
}

.appx-metrics,
.appx-value-grid,
.appx-stack-grid {
  display: grid;
  gap: 1rem;
}

.appx-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.appx-metrics article,
.appx-value-card,
.appx-stack-card,
.appx-cta-shell {
  border: 1px solid rgba(196, 210, 238, 0.9);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 26px 70px rgba(34, 60, 124, 0.08);
  backdrop-filter: blur(14px);
}

.appx-metrics article {
  border-radius: 1.45rem;
  padding: 1rem 1rem 1.1rem;
}

.appx-metrics strong {
  display: block;
  color: #2347d8;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.appx-metrics span {
  display: block;
  color: rgba(30, 41, 67, 0.7);
  font-size: 0.92rem;
  line-height: 1.75;
}

.appx-visual {
  position: relative;
  min-height: 44rem;
  perspective: 1800px;
}

.appx-visual-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.appx-visual-orb-one {
  inset: 5rem auto auto 3rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(91, 126, 255, 0.34), transparent 72%);
}

.appx-visual-orb-two {
  inset: auto 2rem 4rem auto;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(84, 238, 255, 0.24), transparent 72%);
}

.appx-grid-floor {
  position: absolute;
  inset: auto 0 2rem 0;
  height: 18rem;
  background:
    linear-gradient(rgba(97, 124, 214, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 124, 214, 0.14) 1px, transparent 1px);
  background-size: 2.4rem 2.4rem;
  transform: perspective(900px) rotateX(76deg);
  transform-origin: center top;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 88%);
}

.appx-scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.appx-device,
.appx-card,
.appx-float {
  position: absolute;
  transform-style: preserve-3d;
}

.appx-device {
  inset: 4rem 7% 6rem 18%;
  border-radius: 2.8rem;
  padding: 1.2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(230, 240, 255, 0.94));
  border: 1px solid rgba(206, 222, 245, 0.96);
  box-shadow:
    0 42px 120px rgba(28, 58, 128, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: rotateY(-18deg) rotateX(12deg);
  animation: appxDeviceFloat 7s ease-in-out infinite;
  overflow: hidden;
}

.appx-device::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(249, 251, 255, 0.76), rgba(232, 239, 255, 0.24));
  pointer-events: none;
}

.appx-device-top {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.appx-device-top span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(188, 198, 226, 0.95), rgba(227, 233, 248, 0.9));
}

.appx-device-screen {
  position: relative;
  z-index: 2;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(238, 244, 255, 0.92), rgba(225, 235, 255, 0.94));
  border: 1px solid rgba(212, 224, 247, 0.92);
}

.appx-screen-chip-row {
  display: flex;
  gap: 0.7rem;
  padding: 1.05rem 1.05rem 0;
}

.appx-screen-chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.7rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(48, 84, 214, 0.1);
  color: #2c49b9;
  font-size: 0.78rem;
  font-weight: 700;
}

.appx-screen-shell {
  margin: 1rem;
  border-radius: 1.7rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(211, 221, 245, 0.92);
  box-shadow: 0 24px 64px rgba(68, 94, 162, 0.1);
}

.appx-screen-shell-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(220, 228, 244, 0.94);
}

.appx-screen-shell-top strong {
  color: #101a31;
  font-size: 1rem;
}

.appx-screen-shell-top small {
  color: rgba(41, 59, 110, 0.64);
  font-size: 0.78rem;
}

.appx-screen-preview {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  min-height: 18rem;
}

.appx-screen-side {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1rem 0.9rem;
  border-inline-end: 1px solid rgba(221, 228, 242, 0.92);
}

.appx-screen-side span {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.45rem;
  background: linear-gradient(180deg, rgba(230, 236, 251, 0.96), rgba(216, 226, 247, 0.96));
}

.appx-screen-main {
  padding: 1rem;
  display: grid;
  gap: 0.95rem;
  background:
    radial-gradient(circle at top right, rgba(95, 132, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(245, 248, 255, 0.95), rgba(236, 242, 255, 0.94));
}

.appx-screen-panel {
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(252, 253, 255, 0.98), rgba(228, 236, 255, 0.88));
  border: 1px solid rgba(215, 225, 245, 0.92);
}

.appx-screen-panel-primary {
  min-height: 7.6rem;
  background:
    radial-gradient(circle at 20% 40%, rgba(90, 132, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(249, 251, 255, 0.96), rgba(221, 232, 255, 0.9));
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.appx-screen-panel-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.appx-screen-panel-mini {
  min-height: 5.4rem;
  padding: 0.95rem 1rem;
  display: grid;
  align-content: start;
  gap: 0.3rem;
}

.appx-screen-panel-wide {
  min-height: 6rem;
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.8rem;
}

.appx-panel-kicker,
.appx-wide-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.appx-panel-kicker small,
.appx-screen-panel-mini small,
.appx-wide-topline strong {
  color: rgba(42, 61, 109, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.appx-panel-kicker strong,
.appx-screen-panel-mini strong {
  color: #1737a9;
  font-size: 1.1rem;
  font-weight: 800;
}

.appx-screen-panel-mini span {
  color: rgba(28, 42, 73, 0.62);
  font-size: 0.72rem;
}

.appx-panel-graph {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0.55rem;
  min-height: 3.8rem;
}

.appx-panel-graph span {
  display: block;
  border-radius: 999px 999px 0.7rem 0.7rem;
  background: linear-gradient(180deg, rgba(85, 123, 255, 0.98), rgba(147, 228, 255, 0.62));
}

.appx-panel-graph span:nth-child(1) {
  height: 38%;
}

.appx-panel-graph span:nth-child(2) {
  height: 62%;
}

.appx-panel-graph span:nth-child(3) {
  height: 48%;
}

.appx-panel-graph span:nth-child(4) {
  height: 84%;
}

.appx-panel-graph span:nth-child(5) {
  height: 70%;
}

.appx-wide-topline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(45, 197, 123, 0.14);
  color: #159258;
  font-size: 0.72rem;
  font-weight: 700;
}

.appx-wide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.appx-wide-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(35, 71, 216, 0.1);
  color: #2140af;
  font-size: 0.75rem;
  font-weight: 700;
}

.appx-card {
  border-radius: 1.8rem;
  border: 1px solid rgba(198, 214, 244, 0.78);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 80px rgba(37, 63, 125, 0.12);
  backdrop-filter: blur(14px);
}

.appx-card-back {
  inset: 4rem auto auto 2%;
  width: 13rem;
  padding: 1rem;
  transform: rotateY(28deg) rotateX(10deg) translateZ(20px);
  animation: appxFloatCard 8s ease-in-out infinite;
}

.appx-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(68, 103, 235, 0.12);
  color: #2c47b4;
  font-size: 0.76rem;
  font-weight: 700;
}

.appx-card-bars {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.appx-card-bars span {
  display: block;
  height: 0.82rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 132, 255, 0.75), rgba(144, 229, 255, 0.3));
}

.appx-card-front {
  inset: auto 4% 8% auto;
  width: 18rem;
  padding: 1.15rem 1.2rem 1.25rem;
  transform: rotateY(-18deg) rotateX(8deg) translateZ(34px);
  animation: appxFloatCardAlt 9s ease-in-out infinite;
}

.appx-card-front h3 {
  margin: 0.9rem 0 0.55rem;
  color: #0f1730;
  font-size: 1.28rem;
}

.appx-card-front p {
  margin: 0;
  color: rgba(26, 38, 69, 0.72);
  line-height: 1.8;
}

.appx-float {
  min-width: 8.6rem;
  padding: 0.95rem 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(204, 219, 246, 0.92);
  box-shadow: 0 22px 54px rgba(34, 60, 122, 0.12);
  backdrop-filter: blur(12px);
}

.appx-float small {
  display: block;
  color: rgba(43, 61, 112, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.appx-float strong {
  display: block;
  margin-top: 0.4rem;
  color: #1836a5;
  font-size: 1.4rem;
}

.appx-float-a {
  inset: 11% auto auto 10%;
  transform: translateZ(54px);
  animation: appxFloatBadge 7.2s ease-in-out infinite;
}

.appx-float-b {
  inset: 16% 7% auto auto;
  transform: translateZ(46px);
  animation: appxFloatBadge 8.6s ease-in-out infinite reverse;
}

.appx-float-c {
  inset: auto auto 10% 10%;
  transform: translateZ(44px);
  animation: appxFloatBadge 7.8s ease-in-out infinite;
}

.appx-value,
.appx-stack,
.appx-cta {
  margin-top: 4rem;
}

.appx-section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.appx-info-label {
  display: inline-flex;
  color: rgba(44, 66, 109, 0.68);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.appx-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.appx-value-card,
.appx-stack-card {
  border-radius: 1.7rem;
  padding: 1.4rem;
}

.appx-value-card h3,
.appx-stack-card h3 {
  margin: 0.9rem 0 0.65rem;
  color: #0f1730;
  font-size: 1.24rem;
  line-height: 1.45;
}

.appx-value-card p:last-child,
.appx-stack-card p {
  margin: 0;
  color: rgba(30, 42, 71, 0.7);
  line-height: 1.9;
}

.appx-stack-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.appx-stack-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(53, 87, 223, 0.16), rgba(74, 122, 255, 0.2));
  color: #2440aa;
  font-weight: 800;
}

.appx-cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 2rem;
}

.appx-brand-end {
  padding: 2rem 1.5rem 5rem;
  text-align: center;
}

.appx-brand-end h2 {
  margin: 0;
  font-family: "Alexandria", "Google Sans Flex", "Tajawal", sans-serif;
  font-size: clamp(4.4rem, 14vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0;
  color: #0f1115;
  text-shadow: 0 18px 48px rgba(15, 17, 21, 0.08);
}

@keyframes appxDeviceFloat {
  0%, 100% {
    transform: rotateY(-18deg) rotateX(12deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotateY(-16deg) rotateX(10deg) translate3d(0, -10px, 0);
  }
}

@keyframes appxFloatCard {
  0%, 100% {
    transform: rotateY(28deg) rotateX(10deg) translate3d(0, 0, 20px);
  }
  50% {
    transform: rotateY(24deg) rotateX(9deg) translate3d(0, -12px, 42px);
  }
}

@keyframes appxFloatCardAlt {
  0%, 100% {
    transform: rotateY(-18deg) rotateX(8deg) translate3d(0, 0, 34px);
  }
  50% {
    transform: rotateY(-15deg) rotateX(7deg) translate3d(0, -14px, 56px);
  }
}

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

@media (max-width: 1080px) {
  .appx-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .appx-visual {
    min-height: 38rem;
  }

  .appx-device {
    inset: 3rem 6% 4.5rem 8%;
  }

  .appx-metrics,
  .appx-value-grid,
  .appx-stack-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .appx-copy h1,
  .appx-section-heading h2,
  .appx-cta-shell h2 {
    font-size: clamp(1.65rem, 6vw, 2.35rem);
    line-height: 1.22;
  }

  .appx-actions {
    flex-direction: column;
  }

  .appx-visual {
    min-height: 21rem;
    perspective: none;
  }

  .appx-scene {
    inset: auto 0 0;
    min-height: 21rem;
  }

  .appx-device {
    inset: 1rem 0.4rem 1rem;
    border-radius: 1.5rem;
    padding: 0.7rem;
    transform: none;
    animation: none;
  }

  .appx-card-back,
  .appx-card-front {
    display: none;
  }

  .appx-device::before {
    inset: 0.6rem;
    border-radius: 1.15rem;
  }

  .appx-device-screen,
  .appx-screen-shell {
    border-radius: 1.15rem;
  }

  .appx-device-top {
    margin-bottom: 0.6rem;
  }

  .appx-screen-chip-row {
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.75rem 0.8rem 0;
  }

  .appx-screen-chip-row span {
    font-size: 0.7rem;
    padding: 0.32rem 0.6rem;
  }

  .appx-screen-shell-top {
    padding: 0.85rem 0.9rem;
  }

  .appx-screen-shell-top strong {
    font-size: 1rem;
  }

  .appx-screen-shell-top small {
    font-size: 0.74rem;
  }

  .appx-screen-preview {
    grid-template-columns: 1fr;
  }

  .appx-screen-side {
    display: none;
  }

  .appx-screen-main {
    padding: 0.85rem;
    gap: 0.75rem;
  }

  .appx-screen-panel-primary,
  .appx-screen-panel,
  .appx-screen-panel-wide {
    min-height: auto;
  }

  .appx-screen-panel-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .appx-panel-kicker strong,
  .appx-screen-panel-mini strong {
    font-size: 1.45rem;
  }

  .appx-panel-kicker small,
  .appx-screen-panel-mini small,
  .appx-screen-panel-mini span,
  .appx-wide-topline strong,
  .appx-wide-topline span {
    font-size: 0.72rem;
  }

  .appx-wide-tags {
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .appx-wide-tags span {
    font-size: 0.68rem;
    padding: 0.34rem 0.55rem;
  }

  .appx-float {
    min-width: 7.2rem;
    padding: 0.75rem 0.85rem;
  }

  .appx-grid-floor {
    display: none;
  }
}

/* Global heading overlap fixes */
.hero-title-wide,
.hero-title,
.product-heading-modern,
.portfolio-hero-copy h1,
.portfolio-cta-shell h2,
.geo-product-copy h1,
.geo-product-section-heading h2,
.geo-product-cta-shell h2,
.chatbot-hero-copy h1,
.chatbot-section-heading h2,
.chatbot-cta-shell h2,
.market-product-copy h1,
.market-product-section-heading h2,
.market-product-cta-shell h2,
.appx-copy h1,
.appx-section-heading h2,
.appx-cta-shell h2,
.feature-ide-heading,
.download-copy h2,
.fine-product-copy h1,
.fine-section-heading h2,
.fine-cta-shell h2 {
  max-inline-size: 100%;
  line-height: 1.14;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-title-wide {
  font-size: clamp(2.7rem, 5.1vw, 4.8rem);
}

.hero-title {
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
}

.product-heading-modern {
  max-inline-size: min(100%, 18ch);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.portfolio-hero-copy h1,
.portfolio-cta-shell h2,
.geo-product-copy h1,
.geo-product-section-heading h2,
.geo-product-cta-shell h2,
.chatbot-hero-copy h1,
.chatbot-section-heading h2,
.chatbot-cta-shell h2,
.market-product-copy h1,
.market-product-section-heading h2,
.market-product-cta-shell h2,
.appx-copy h1,
.appx-section-heading h2,
.appx-cta-shell h2,
.fine-product-copy h1,
.fine-section-heading h2,
.fine-cta-shell h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.feature-ide-heading,
.download-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

@media (max-width: 900px) {
  .product-heading-modern {
    max-inline-size: min(100%, 15ch);
  }
}

@media (max-width: 720px) {
  .hero-title-wide,
  .hero-title,
  .product-heading-modern,
  .portfolio-hero-copy h1,
  .portfolio-cta-shell h2,
  .geo-product-copy h1,
  .geo-product-section-heading h2,
  .geo-product-cta-shell h2,
  .chatbot-hero-copy h1,
  .chatbot-section-heading h2,
  .chatbot-cta-shell h2,
  .market-product-copy h1,
  .market-product-section-heading h2,
  .market-product-cta-shell h2,
  .appx-copy h1,
  .appx-section-heading h2,
  .appx-cta-shell h2,
  .feature-ide-heading,
  .download-copy h2,
  .fine-product-copy h1,
  .fine-section-heading h2,
  .fine-cta-shell h2 {
    line-height: 1.18;
  }

  .hero-title-wide {
    font-size: clamp(1.95rem, 7vw, 3rem);
  }

  .hero-title,
  .product-heading-modern,
  .portfolio-hero-copy h1,
  .portfolio-cta-shell h2,
  .geo-product-copy h1,
  .geo-product-section-heading h2,
  .geo-product-cta-shell h2,
  .chatbot-hero-copy h1,
  .chatbot-section-heading h2,
  .chatbot-cta-shell h2,
  .market-product-copy h1,
  .market-product-section-heading h2,
  .market-product-cta-shell h2,
  .appx-copy h1,
  .appx-section-heading h2,
  .appx-cta-shell h2,
  .feature-ide-heading,
  .download-copy h2,
  .fine-product-copy h1,
  .fine-section-heading h2,
  .fine-cta-shell h2 {
    font-size: clamp(1.45rem, 5.2vw, 2.05rem);
  }

  .product-heading-modern {
    max-inline-size: 100%;
    line-height: 1.2;
  }
}

@media (max-width: 980px) {
  .portfolio-hero-copy h1,
  .geo-product-copy h1,
  .chatbot-hero-copy h1,
  .market-product-copy h1,
  .fine-product-copy h1,
  .appx-copy h1 {
    font-size: clamp(1.85rem, 4.1vw, 3rem);
    line-height: 1.16;
  }
}

/* Product page spacing refinements */
.geo-product-copy,
.chatbot-hero-copy,
.market-product-copy,
.tuning-product-copy,
.appx-copy,
.portfolio-hero-copy {
  gap: 1.45rem;
}

.geo-product-copy h1,
.geo-product-section-heading h2,
.geo-product-cta-shell h2,
.chatbot-hero-copy h1,
.chatbot-section-heading h2,
.chatbot-cta-shell h2,
.market-product-copy h1,
.market-product-section-heading h2,
.market-product-cta-shell h2,
.tuning-product-copy h1,
.tuning-product-section-heading h2,
.tuning-product-cta-shell h2,
.appx-copy h1,
.appx-section-heading h2,
.appx-cta-shell h2,
.portfolio-hero-copy h1,
.portfolio-cta-shell h2 {
  line-height: 1.24;
  letter-spacing: 0;
  margin-bottom: 0.2rem;
}

.geo-product-summary,
.chatbot-hero-summary,
.market-product-summary,
.tuning-product-summary,
.appx-summary,
.portfolio-hero-copy p,
.portfolio-cta-shell p {
  line-height: 2.05;
  margin-top: 0.15rem;
}

.geo-product-actions,
.chatbot-hero-actions,
.market-product-actions,
.stripe-product-actions,
.tuning-product-actions,
.appx-actions {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .geo-product-copy,
  .chatbot-hero-copy,
  .market-product-copy,
  .stripe-product-copy,
  .tuning-product-copy,
  .appx-copy,
  .portfolio-hero-copy {
    gap: 1.05rem;
  }

  .geo-product-copy h1,
  .geo-product-section-heading h2,
  .geo-product-cta-shell h2,
  .chatbot-hero-copy h1,
  .chatbot-section-heading h2,
  .chatbot-cta-shell h2,
  .market-product-copy h1,
  .market-product-section-heading h2,
  .market-product-cta-shell h2,
  .stripe-product-copy h1,
  .stripe-product-section-heading h2,
  .stripe-product-cta-shell h2,
  .tuning-product-copy h1,
  .tuning-product-section-heading h2,
  .tuning-product-cta-shell h2,
  .appx-copy h1,
  .appx-section-heading h2,
  .appx-cta-shell h2,
  .portfolio-hero-copy h1,
  .portfolio-cta-shell h2 {
    line-height: 1.3;
  }

  .geo-product-summary,
  .chatbot-hero-summary,
  .market-product-summary,
  .stripe-product-summary,
  .tuning-product-summary,
  .appx-summary,
  .portfolio-hero-copy p,
  .portfolio-cta-shell p {
    line-height: 1.9;
  }
}

@media (max-width: 720px) {
  .geo-product-copy,
  .chatbot-hero-copy,
  .market-product-copy,
  .stripe-product-copy,
  .tuning-product-copy,
  .appx-copy,
  .portfolio-hero-copy {
    gap: 0.9rem;
  }

  .geo-product-copy h1,
  .geo-product-section-heading h2,
  .geo-product-cta-shell h2,
  .chatbot-hero-copy h1,
  .chatbot-section-heading h2,
  .chatbot-cta-shell h2,
  .market-product-copy h1,
  .market-product-section-heading h2,
  .market-product-cta-shell h2,
  .stripe-product-copy h1,
  .stripe-product-section-heading h2,
  .stripe-product-cta-shell h2,
  .tuning-product-copy h1,
  .tuning-product-section-heading h2,
  .tuning-product-cta-shell h2,
  .appx-copy h1,
  .appx-section-heading h2,
  .appx-cta-shell h2,
  .portfolio-hero-copy h1,
  .portfolio-cta-shell h2 {
    line-height: 1.34;
    margin-bottom: 0.1rem;
  }

  .geo-product-summary,
  .chatbot-hero-summary,
  .market-product-summary,
  .stripe-product-summary,
  .tuning-product-summary,
  .appx-summary,
  .portfolio-hero-copy p,
  .portfolio-cta-shell p {
    line-height: 1.82;
  }

  .geo-product-actions,
  .chatbot-hero-actions,
  .market-product-actions,
  .stripe-product-actions,
  .tuning-product-actions,
  .appx-actions {
    margin-top: 0.55rem;
  }
}

.stripe-product-hero,
.stripe-product-details,
.stripe-product-flow,
.stripe-product-cta {
  direction: rtl;
}

.stripe-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.stripe-product-copy {
  display: grid;
  gap: 1.45rem;
}

.stripe-product-copy h1,
.stripe-product-section-heading h2,
.stripe-product-cta-shell h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.24;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

.stripe-product-summary {
  margin: 0;
  color: var(--muted);
  line-height: 2.05;
  font-size: 1.03rem;
}

.stripe-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.stripe-product-strip,
.stripe-product-grid,
.stripe-flow-steps {
  display: grid;
  gap: 1rem;
}

.stripe-product-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stripe-product-strip article,
.stripe-info-card,
.stripe-flow-step,
.stripe-product-cta-shell {
  border: 1px solid rgba(24, 39, 75, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(33, 61, 129, 0.08);
}

.stripe-product-strip article {
  border-radius: 1.5rem;
  padding: 1.15rem 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.stripe-product-strip strong {
  color: #1f46d8;
  font-size: 1rem;
}

.stripe-product-strip span {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.92rem;
}

.stripe-product-visual {
  display: flex;
  justify-content: center;
}

.stripe-visual-shell {
  width: min(100%, 35rem);
  border-radius: 2rem;
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(85, 124, 255, 0.18), transparent 38%),
    radial-gradient(circle at bottom left, rgba(46, 139, 255, 0.12), transparent 42%),
    rgba(244, 248, 255, 0.95);
  box-shadow: 0 30px 80px rgba(59, 88, 156, 0.12);
}

.stripe-browser-frame {
  border-radius: 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(30, 45, 74, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

.stripe-browser-top {
  display: flex;
  gap: 0.45rem;
  padding: 1rem 1.2rem 0.75rem;
}

.stripe-browser-top span {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: rgba(21, 35, 62, 0.18);
}

.stripe-browser-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 15rem;
  gap: 1rem;
  padding: 0.4rem 1.15rem 1.2rem;
}

.stripe-browser-copy {
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(234, 241, 255, 0.82), rgba(248, 250, 255, 0.96));
  border: 1px solid rgba(41, 76, 155, 0.1);
  padding: 1.25rem;
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.stripe-ui-badge {
  width: max-content;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  background: rgba(35, 79, 221, 0.1);
  color: #2146c4;
  font-size: 0.76rem;
  font-weight: 700;
}

.stripe-browser-copy h3 {
  margin: 0;
  color: var(--foreground);
  font-size: 1.45rem;
  line-height: 1.45;
}

.stripe-browser-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.stripe-ui-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.stripe-ui-pills span {
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(33, 70, 196, 0.09);
  color: #26418e;
  font-size: 0.82rem;
  font-weight: 700;
}

.stripe-checkout-card {
  border-radius: 1.45rem;
  background: #122f6a;
  color: #eff5ff;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.stripe-checkout-head {
  display: grid;
  gap: 0.2rem;
}

.stripe-checkout-head strong {
  font-size: 1rem;
}

.stripe-checkout-head span,
.stripe-checkout-row span {
  color: rgba(233, 241, 255, 0.78);
  font-size: 0.82rem;
}

.stripe-checkout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
}

.stripe-checkout-row strong {
  font-size: 0.95rem;
}

.stripe-checkout-total {
  background: rgba(255, 255, 255, 0.12);
}

.stripe-checkout-card button {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1rem;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(135deg, #7ab3ff, #ffffff);
  color: #143067;
}

.stripe-product-section-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.stripe-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stripe-info-card,
.stripe-flow-step {
  border-radius: 1.6rem;
  padding: 1.4rem;
  display: grid;
  gap: 0.75rem;
}

.stripe-info-label {
  margin: 0;
  color: #2d58d5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stripe-info-card h3,
.stripe-flow-step h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.55;
}

.stripe-info-card p,
.stripe-flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
}

.stripe-flow-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stripe-flow-step span {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 70, 196, 0.08);
  color: #1f46d8;
  font-weight: 800;
}

.stripe-product-cta-shell {
  border-radius: 2rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (max-width: 980px) {
  .stripe-product-hero,
  .stripe-product-grid,
  .stripe-flow-steps {
    grid-template-columns: 1fr;
  }

  .stripe-product-strip {
    grid-template-columns: 1fr;
  }

  .stripe-product-cta-shell {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  .stripe-product-copy {
    gap: 0.9rem;
  }

  .stripe-product-copy h1,
  .stripe-product-section-heading h2,
  .stripe-product-cta-shell h2 {
    font-size: clamp(1.45rem, 5.2vw, 2.05rem);
    line-height: 1.34;
  }

  .stripe-product-summary {
    line-height: 1.82;
  }

  .stripe-browser-body {
    grid-template-columns: 1fr;
  }
}
