/* ============================================================
   ROOT & RESET
   ============================================================ */
:root {
  --bg:        #07080D;
  --sur:       #0C0E17;
  --sur2:      #10131F;
  --acc:       #38BDF8;
  --acc2:      #818CF8;
  --text:      #ECF0F9;
  --muted:     #4A5A72;
  --border:    rgba(255,255,255,0.07);
  --glow:      rgba(56,189,248,0.16);
  --ease:      0.22s cubic-bezier(0.4,0,0.2,1);
  --font-h:    'Space Grotesk', sans-serif;
  --font-b:    'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a       { color: inherit; text-decoration: none; }
ul      { list-style: none; }
button  { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* ============================================================
   CURSOR GLOW
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.055) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  top: 50%;
  left: 50%;
  transition: left 0.08s linear, top 0.08s linear;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--ease), border-color var(--ease), padding var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,8,13,0.85);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: var(--border);
  padding: 14px 0;
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "links logo actions";
  align-items: center;
}
.nav__logo { grid-area: logo; }
.nav__links {
  grid-area: links;
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__actions {
  grid-area: actions;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__login {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all var(--ease);
  cursor: pointer;
  background: none;
  font-family: var(--font-b);
}
.nav__login:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}
.nav__cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--acc);
  border: 1px solid rgba(56,189,248,0.3);
  padding: 8px 18px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all var(--ease);
}
.nav__cta:hover {
  background: rgba(56,189,248,0.1);
  border-color: var(--acc);
}
.nav__burger {
  grid-area: actions;
  justify-self: end;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(7,8,13,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 1.5rem;
  color: var(--muted);
  transition: color var(--ease);
}
.mobile-menu__close:hover { color: var(--text); }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.mobile-menu__nav a {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color var(--ease);
}
.mobile-menu__nav a:hover { color: var(--acc); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: all var(--ease);
}
.btn--primary {
  background: var(--acc);
  color: #07080D;
}
.btn--primary:hover {
  background: #7BDBFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56,189,248,0.38);
}
.btn--outline {
  border: 1px solid rgba(56,189,248,0.28);
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--acc);
  color: var(--acc);
  background: rgba(56,189,248,0.07);
  transform: translateY(-2px);
}
.btn--buy {
  background: var(--acc);
  color: #07080D;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 6px;
}
.btn--buy:hover {
  background: #7BDBFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(56,189,248,0.32);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__glow--1 {
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, transparent 65%);
  top: -220px; left: -220px;
  animation: floatGlow 15s ease-in-out infinite;
}
.hero__glow--2 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(129,140,248,0.09) 0%, transparent 65%);
  bottom: -160px; right: -120px;
  animation: floatGlow 20s ease-in-out infinite reverse;
}
@keyframes floatGlow {
  0%,100% { transform: translate(0,0); }
  33%      { transform: translate(50px,-40px); }
  66%      { transform: translate(-30px,50px); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 140px 0 100px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--acc);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.hero__title {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 950px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--acc) 0%, var(--acc2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 46px;
}
.hero__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, var(--acc), transparent);
  margin: 0 auto;
  animation: scrollDrop 2.4s ease-in-out infinite;
  opacity: 0.4;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--sur);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: none; }
.stats__val {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--acc);
  line-height: 1;
  margin-bottom: 7px;
}
.stats__key {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 112px 0; }
.section--alt {
  background: var(--sur);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__header {
  text-align: center;
  margin-bottom: 70px;
}
.section__eyebrow {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--acc);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section__sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: if JS hasn't run yet, still show after 1.5s */
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}
.reveal {
  animation: revealFallback 0s 1.5s forwards;
}

