@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');

/* ══════════════════════════════════════════
   CloudRaptiX Technology — Design System
   ══════════════════════════════════════════ */
:root {
  --navy:      #07122A;
  --navy2:     #0C1B3A;
  --navy3:     #112047;
  --blue:      #1539A0;
  --electric:  #1E56E3;
  --sky:       #4080F5;
  --accent:    #5FA3FA;
  --lite:      #B8D4FD;
  --gold:      #F5A623;
  --white:     #FFFFFF;
  --offwhite:  #EEF3FF;
  --muted:     #7B95BF;
  --border:    rgba(95,163,250,0.14);
  --card:      rgba(11,27,58,0.72);
  --card2:     rgba(17,32,71,0.85);
  --radius:    14px;
  --radiuslg:  22px;
  --shadow:    0 24px 72px rgba(7,18,42,0.85);
  --glow:      0 0 48px rgba(30,86,227,0.28);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }





body {
  font-family: 'Roboto', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* Canvas background */
#bgCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ── NAVBAR ────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5.5%; height: 68px;
  background: rgba(7,18,42,0.82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: height .3s, background .3s;
}
.navbar.scrolled { height: 56px; background: rgba(7,18,42,.97); }

.nav-brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--white);
  font-size: 1.08rem; font-weight: 700;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--electric));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--glow); overflow: hidden; position: relative;
  flex-shrink: 0;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.12));
}
.brand-mark svg { width: 19px; height: 19px; }
.brand-name { display: flex; flex-direction: column; }
.brand-main { display: flex; align-items: baseline; gap: 0; font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
.brand-main .cr { color: var(--accent); }
.brand-sub { font-size: .62rem; font-weight: 500; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; list-style: none; gap: 3px; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: .86rem; font-weight: 500;
  padding: 7px 13px; border-radius: 8px;
  transition: color .2s, background .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(95,163,250,.09);
}
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 15px; height: 2px;
  background: var(--accent); border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--electric), var(--sky));
  color: #fff; border: none;
  padding: 9px 21px; border-radius: 8px;
  font: 600 .875rem/1 'Roboto', sans-serif;
  cursor: pointer; transition: all .3s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,86,227,.5); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span { display: block; width: 23px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* Mobile menu */
.mob-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; z-index: 990;
  background: rgba(7,18,42,.98); backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  padding: 14px 5.5% 22px; flex-direction: column; gap: 3px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  color: var(--muted); text-decoration: none;
  font-size: .94rem; font-weight: 500;
  padding: 11px 14px; border-radius: 9px; transition: all .2s;
}
.mob-menu a:hover { color: var(--white); background: var(--card); }
.mob-menu a.active { color: var(--accent); }

/* ── PAGE WRAPPER ──────────────────────────────── */
.wrapper { position: relative; z-index: 1; }

/* ── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 96px 5.5% 60px; position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; width: 100%;
}

/* Hero text */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,86,227,.14); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 100px;
  font-size: .73rem; font-weight: 600;
  color: var(--accent); letter-spacing: .09em;
  margin-bottom: 22px;
  animation: fadeUp .8s .1s both;
}
.hero-badge .blink { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.3; } }

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  font-weight: 900; line-height: 1.09; letter-spacing: -.025em;
  animation: fadeUp .8s .22s both;
}
.hero h1 .h-accent { color: var(--accent); }
.hero h1 .h-sub {
  display: block; font-size: .36em; font-weight: 400;
  color: var(--muted); letter-spacing: .14em;
  text-transform: uppercase; margin-top: 12px;
}
.hero-desc {
  margin-top: 22px; font-size: 1.04rem;
  color: var(--muted); line-height: 1.79;
  font-weight: 300; max-width: 510px;
  animation: fadeUp .8s .38s both;
}
.hero-actions { display: flex; gap: 13px; margin-top: 34px; flex-wrap: wrap; animation: fadeUp .8s .52s both; }
.hero-stats { display: flex; gap: 32px; margin-top: 46px; flex-wrap: wrap; animation: fadeUp .8s .65s both; }
.stat-n { font-size: 2rem; font-weight: 900; background: linear-gradient(135deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-l { font-size: .72rem; color: var(--muted); margin-top: 2px; }

/* Globe */
.hero-vis { display: flex; align-items: center; justify-content: center; animation: fadeIn 1.1s .5s both; }
.globe-wrap { width: min(430px, 44vw); aspect-ratio: 1; position: relative; }
.globe-ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(95,163,250,.18); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.g-r1 { width: 118%; height: 118%; animation: gspin 13s linear infinite; }
.g-r2 { width: 144%; height: 144%; animation: gspin 20s linear infinite reverse; }
.g-r1::before, .g-r2::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%);
  width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold);
}
.g-r2::before { background: var(--accent); box-shadow: 0 0 12px var(--accent); top: 100%; }
.globe-sphere {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle at 28% 28%, rgba(64,128,245,.33), rgba(21,57,160,.72) 44%, rgba(7,18,42,.98));
  border: 1px solid rgba(95,163,250,.22); position: relative; overflow: hidden;
  box-shadow: 0 0 100px rgba(30,86,227,.18), inset 0 0 60px rgba(7,18,42,.8);
  animation: gfloat 7s ease-in-out infinite;
}
.globe-sphere::before {
  content: ''; position: absolute; inset: -62%;
  background: repeating-linear-gradient(0deg, transparent, transparent 21px, rgba(95,163,250,.05) 21px, rgba(95,163,250,.05) 22px);
  animation: gspin 24s linear infinite;
}
.globe-sphere::after {
  content: ''; position: absolute; inset: -62%;
  background: repeating-linear-gradient(90deg, transparent, transparent 21px, rgba(95,163,250,.04) 21px, rgba(95,163,250,.04) 22px);
}
.g-pin {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 14px var(--accent);
  animation: gping 3s ease-in-out infinite;
}
.g-pin:nth-child(1) { top:27%; left:42%; }
.g-pin:nth-child(2) { top:54%; left:63%; animation-delay:.9s; }
.g-pin:nth-child(3) { top:70%; left:34%; animation-delay:1.8s; }
.g-pin:nth-child(4) { top:37%; left:69%; animation-delay:2.7s; }

