/* ==========================================================================
   ORBITAL TECHNOLOGIES — Global Styles
   Brand: #2BD98D primary | #0A0A0A secondary | #00ECFF accent
   Font: Outfit
   ========================================================================== */

:root {
  --c-primary: #2BD98D;
  --c-primary-600: #1FBF77;
  --c-primary-100: #E6FBF1;
  --c-secondary: #0A0A0A;
  --c-accent: #00ECFF;
  --c-bg: #FFFFFF;
  --c-bg-soft: #F7FAF9;
  --c-border: #E6E8EC;
  --c-text: #0A0A0A;
  --c-muted: #5B6470;
  --container-max: 1660px;
  --gutter: 20px;
  --side: 130px;
  --radius: 18px;
  --shadow-soft: 0 10px 40px -10px rgba(10,10,10,0.10);
  --shadow-glow: 0 20px 80px -20px rgba(43, 217, 141, 0.45);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--side);
  padding-right: var(--side);
}
@media (max-width: 1440px) { :root { --side: 80px; } }
@media (max-width: 1366px) { :root { --side: 64px; --gutter: 18px; } }
@media (max-width: 1280px) { :root { --side: 52px; } }
@media (max-width: 1024px) { :root { --side: 40px; } }
@media (max-width: 768px)  { :root { --side: 28px; } }
@media (max-width: 640px)  { :root { --side: 20px; } }