/* ============================================================
   SCRIPT CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  background: var(--sur);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 0%, rgba(56,189,248,0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
}
.card:hover {
  border-color: rgba(56,189,248,0.3);
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(56,189,248,0.08);
}
.card:hover::after { opacity: 1; }
.card--featured {
  border-color: rgba(56,189,248,0.18);
  background: linear-gradient(160deg, rgba(56,189,248,0.04) 0%, var(--sur) 50%);
}
.card__featured-label {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acc);
  border: 1px solid rgba(56,189,248,0.35);
  padding: 3px 11px;
  border-radius: 100px;
}
.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.2);
  padding: 4px 13px;
  border-radius: 100px;
}
.card__icon { font-size: 1.9rem; line-height: 1; }
.card__cover {
  display: block;
  width: calc(100% + 64px);
  margin: -32px -32px 24px;
  height: 160px;
  object-fit: cover;
  flex-shrink: 0;
}
.sc-tile .card__cover {
  width: calc(100% + 52px);
  margin: -26px -26px 0;
  height: 150px;
}
.card__name {
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}
.card__desc code {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--acc);
  background: rgba(56,189,248,0.08);
  padding: 1px 6px;
  border-radius: 3px;
}
.card__feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 28px;
  flex: 1;
}
.card__feats li {
  font-size: 0.83rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card__feats li::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--acc);
  opacity: 0.7;
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  gap: 12px;
}
.card__btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn--details {
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  transition: all var(--ease);
}
.btn--details:hover {
  border-color: rgba(56,189,248,0.3);
  color: var(--text);
  background: rgba(56,189,248,0.05);
}
.card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.card__price span {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.card__price strong {
  font-family: var(--font-h);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.price-tax {
  font-size: 0.65rem;
  color: #f87171;
  font-weight: 500;
  display: block;
}

/* ============================================================
   FEATURE PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 24px;
  transition: transform var(--ease), border-color var(--ease);
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(56,189,248,0.22);
}
.pillar__icon {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1;
}
.pillar__title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pillar__desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__item.open { border-bottom-color: rgba(56,189,248,0.2); }
.faq__btn {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  transition: color var(--ease);
}
.faq__btn:hover { color: var(--acc); }
.faq__num {
  font-family: var(--font-h);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color var(--ease);
}
.faq__item.open .faq__num { color: var(--acc); }
.faq__q { font-size: 0.97rem; font-weight: 500; }
.faq__arr {
  font-size: 1.1rem;
  color: var(--muted);
  transition: transform 0.32s ease, color var(--ease);
}
.faq__item.open .faq__arr {
  transform: rotate(180deg);
  color: var(--acc);
}
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.faq__body p {
  padding: 0 0 22px 52px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.82;
}
.faq__body a {
  color: var(--acc);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq__body strong { color: var(--text); font-weight: 600; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta {
  position: relative;
  padding: 108px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(56,189,248,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; }
.cta__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 18px;
}
.cta__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 420px;
  margin: 0 auto 42px;
}
.cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--sur);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 58px;
}
.footer__brand .nav__logo {
  display: inline-block;
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 280px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer__col h5 {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 4px;
}
.footer__col a {
  font-size: 0.87rem;
  color: var(--muted);
  transition: color var(--ease);
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.footer__bottom p          { font-size: 0.8rem;  color: var(--muted); }
.footer__bottom p:last-child { font-size: 0.72rem; opacity: 0.5; max-width: 560px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars        { grid-template-columns: repeat(2, 1fr); }
  .footer__grid   { gap: 28px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger               { display: flex; }

  .cards   { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stats__item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 480px) {
  .hero__btns, .cta__btns { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   MARQUEE — animated script name ticker
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--sur);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  user-select: none;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__set {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
  transition: color var(--ease);
}
.marquee__item:hover { color: var(--text); }
.marquee__item span  { font-size: 1.05rem; line-height: 1; }
.marquee__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(56,189,248,0.35);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   NAV — currency dropdown + cart button
   ============================================================ */
/* Cart icon button */
.nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: none;
  color: var(--text);
  cursor: pointer;
  transition: all var(--ease);
  flex-shrink: 0;
}
.nav__cart:hover {
  border-color: rgba(56,189,248,0.3);
  color: var(--acc);
  background: rgba(56,189,248,0.06);
}
.nav__cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--acc);
  color: #07080D;
  font-size: 0.6rem;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  font-family: var(--font-h);
  line-height: 1;
  pointer-events: none;
}

/* ============================================================
   CART OVERLAY PANEL
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
}
.cart-overlay.open { pointer-events: all; }

.cart-overlay__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cart-overlay.open .cart-overlay__bg { opacity: 1; }

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: #0B0D16;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.cart-overlay.open .cart-panel { transform: translateX(0); }

/* Loading state — dim panel */
.cart-overlay.loading .cart-panel { opacity: 0.6; pointer-events: none; }

.cart-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-panel__h-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.cart-panel__h-title strong { color: var(--text); }
.cart-panel__h-title svg   { color: var(--acc); flex-shrink: 0; }
.cart-panel__close {
  font-size: 1.2rem;
  color: var(--muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all var(--ease);
}
.cart-panel__close:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,0.04);
}

.cart-panel__items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-panel__items::-webkit-scrollbar { width: 4px; }
.cart-panel__items::-webkit-scrollbar-track { background: transparent; }
.cart-panel__items::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.cart__empty {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  padding: 40px 0;
}
.cart__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: var(--sur2);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--ease);
}
.cart__item:hover { border-color: rgba(56,189,248,0.15); }
.cart__item-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(56,189,248,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cart__item-info strong {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart__item-info span {
  font-size: 0.78rem;
  color: var(--acc);
  font-weight: 600;
}
.cart__item-remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all var(--ease);
}
.cart__item-remove:hover {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.3);
  color: #F87171;
}

