:root {
  --bg: #06090e;
  --bg-soft: #0a1019;
  --card: rgba(13, 19, 29, 0.82);
  --card-strong: #0e1724;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: rgba(255,255,255,.1);
  --emerald: #10b981;
  --cyan: #06b6d4;
  --gold: #f6c453;
  --container: 1180px;
  --ease: cubic-bezier(.23,1,.32,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 0%, rgba(16,185,129,.11), transparent 27rem),
    radial-gradient(circle at 86% 15%, rgba(6,182,212,.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.6;
}
html[dir="rtl"] body { font-family: "IBM Plex Sans Arabic", "Plus Jakarta Sans", system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  background: rgba(6,9,14,.86);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  position: relative;
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  display: grid; place-items: center;
  background: #06090e; border: 1px solid rgba(246,196,83,.5);
  box-shadow: 0 0 18px rgba(246,196,83,.15);
  transition: .35s var(--ease);
}
.brand-mark img { width: 125%; height: 125%; object-fit: contain; filter: drop-shadow(0 0 7px rgba(251,191,36,.48)); position: relative; z-index: 1; }
.brand-mark::after {
  content: ""; position: absolute; top: -35%; bottom: -35%; left: -70%; width: 34%; z-index: 2;
  transform: rotate(24deg); pointer-events: none; opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08) 28%, rgba(253,230,138,.92) 50%, rgba(255,255,255,.1) 72%, transparent);
  filter: blur(1px); transition: left .65s var(--ease), opacity .2s ease;
}
.brand:hover .brand-mark { border-color: rgba(255,241,170,.9); box-shadow: 0 0 28px rgba(246,196,83,.32); }
.brand:hover .brand-mark::after { left: 135%; opacity: 1; }
.brand-copy { display: grid; line-height: 1; gap: 5px; }
.brand-name { font-family: "Space Grotesk", sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -.03em; }
.brand-sub { color: var(--muted); font-size: 10px; letter-spacing: .06em; }

.site-nav { display: flex; align-items: center; justify-content: center; gap: 24px; color: #cbd5e1; font-size: 13px; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--emerald); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle, .menu-toggle {
  border: 1px solid var(--border); background: rgba(255,255,255,.04); color: #e2e8f0;
  border-radius: 10px; padding: 8px 11px; cursor: pointer; transition: .2s ease;
}
.lang-toggle:hover, .menu-toggle:hover { border-color: rgba(246,196,83,.55); background: rgba(246,196,83,.08); }
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid rgba(16,185,129,.45); border-radius: 11px; padding: 11px 16px;
  background: linear-gradient(135deg, #10b981, #0f9f9c); color: white; font-size: 12px; font-weight: 700;
  box-shadow: 0 0 24px rgba(16,185,129,.24); transition: .25s var(--ease);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(16,185,129,.38); }
.menu-toggle { display: none; }