@keyframes gping { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.5); } }
@keyframes gfloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-20px); } }
@keyframes gspin { from { transform:translate(-50%,-50%) rotate(0deg); } to { transform:translate(-50%,-50%) rotate(360deg); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ── MARQUEE ────────────────────────────────────── */
.marquee-wrap {
  padding: 26px 0; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(21,57,160,.05);
}
.marquee-track { display: flex; gap: 38px; width: max-content; animation: marq 30s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 7px;
  border: 1px solid var(--border); background: rgba(21,57,160,.08);
  color: var(--muted); font-size: .8rem; font-weight: 500;
  white-space: nowrap; letter-spacing: .04em;
}
.mq-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
@keyframes marq { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── SECTIONS ────────────────────────────────────── */
section { padding: 90px 5.5%; position: relative; z-index: 1; }
.eyebrow {
  font-size: .71rem; font-weight: 700; letter-spacing: .2em;
  color: var(--accent); text-transform: uppercase;
  display: flex; align-items: center; gap: 9px; margin-bottom: 11px;
}
.eyebrow::before { content: ''; width: 25px; height: 2px; background: var(--accent); border-radius: 2px; }
.sec-h {
  font-size: clamp(1.75rem, 3.2vw, 2.7rem); font-weight: 900;
  line-height: 1.13; letter-spacing: -.022em; margin-bottom: 14px;
}
.sec-h .ac { color: var(--accent); }
.sec-p { color: var(--muted); font-size: .97rem; line-height: 1.78; max-width: 590px; font-weight: 300; }
.divider { height: 1px; margin: 0 5.5%; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* Page header */
.page-header {
  padding: 128px 5.5% 68px;
  background: linear-gradient(158deg, rgba(21,57,160,.28) 0%, rgba(7,18,42,0) 55%);
  border-bottom: 1px solid var(--border); position: relative; z-index: 1;
}
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: .77rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--accent); }

/* ── CARDS ────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radiuslg); padding: 30px 26px;
  position: relative; overflow: hidden; transition: all .36s;
}
.card:hover {
  border-color: rgba(95,163,250,.36); transform: translateY(-7px);
  box-shadow: var(--shadow); background: rgba(14,30,64,.88);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--electric), var(--sky), var(--accent));
  opacity: 0; transition: opacity .3s;
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(30,86,227,.32), rgba(64,128,245,.16));
  border: 1px solid rgba(95,163,250,.24);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.04rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.card p { font-size: .85rem; color: var(--muted); line-height: 1.72; }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag {
  padding: 4px 11px; border-radius: 100px;
  background: rgba(30,86,227,.14); border: 1px solid rgba(95,163,250,.18);
  font-size: .7rem; color: var(--accent); font-weight: 500;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--electric), var(--sky));
  color: #fff; border: none;
  padding: 13px 30px; border-radius: 9px;
  font: 600 .92rem/1 'Roboto', sans-serif;
  cursor: pointer; transition: all .3s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(30,86,227,.48); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--border);
  padding: 13px 30px; border-radius: 9px;
  font: 500 .92rem/1 'Roboto', sans-serif;
  cursor: pointer; transition: all .3s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

.btn-ghost {
  background: rgba(95,163,250,.1); color: var(--accent);
  border: 1px solid var(--border);
  padding: 11px 23px; border-radius: 9px;
  font: 500 .87rem/1 'Roboto', sans-serif;
  cursor: pointer; transition: all .3s;
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover { background: rgba(95,163,250,.2); transform: translateY(-2px); }

/* ── SCROLL REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .68s ease, transform .68s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
.reveal.d6 { transition-delay: .48s; }

/* ── TOAST ─────────────────────────────────────── */
.toast {
  position: fixed; bottom: 26px; right: 26px; z-index: 9999;
  background: linear-gradient(135deg, var(--blue), var(--electric));
  color: #fff; padding: 13px 22px; border-radius: 10px;
  font-size: .87rem; font-weight: 500;
  box-shadow: 0 10px 32px rgba(30,86,227,.5);
  transform: translateY(80px); opacity: 0; transition: all .4s; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: rgba(7,18,42,.95); border-top: 1px solid var(--border);
  padding: 58px 5.5% 26px; position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-brand p { font-size: .83rem; color: var(--muted); line-height: 1.72; margin-top: 12px; max-width: 275px; font-weight: 300; }
.footer-col h5 { font-size: .83rem; font-weight: 700; letter-spacing: .05em; margin-bottom: 17px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: .82rem; font-weight: 300; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .77rem; color: var(--muted); }
.social-links { display: flex; gap: 9px; }
.soc-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .82rem; font-weight: 700;
  transition: all .2s; text-decoration: none;
}
.soc-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-vis { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  section { padding: 62px 5.5%; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
}