.cart-panel__foot {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.cart-panel__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-panel__total-row span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.cart-panel__total-row strong {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--acc);
  line-height: 1;
}
.cart-panel__note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.cart-panel__note strong { color: var(--text); }
.cart-panel__cta {
  width: 100%;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 15px;
}
  .footer__grid { gap: 20px; font-size: 0.82rem; }
  .card__feats  { grid-template-columns: 1fr; }
}

/* ============================================================
   LOGO BAR — branded divider with angle brackets
   ============================================================ */
.logo-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.logo-bar__line {
  height: 1px;
  background: rgba(56,189,248,0.3);
  min-width: 0;
  width: 100%;
}
.logo-bar__center {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  flex-shrink: 0;
}
.logo-bar__bk {
  font-family: var(--font-h);
  font-size: 2rem;
  color: var(--acc);
  line-height: 1;
  font-style: normal;
  opacity: 0.9;
}
.logo-bar__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--acc);
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   NAV LOGO — angle bracket style
   ============================================================ */
.nav__logo {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}
.nav__logo span  { color: var(--acc); }
.logo-bk {
  color: var(--acc);
  opacity: 0.75;
  font-size: 1.2em;
  line-height: 1;
  transition: opacity var(--ease);
}
.nav__logo:hover .logo-bk { opacity: 1; }

/* ============================================================
   SCRIPTS SHOWCASE — horizontal scroll strip on homepage
   ============================================================ */
.sc-section { padding-bottom: 80px; }

.sc-strip {
  overflow-x: auto;
  padding: 0 0 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  margin-top: 50px;
}
.sc-strip::-webkit-scrollbar       { height: 3px; }
.sc-strip::-webkit-scrollbar-track { background: transparent; }
.sc-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.sc-track {
  display: flex;
  gap: 18px;
  /* Full-bleed padding so first/last cards align with container */
  padding: 4px max(28px, calc((100vw - 1160px) / 2 + 28px));
  width: max-content;
}

.sc-tile {
  width: 290px;
  flex-shrink: 0;
  background: var(--sur);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.sc-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 0%, rgba(56,189,248,0.07) 0%, transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.sc-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(56,189,248,0.3);
  box-shadow: 0 22px 55px rgba(0,0,0,0.5);
}
.sc-tile:hover::after { opacity: 1; }
.sc-tile--feat {
  border-color: rgba(56,189,248,0.18);
  background: linear-gradient(160deg, rgba(56,189,248,0.04) 0%, var(--sur) 50%);
}
.sc-tile__feat-label {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acc);
  border: 1px solid rgba(56,189,248,0.35);
  padding: 3px 10px;
  border-radius: 100px;
}
.sc-tile__top {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.sc-tile__badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid;
  line-height: 1.4;
}
.sc-tile__badge--escrow {
  color: var(--acc);
  border-color: rgba(56,189,248,0.3);
  background: rgba(56,189,248,0.08);
}
.sc-tile__badge--os {
  color: #4ADE80;
  border-color: rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.08);
}
.sc-tile__icon { font-size: 1.7rem; line-height: 1; }
.sc-tile__name {
  font-family: var(--font-h);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.sc-tile__desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.72;
  flex: 1;
}
.sc-tile__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  gap: 10px;
}
.sc-tile__price {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.sc-browse {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

/* ============================================================
   PAGE HERO — shared header for inner pages (Why Us, FAQ)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.07) 0%, transparent 65%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 12px 0 20px;
}
.page-hero__title em { color: var(--acc); font-style: normal; }
.page-hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   NAV ACTIVE LINK
   ============================================================ */
.nav__link--active { color: var(--acc) !important; }

/* ============================================================
   FAQ CARDS — horizontal grid layout
   ============================================================ */
.faq-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .faq-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .faq-cards { grid-template-columns: 1fr; } }
.faq-card {
  background: var(--sur);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--ease), transform var(--ease);
}
.faq-card:hover {
  border-color: rgba(56,189,248,0.25);
  transform: translateY(-3px);
}
.faq-card__num {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--acc);
  opacity: 0.7;
}
.faq-card__q {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}
.faq-card__a {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.85;
  flex: 1;
}
.faq-card__a a { color: var(--acc); }
.faq-card__a strong { color: var(--text); }

/* ============================================================
   RECENT PAYMENTS
   ============================================================ */
.payments { padding: 100px 0; }
.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 960px) { .payments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .payments-grid { grid-template-columns: 1fr; } }
.pay-card {
  background: var(--sur);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color var(--ease);
}
.pay-card:hover { border-color: rgba(56,189,248,0.2); }
.pay-card__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
  color: #07080D;
}
.pay-card__info { flex: 1; min-width: 0; }
.pay-card__user {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pay-card__script {
  font-size: 0.74rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}
.pay-card__amount {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--acc);
  flex-shrink: 0;
}
.pay-card__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
