@font-face {
  font-family: "Eudoxus Sans";
  src: url("/assets/fonts/EudoxusSans-Regular-BF659b6cb1d4714.ttf")
    format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Eudoxus Sans";
  src: url("/assets/fonts/EudoxusSans-Medium-BF659b6cb1c14cb.ttf")
    format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Eudoxus Sans";
  src: url("/assets/fonts/EudoxusSans-Bold-BF659b6cb1408e5.ttf")
    format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Eudoxus Sans";
  src: url("/assets/fonts/EudoxusSans-ExtraBold-BF659b6cb1b96c9.ttf")
    format("truetype");
  font-weight: 800;
}
@font-face {
  font-family: "Eudoxus Sans";
  src: url("/assets/fonts/EudoxusSans-Light-BF659b6cb2036b5.ttf")
    format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Eudoxus Sans";
  src: url("/assets/fonts/EudoxusSans-ExtraLight-BF659b6cb1e7092.ttf")
    format("truetype");
  font-weight: 200;
}

.font-eudoxus {
  font-family: 'Eudoxus Sans', sans-serif;
}

details summary::-webkit-details-marker {
  display: none;
}

body {
    font-family: "Eudoxus Sans", sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #0f172a;
  overflow-x: hidden;
}

.hero-section {
    padding-top: 100px;
}

/* ── GRID BACKGROUND ── */
.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* ── GLOW ORBS ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: opacity, transform;
}
.orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(232, 32, 26, 0.2) 0%,
    transparent 65%
  );
  top: -200px;
  right: -200px;
  filter: blur(60px);
  animation: orb-pulse 6s ease-in-out infinite;
}
.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(180, 10, 10, 0.18) 0%,
    transparent 65%
  );
  bottom: -150px;
  left: -150px;
  filter: blur(80px);
  animation: orb-pulse 7s ease-in-out infinite 2.5s;
}
.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(80, 0, 0, 0.35) 0%, transparent 65%);
  top: 45%;
  left: 28%;
  filter: blur(100px);
  animation: orb-pulse 8s ease-in-out infinite 1s;
}