.section { padding: 120px 0; position: relative; }
.section-sm { padding: 80px 0; }
@media (max-width: 768px) { .section { padding: 72px 0; } .section-sm { padding: 48px 0; } }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 .5em; color: var(--c-secondary); }
.display { font-size: clamp(48px, 6.2vw, 92px); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; }
.h1 { font-size: clamp(40px, 4.5vw, 64px); }
.h2 { font-size: clamp(32px, 3.4vw, 52px); }
.h3 { font-size: clamp(24px, 2.2vw, 34px); }
.h4 { font-size: 22px; font-weight: 600; }
.lead { font-size: clamp(17px, 1.3vw, 21px); line-height: 1.55; color: var(--c-muted); font-weight: 400; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-primary); padding: 8px 14px; border-radius: 999px; background: var(--c-primary-100); border: 1px solid rgba(43,217,141,0.2); }
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-primary); box-shadow: 0 0 0 4px rgba(43,217,141,0.18); }
.gradient-text { background: linear-gradient(135deg, #2BD98D 0%, #00ECFF 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-muted { color: var(--c-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  border: 1px solid transparent; cursor: pointer;
  transition: all .35s var(--ease);
  position: relative; overflow: hidden;
  font-family: inherit;
}
.btn-primary { background: var(--c-secondary); color: #fff; }
.btn-primary:hover { background: var(--c-primary); color: var(--c-secondary); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-primary .arrow { transition: transform .35s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--c-secondary); border-color: var(--c-border); }
.btn-ghost:hover { border-color: var(--c-secondary); background: var(--c-secondary); color: #fff; }
.btn-mint { background: var(--c-primary); color: var(--c-secondary); }
.btn-mint:hover { background: var(--c-secondary); color: var(--c-primary); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-lg { padding: 20px 32px; font-size: 16px; }

/* ---------- Glass cards ---------- */
.glass {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 14px 60px -20px rgba(10,10,10,0.18);
}
.glass-dark {
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all .45s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at var(--mx,50%) var(--my,0%), rgba(43,217,141,0.10), transparent 60%);
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover { transform: translateY(-6px); border-color: rgba(43,217,141,0.5); box-shadow: var(--shadow-soft); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all .4s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px 12px 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 10px 40px -15px rgba(10,10,10,0.15);
}
.nav.scrolled .nav-inner { background: rgba(255,255,255,0.9); }
.nav-logo img { height: 32px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  padding: 10px 18px; border-radius: 999px; font-size: 14.5px; font-weight: 500;
  color: var(--c-secondary); transition: all .3s var(--ease);
  position: relative;
}
.nav-link:hover { background: rgba(10,10,10,0.06); }
.nav-link.active { color: var(--c-primary); font-weight: 600; background: rgba(43,217,141,0.14); }
.nav-link.active:hover { background: rgba(43,217,141,0.2); }
.nav-cta { margin-left: 8px; padding: 12px 22px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--c-secondary); margin: 5px 0; transition: all .3s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1024px) {
  .nav { padding: 12px 0; }
  .nav-inner { padding: 10px 14px 10px 18px; }
  .nav-links {
    position: fixed;
    top: 84px;
    left: var(--side);
    right: var(--side);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px;
    max-height: calc(100vh - 100px);
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 24px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(30px);
    border: 1px solid var(--c-border);
    box-shadow: 0 24px 80px -20px rgba(10,10,10,0.2);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all .35s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { width: 100%; justify-content: space-between; }
  .nav-item { width: 100%; }
  .nav-cta { width: 100%; margin: 8px 0 0; justify-content: center; }
  .menu-toggle { display: block; margin-left: 8px; }
}
@media (max-width: 640px) {
  .nav-logo img { height: 28px; }
  .btn-lg { padding: 16px 24px; font-size: 15px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 200px 0 120px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1000px 600px at 80% -10%, rgba(43,217,141,0.18), transparent 60%),
    radial-gradient(800px 500px at 0% 50%, rgba(0,236,255,0.10), transparent 60%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.hero .orbit {
  position: absolute; pointer-events: none;
  border: 1px dashed rgba(43,217,141,0.25);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.hero .orbit::before { content: ''; position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--c-primary); box-shadow: 0 0 30px var(--c-primary); }
.orbit-1 { width: 600px; height: 600px; right: -150px; top: 100px; }
.orbit-2 { width: 900px; height: 900px; right: -300px; top: 0; animation-duration: 70s; animation-direction: reverse; opacity: 0.4; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 80px; animation: scroll 40s linear infinite; width: max-content; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-size: 22px; font-weight: 600; color: var(--c-muted); white-space: nowrap; }
.marquee-track .dot { color: var(--c-primary); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stat-num { font-size: clamp(48px, 5vw, 80px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(135deg, #0A0A0A 0%, #2BD98D 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Footer ---------- */
.footer { background: var(--c-secondary); color: rgba(255,255,255,0.7); padding: 100px 0 40px; position: relative; overflow: hidden; }
.footer::before { content:''; position: absolute; inset:0; background: radial-gradient(800px 400px at 20% 0%, rgba(43,217,141,0.15), transparent 60%); pointer-events: none; }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 20px; font-weight: 600; }
.footer a { display: block; padding: 6px 0; font-size: 15px; transition: color .25s; }
.footer a:hover { color: var(--c-primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; margin-top: 60px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 14px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .48s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .56s; opacity: 1; transform: none; }

/* ---------- Float / parallax ---------- */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.float { animation: float 6s ease-in-out infinite; }
.float-slow { animation: float 9s ease-in-out infinite; }

/* ---------- Grid utilities ---------- */
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }
@media (max-width: 1200px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Service icon ---------- */
.svc-icon { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(43,217,141,0.15), rgba(0,236,255,0.10)); color: var(--c-primary); margin-bottom: 24px; transition: all .4s var(--ease); }
.card:hover .svc-icon { background: var(--c-secondary); color: var(--c-primary); transform: rotate(-6deg) scale(1.05); }

/* ---------- Pricing ---------- */
.price-card { padding: 44px 36px; border-radius: 24px; border: 1px solid var(--c-border); background: #fff; position: relative; transition: all .45s var(--ease); }
.price-card.featured { background: var(--c-secondary); color: #fff; border-color: var(--c-secondary); transform: scale(1.03); box-shadow: var(--shadow-glow); }
.price-card.featured h3, .price-card.featured .price { color: #fff; }
.price-card:hover { transform: translateY(-6px); border-color: var(--c-primary); }
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin: 16px 0 4px; }
.price span { font-size: 18px; font-weight: 500; color: var(--c-muted); }
.price-card.featured .price span { color: rgba(255,255,255,0.6); }
.price-features { list-style: none; padding: 0; margin: 28px 0; }
.price-features li { padding: 10px 0; font-size: 14.5px; display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.price-card.featured .price-features li { border-color: rgba(255,255,255,0.08); }
.price-features li::before { content: '✓'; color: var(--c-primary); font-weight: 700; flex-shrink: 0; }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--c-primary); color: var(--c-secondary); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }

/* ---------- Calculator ---------- */
.calc {
  background: linear-gradient(180deg, #0A0A0A 0%, #161616 100%);
  border-radius: 32px; padding: 60px;
  color: #fff; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.calc::before { content:''; position: absolute; inset:0; background: radial-gradient(600px 300px at 80% 0%, rgba(43,217,141,0.18), transparent 60%); pointer-events: none; }
.calc-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; position: relative; }
@media (max-width: 1024px) { .calc-grid { grid-template-columns: 1fr; } .calc { padding: 40px 28px; } }
.calc-item { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; margin-bottom: 12px; transition: all .3s ease; cursor: pointer; }
.calc-item:hover { background: rgba(43,217,141,0.08); border-color: rgba(43,217,141,0.4); }
.calc-item.selected { background: rgba(43,217,141,0.15); border-color: var(--c-primary); }
.calc-item-name { font-weight: 500; font-size: 15px; }
.calc-item-price { font-size: 14px; color: rgba(255,255,255,0.55); }
.calc-item.selected .calc-item-price { color: var(--c-primary); }
.calc-toggle { width: 44px; height: 24px; border-radius: 999px; background: rgba(255,255,255,0.1); position: relative; transition: all .3s ease; flex-shrink: 0; }
.calc-toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: all .3s ease; }
.calc-item.selected .calc-toggle { background: var(--c-primary); }
.calc-item.selected .calc-toggle::after { left: 23px; }
.calc-summary { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 32px; }
.calc-total { font-size: 56px; font-weight: 800; background: linear-gradient(135deg, #2BD98D, #00ECFF); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.04em; line-height: 1; }
.calc-savings { color: var(--c-primary); font-weight: 600; }

/* ---------- Form ---------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--c-secondary); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field textarea, .field select { width: 100%; padding: 16px 20px; border: 1px solid var(--c-border); border-radius: 14px; background: #fff; font-family: inherit; font-size: 15px; color: var(--c-secondary); transition: all .25s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 4px rgba(43,217,141,0.15); }
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- Tabs / pills ---------- */
.tabs { display: inline-flex; padding: 6px; background: rgba(10,10,10,0.06); border-radius: 999px; gap: 4px; }
.tab { padding: 10px 22px; border-radius: 999px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .3s ease; border: none; background: transparent; color: var(--c-secondary); font-family: inherit; }
.tab.active { background: var(--c-secondary); color: #fff; }

/* ---------- Process timeline ---------- */
.timeline { position: relative; }
.timeline::before { content:''; position: absolute; left: 31px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--c-primary), transparent); }
.timeline-item { display: flex; gap: 28px; padding: 24px 0; position: relative; }
.timeline-num { width: 64px; height: 64px; border-radius: 50%; background: var(--c-secondary); color: var(--c-primary); display: grid; place-items: center; font-weight: 700; font-size: 22px; flex-shrink: 0; border: 4px solid #fff; box-shadow: 0 0 0 1px var(--c-border); position: relative; z-index: 1; }

/* ---------- Badge ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.badge-live { background: #DCFCE7; color: #166534; }
.badge-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #16A34A; box-shadow: 0 0 0 3px rgba(22,163,74,0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(22,163,74,0.2);} 50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); } }
.badge-soon { background: #FEF3C7; color: #92400E; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--c-border); padding: 24px 0; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-size: 19px; font-weight: 600; color: var(--c-secondary); }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--c-primary-100); color: var(--c-primary); display: grid; place-items: center; font-size: 18px; transition: all .3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { background: var(--c-secondary); color: var(--c-primary); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: all .4s var(--ease); color: var(--c-muted); font-size: 15.5px; line-height: 1.6; }
.faq-item.open .faq-a { max-height: 400px; padding-top: 16px; }

/* ---------- Cursor glow ---------- */
.cursor-glow { position: fixed; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(43,217,141,0.10), transparent 60%); pointer-events: none; z-index: 0; transform: translate(-50%, -50%); transition: opacity .3s ease; }
@media (max-width: 1024px), (hover: none) {
  .cursor-glow { display: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 200px 0 80px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(1000px 500px at 50% 0%, rgba(43,217,141,0.15), transparent 60%); }

/* ---------- Misc ---------- */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--c-border), transparent); margin: 80px 0; }
.tag { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--c-bg-soft); border: 1px solid var(--c-border); font-size: 12px; font-weight: 500; color: var(--c-muted); margin: 4px 4px 0 0; }