.hero {
  position: relative; isolation: isolate; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 90px 0 74px; min-height: 680px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, rgba(6,9,14,.48), rgba(6,9,14,.8)), url("assets/hero-network.png") center/cover;
  opacity: .58;
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(6,9,14,.86) 0%, rgba(6,9,14,.56) 55%, rgba(6,9,14,.76) 100%); }
.hero-content { max-width: 830px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(16,185,129,.35); color: #34d399; background: rgba(16,185,129,.1); border-radius: 999px; padding: 7px 13px; font-size: 12px; margin-bottom: 24px; }
.eyebrow::before { content: "✦"; }
h1, h2, h3 { margin: 0; line-height: 1.12; font-family: "Space Grotesk", "IBM Plex Sans Arabic", sans-serif; }
h1 { font-size: clamp(42px, 6vw, 76px); letter-spacing: -.055em; max-width: 900px; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.045em; }
h3 { letter-spacing: -.025em; }
.gradient { background: linear-gradient(135deg, #34d399, #06b6d4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { max-width: 700px; color: #cbd5e1; font-size: 17px; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button-secondary { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; padding: 12px 16px; color: #e2e8f0; background: rgba(6,9,14,.7); font-size: 12px; transition: .25s ease; }
.button-secondary:hover { border-color: rgba(16,185,129,.45); background: rgba(16,185,129,.08); }
.trust { display: flex; align-items: center; gap: 8px; color: #94a3b8; margin-top: 34px; font-size: 12px; }
.trust::before { content: "✓"; color: var(--emerald); border: 1px solid rgba(16,185,129,.45); border-radius: 50%; width: 18px; height: 18px; display: grid; place-items: center; }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 72px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); }
.stat, .card, .legal-card, .price-card { background: var(--card); border: 1px solid rgba(255,255,255,.09); border-radius: 18px; backdrop-filter: blur(14px); }
.stat { padding: 20px; transition: .25s var(--ease); }
.stat:hover, .card:hover, .price-card:hover { border-color: rgba(16,185,129,.4); transform: translateY(-3px); }
.stat-value { font: 700 28px/1 "Space Grotesk", sans-serif; color: #34d399; }
.stat-label { color: #e2e8f0; font-size: 13px; font-weight: 700; margin-top: 8px; }
.stat small { display: block; color: #94a3b8; font-size: 11px; margin-top: 5px; }

.section { padding: 100px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.section-muted { background: rgba(2,6,23,.35); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { color: #94a3b8; margin: 16px 0 0; }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.about-copy p { color: #cbd5e1; font-size: 15px; }
.callout { color: #a7f3d0; background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2); border-radius: 14px; padding: 16px; margin: 22px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.card { padding: 25px; transition: .25s var(--ease); }
.card-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #34d399; background: linear-gradient(135deg, rgba(16,185,129,.18), rgba(6,182,212,.09)); border: 1px solid rgba(255,255,255,.12); font-size: 23px; margin-bottom: 18px; }
.card h3 { font-size: 18px; color: #fff; }
.card p { color: #94a3b8; font-size: 13px; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.tag { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: #cbd5e1; border-radius: 7px; padding: 5px 8px; font: 10px/1.1 monospace; }
.check-list { padding: 0; margin: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 9px; color: #cbd5e1; font-size: 13px; }
.check-list li::before { content: "✓"; color: var(--emerald); }
.process-card { min-height: 220px; border-top: 2px solid rgba(16,185,129,.45); }
.step-line { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.step-no { color: #34d399; font: 700 26px/1 monospace; }
.duration { color: #94a3b8; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: 4px 8px; font-size: 10px; }

.pricing-hero, .legal-hero { padding: 84px 0 60px; border-bottom: 1px solid rgba(255,255,255,.07); background: radial-gradient(circle at 50% 0%, rgba(16,185,129,.12), transparent 32rem); }
.pricing-hero .section-head, .legal-hero .section-head { margin-bottom: 0; }
.model-strip { padding: 42px 0; background: rgba(2,6,23,.35); border-bottom: 1px solid rgba(255,255,255,.07); }
.price-card { padding: 30px; display: flex; flex-direction: column; transition: .25s var(--ease); position: relative; }
.price-card.featured { border-color: rgba(16,185,129,.55); box-shadow: 0 0 36px rgba(16,185,129,.14); transform: translateY(-8px); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); border-radius: 999px; background: var(--emerald); color: #021a10; font-size: 10px; font-weight: 800; padding: 6px 12px; text-transform: uppercase; white-space: nowrap; }
.price-card h3 { font-size: 22px; }
.price { font: 700 42px/1 "Space Grotesk", sans-serif; margin: 24px 0 5px; }
.cadence { color: #34d399; font: 11px monospace; }
.price-card p { color: #94a3b8; font-size: 12px; min-height: 70px; }
.price-card .check-list { margin: 20px 0 26px; flex: 1; }
.faq { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.faq .card h3 { font-size: 15px; }
.faq .card p { margin-left: 23px; }

.legal-body { padding: 70px 0 100px; }
.legal-layout { max-width: 900px; margin: 0 auto; display: grid; gap: 20px; }
.legal-card { padding: 30px; }
.legal-card h2 { font-size: 22px; color: #a7f3d0; margin-bottom: 18px; }
.legal-card p { color: #cbd5e1; font-size: 13px; margin: 0 0 13px; padding-left: 13px; border-left: 1px solid rgba(255,255,255,.13); }
.legal-meta { color: #34d399; font: 12px monospace; margin: 10px 0 18px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.contact-steps { display: grid; gap: 12px; margin: 26px 0; }
.contact-step { display: flex; gap: 11px; color: #cbd5e1; font-size: 13px; }
.contact-step b { flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(16,185,129,.16); color: #34d399; font-size: 11px; }
.address-box { padding: 18px; border-radius: 16px; background: #0a1019; border: 1px solid rgba(255,255,255,.1); color: #cbd5e1; font-size: 12px; }
.form { padding: 30px; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; color: #cbd5e1; font-size: 11px; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; color: #fff; background: #0b111b; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; padding: 12px 13px; outline: none; font-size: 13px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(16,185,129,.1); }
.field textarea { min-height: 130px; resize: vertical; }
.form-status { min-height: 20px; color: #34d399; font-size: 11px; margin-top: 12px; }

.site-footer { padding: 58px 0 28px; background: #04060a; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 46px; height: 46px; }
.footer-brand .brand-name { font-size: 18px; }
.footer-description { max-width: 390px; color: #94a3b8; font-size: 12px; }
.footer-address { max-width: 410px; color: #cbd5e1; font-size: 11px; line-height: 1.8; padding: 13px; margin-top: 18px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.03); }
.footer-col h4 { color: #e2e8f0; font: 700 11px/1 "Space Grotesk", sans-serif; text-transform: uppercase; letter-spacing: .08em; margin: 7px 0 15px; }
.footer-col a { display: block; color: #94a3b8; font-size: 12px; margin: 10px 0; }
.footer-col a:hover { color: var(--emerald); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #64748b; font-size: 10px; }

@media (max-width: 1050px) {
  .site-nav { gap: 13px; font-size: 12px; }
  .header-actions .cta { padding: 10px 12px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.5fr repeat(3,1fr); gap: 22px; }
}
@media (max-width: 820px) {
  .site-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions .cta { display: none; }
  .mobile-open .site-nav { position: absolute; top: 76px; left: 0; right: 0; display: grid; gap: 0; padding: 14px 20px 20px; background: #070b12; border-bottom: 1px solid var(--border); }
  .mobile-open .site-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .price-card.featured { transform: none; }
}
@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .header-inner { gap: 8px; }
  .brand-copy { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .lang-toggle { padding: 7px 9px; }
  .hero { padding: 62px 0 56px; min-height: auto; }
  .hero p { font-size: 14px; }
  .stats, .grid-2, .grid-3, .grid-4, .faq, .form-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .form { padding: 21px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