/* ── ANIMATIONS ── */
@keyframes orb-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.12);
  }
}
@keyframes float-a {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(0.8deg);
  }
}
@keyframes float-b {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes ping-ring {
  75%,
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
@keyframes blink-cur {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes bar-fill-1 {
  from {
    width: 0;
  }
  to {
    width: 72%;
  }
}
@keyframes bar-fill-2 {
  from {
    width: 0;
  }
  to {
    width: 48%;
  }
}
@keyframes bar-fill-3 {
  from {
    width: 0;
  }
  to {
    width: 88%;
  }
}
@keyframes bar-fill-4 {
  from {
    width: 0;
  }
  to {
    width: 60%;
  }
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-r {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-l {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1);
  }
}
@keyframes progress-fill {
  from {
    width: 0%;
  }
  to {
    width: 24.9%;
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── UTILITY ── */
.float-a {
  animation: float-a 4.5s ease-in-out infinite;
}
.float-b {
  animation: float-b 5.2s ease-in-out infinite 1.3s;
}
.float-c {
  animation: float-a 6s ease-in-out infinite 0.7s;
}
.spin-sl {
  animation: spin-slow 14s linear infinite;
}

/* entrance animations */
.au0 {
  animation: fade-up 0.8s ease forwards;
}
.au1 {
  animation: fade-up 0.8s ease forwards 0.12s;
  opacity: 0;
}
.au2 {
  animation: fade-up 0.8s ease forwards 0.24s;
  opacity: 0;
}
.au3 {
  animation: fade-up 0.8s ease forwards 0.36s;
  opacity: 0;
}
.au4 {
  animation: fade-up 0.8s ease forwards 0.5s;
  opacity: 0;
}
.ar0 {
  animation: slide-r 0.7s ease forwards 0.4s;
  opacity: 0;
}
.ar1 {
  animation: slide-r 0.6s ease forwards 0.9s;
  opacity: 0;
}
.ar2 {
  animation: slide-r 0.6s ease forwards 1.4s;
  opacity: 0;
}
.al1 {
  animation: slide-l 0.6s ease forwards 1.1s;
  opacity: 0;
}

/* bar fills */
.bf1 {
  animation: bar-fill-1 2s ease forwards 0.6s;
  width: 0;
}
.bf2 {
  animation: bar-fill-2 2s ease forwards 0.9s;
  width: 0;
}
.bf3 {
  animation: bar-fill-3 2s ease forwards 0.75s;
  width: 0;
}
.bf4 {
  animation: bar-fill-4 2s ease forwards 1.1s;
  width: 0;
}
.prog {
  animation: progress-fill 3.5s ease forwards 1.5s;
  width: 0;
}

/* wave bars */
.wv {
  animation: wave 1.3s ease-in-out infinite;
  display: inline-block;
  transform-origin: bottom;
}
.wv:nth-child(1) {
  animation-delay: 0s;
  height: 12px;
}
.wv:nth-child(2) {
  animation-delay: 0.18s;
  height: 18px;
}
.wv:nth-child(3) {
  animation-delay: 0.36s;
  height: 22px;
}
.wv:nth-child(4) {
  animation-delay: 0.54s;
  height: 16px;
}
.wv:nth-child(5) {
  animation-delay: 0.72s;
  height: 10px;
}

/* ping dot */
.ping-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ping-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: ping-ring 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* ticker */
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-track {
  overflow: hidden;
}

/* ── GLASS ── */
.glass {
  background: rgba(7, 7, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-dark {
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── GRADIENT TEXT ── */
.grad-text {
  background: linear-gradient(
    118deg,
    #fff 0%,
    #fff 40%,
    #e8201a 55%,
    #ff8a7a 75%,
    #fff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PILL ── */
.pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
  cursor: default;
}
.pill:hover {
  background: rgba(232, 32, 26, 0.12);
  border-color: rgba(232, 32, 26, 0.35);
  transform: translateY(-2px);
}

/* ── CTA GLOW ── */
.cta-glow {
  background: #e8201a;
  box-shadow:
    0 0 22px rgba(232, 32, 26, 0.55),
    0 4px 18px rgba(232, 32, 26, 0.3);
  transition: all 0.3s ease;
}
.cta-glow:hover {
  background: #c41a14;
  box-shadow:
    0 0 40px rgba(232, 32, 26, 0.75),
    0 8px 28px rgba(232, 32, 26, 0.45);
  transform: translateY(-2px);
}
.cta-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.25s ease;
}
.cta-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

/* ── SCROLL HINT ── */
@keyframes bounce-hint {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}
.bounce-hint {
  animation: bounce-hint 2s ease-in-out infinite;
}

/* ── NAV ── */
.nav-wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
}
.africa-motif {
  position: relative;
  isolation: isolate;
}
.africa-motif::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
  background-position:
    18px 0,
    18px 0,
    0 0,
    0 0;
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
}
.africa-motif::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(232, 32, 26, 0.24) 0 1px,
      transparent 1px 100%
    ),
    radial-gradient(
      circle at 88% 14%,
      rgba(232, 32, 26, 0.18) 0 1px,
      transparent 1px 100%
    ),
    radial-gradient(
      circle at 80% 78%,
      rgba(232, 32, 26, 0.22) 0 1px,
      transparent 1px 100%
    );
  background-size: 140px 140px;
}

.geo-motif {
  position: relative;
  isolation: isolate;
}
.geo-motif::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background:
    linear-gradient(
        45deg,
        transparent 47%,
        rgba(232, 32, 26, 0.08) 48% 52%,
        transparent 53%
      )
      0 0/42px 42px,
    linear-gradient(
        -45deg,
        transparent 47%,
        rgba(15, 23, 42, 0.07) 48% 52%,
        transparent 53%
      )
      0 0/42px 42px,
    radial-gradient(
      circle at 50% 50%,
      rgba(232, 32, 26, 0.12) 0 9px,
      transparent 10px 100%
    );
  mix-blend-mode: multiply;
}
.geo-motif::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background:
    linear-gradient(
        135deg,
        transparent 0 44%,
        rgba(255, 255, 255, 0.1) 45% 55%,
        transparent 56%
      )
      left 18px top 18px / 30px 30px no-repeat,
    linear-gradient(
        135deg,
        transparent 0 44%,
        rgba(232, 32, 26, 0.5) 45% 55%,
        transparent 56%
      )
      right 18px bottom 18px / 30px 30px no-repeat;
}
.geo-card {
  position: relative;
  overflow: hidden;
}
.geo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background:
    linear-gradient(
        135deg,
        transparent 0 46%,
        rgba(232, 32, 26, 0.18) 47% 53%,
        transparent 54%
      )
      18px 18px / 26px 26px no-repeat,
    linear-gradient(
        135deg,
        transparent 0 46%,
        rgba(15, 23, 42, 0.06) 47% 53%,
        transparent 54%
      )
      calc(100% - 18px) calc(100% - 18px) / 26px 26px no-repeat,
    linear-gradient(90deg, rgba(232, 32, 26, 0.05), transparent 28%);
}
.geo-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -100px;
  pointer-events: none;
  background-image: url(/assets/favicon.svg);
  height: 250px;
  width: 250px;
  opacity: 0.2;
}
.card-badge,
.diamond-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.card-badge {
  color: #e8201a;
}
.card-badge::before,
.diamond-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.card-badge::before {
  background: linear-gradient(135deg, #e8201a, #ffb199);
  box-shadow: 0 0 0 3px rgba(232, 32, 26, 0.08);
}
.diamond-chip {
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: rgba(232, 32, 26, 0.07);
  border: 1px solid rgba(232, 32, 26, 0.16);
  color: #7f1d1d;
}
.diamond-chip::before {
  background: #e8201a;
  box-shadow: 0 0 0 2px rgba(232, 32, 26, 0.1);
}
.pattern-rule {
  height: 12px;
  background:
    linear-gradient(
        135deg,
        transparent 0 43%,
        rgba(232, 32, 26, 0.35) 44% 56%,
        transparent 57%
      )
      0 0 / 24px 12px repeat-x,
    linear-gradient(
        225deg,
        transparent 0 43%,
        rgba(15, 23, 42, 0.08) 44% 56%,
        transparent 57%
      )
      0 0 / 24px 12px repeat-x;
  opacity: 0.8;
}
/* ── STAT DIVIDER ── */
.stat-div {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-div:last-child {
  border-right: none;
}

/* ── FOOTER ── */
.footer-link {
  color: rgba(156, 163, 175, 1);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #fff;
}

/* ── MEGA MENU OVERRIDE ── */
.megamenu {
  z-index: 200 !important;
}

/* Mobile pills scroll */
@media (max-width: 639px) {
  .pills-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .pills-row::-webkit-scrollbar {
    display: none;
  }
}

/* Hide right mockup on small screens */
@media (max-width: 1023px) {
  .hero-mockup {
    display: none;
  }
}

/* ── SECTION COMMON ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(232, 32, 26, 0.08);
  border: 1px solid rgba(232, 32, 26, 0.18);
  color: #e8201a;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-sub {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}
.section-sep {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0;
}

/* ── SERVICE CARDS ── */
.svc-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    ellipse at top left,
    rgba(232, 32, 26, 0.05) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-card:hover {
  border-color: rgba(232, 32, 26, 0.3);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}
.svc-card:hover::before {
  opacity: 1;
}
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 32, 26, 0.08);
  border: 1px solid rgba(232, 32, 26, 0.15);
  margin-bottom: 20px;
}
.svc-price {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e8201a;
  background: rgba(232, 32, 26, 0.07);
  border: 1px solid rgba(232, 32, 26, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
}
.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 0.8rem;
  transition:
    color 0.2s,
    gap 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.svc-card:hover .svc-arrow {
  color: #374151;
  gap: 10px;
}

/* ── HOW IT WORKS ── */
.step-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #e8201a, rgba(232, 32, 26, 0.25));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(232, 32, 26, 0.25), transparent);
  margin-left: 25px;
}
.code-block {
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
}
.code-bar {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.code-body {
  padding: 20px 22px;
  line-height: 2;
}
.tok-key {
  color: #ff79c6;
}
.tok-str {
  color: #f1fa8c;
}
.tok-val {
  color: #8be9fd;
}
.tok-met {
  color: #50fa7b;
  font-weight: 700;
}
.tok-url {
  color: rgba(255, 255, 255, 0.55);
}
.tok-res {
  color: #50fa7b;
}
.tok-com {
  color: rgba(255, 255, 255, 0.28);
  font-style: italic;
}
.tok-num {
  color: #bd93f9;
}

/* ── INDUSTRY CARDS ── */
.ind-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
}
.ind-card:hover {
  border-color: rgba(232, 32, 26, 0.25);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* ── PRICING CARDS ── */
.price-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.25s;
}
.price-card:hover {
  border-color: rgba(232, 32, 26, 0.3);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}
.price-card.featured {
  background: #fff6f6;
  border-color: rgba(232, 32, 26, 0.3);
  box-shadow: 0 4px 20px rgba(232, 32, 26, 0.1);
}
.price-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #1c0303 0%, #2e0505 45%, #1a0606 100%);
  border: 1px solid rgba(232, 32, 26, 0.22);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 65% 50%,
    rgba(232, 32, 26, 0.22) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* ── OP BADGES ── */
.op-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.op-badge:hover {
  border-color: rgba(232, 32, 26, 0.22);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.masonry-grid {
  column-count: 1;
  column-gap: 1.25rem;
}
@media (min-width: 640px) {
  .masonry-grid { column-count: 2; }
}
@media (min-width: 1024px) {
  .masonry-grid { column-count: 3; }
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}
.brand-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 74px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(226,232,240,.95);
  box-shadow: 0 8px 28px rgba(15,23,42,.04);
}
.brand-logo img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: .86;
}
.brand-logo:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}

.home-page::after {
  content: '';
  position: fixed;
  top: 18px;
  right: 18px;
  width: 132px;
  height: 132px;
  background: url('../favicon.svg') center/contain no-repeat;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(1);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: #070708;
  color: #fff;
}
.page-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(232, 32, 26, 0.2) 0, transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.07) 0, transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 92px 24px 82px;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}
.page-hero__title {
  max-width: 12ch;
  margin: 18px 0 16px;
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 1.02;
  font-weight: 900;
}
.page-hero__copy {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
  line-height: 1.85;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.about-snapshot {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.about-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.about-snapshot__item {
  border-radius: 18px;
  padding: 18px;
}
.about-snapshot__item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.6;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.section-head .section-title {
  max-width: 14ch;
  margin-top: 16px;
}
.section-head .section-sub {
  max-width: 520px;
}
.about-visual-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}
.about-visual-card {
  overflow: hidden;
  background: #fff;
}
.about-visual-card--dark {
  background: linear-gradient(135deg, #0b0b0d 0%, #131318 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.about-visual-card__image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
}
.about-visual-card__body {
  padding: 24px;
}
.about-visual-card--flush .about-visual-card__image {
  height: 236px;
  border-radius: 0;
}
.about-mini-image {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.9;
  filter: grayscale(1) contrast(1.05);
  flex: 0 0 auto;
}
.about-dark-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.about-metric {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
}
.about-metric strong {
  display: block;
  color: #0f172a;
  font-size: 1.25rem;
}
.about-metric span {
  color: #64748b;
  font-size: 0.78rem;
}
@media (max-width: 1023px) {
  .about-visual-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .about-snapshot__grid,
  .about-metrics {
    grid-template-columns: 1fr;
  }
}

/* ── UTILITY PAGES (signin, faq, security, contact, pricing, features, blog, 404) ── */
.ui-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.field {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dbe0e6;
  border-radius: 14px;
  font: inherit;
  color: #0f172a;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field:focus {
  outline: none;
  border-color: rgba(232, 32, 26, 0.4);
  box-shadow: 0 0 0 4px rgba(232, 32, 26, 0.08);
}
.field-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.field-dark::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.field-dark:focus {
  border-color: rgba(232, 32, 26, 0.5);
  box-shadow: 0 0 0 4px rgba(232, 32, 26, 0.16);
}

/* ── FAQ ACCORDION ── */
.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 4px 22px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.faq-item[open] {
  border-color: rgba(232, 32, 26, 0.25);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  color: #0f172a;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(232, 32, 26, 0.08);
  border: 1px solid rgba(232, 32, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s,
    background 0.25s;
}
.faq-item[open] .faq-plus {
  transform: rotate(45deg);
  background: rgba(232, 32, 26, 0.14);
}
.faq-body {
  padding: 0 0 20px;
  color: #64748b;
  line-height: 1.75;
  font-size: 0.93rem;
}
.faq-cat-label {
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 36px 0 14px;
}
.faq-cat-label:first-child {
  margin-top: 0;
}
