:root {
  --navy: #060d1f; --navy-2: #0c1830; --navy-3: #111e38;
  --violet: #7c3aed; --violet-dim: rgba(124,58,237,0.18); --violet-glow: rgba(124,58,237,0.35);
  --coral: #ff4d6d; --white: #f8f5ff; --slate: #94a3b8; --slate-2: #64748b;
  --display: 'Space Grotesk', sans-serif; --body: 'DM Sans', sans-serif;
  --r-lg: 20px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--navy); color: var(--white); overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 68px; background: rgba(6,13,31,0.8); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(148,163,184,0.12); }
.nav-logo { font-family: var(--display); font-weight: 700; font-size: 20px; display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--slate); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--violet); color: var(--white); border: none; border-radius: 8px; padding: 10px 22px; font-weight: 600; cursor: pointer; box-shadow: 0 0 24px var(--violet-glow); }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 100px 24px 80px; position: relative; text-align: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,58,237,0.22) 0%, transparent 70%), radial-gradient(ellipse 40% 30% at 80% 60%, rgba(255,77,109,0.10) 0%, transparent 60%); pointer-events: none; }
.orbit-ring-wrap { position: relative; width: 380px; height: 380px; margin: 0 auto 48px; }
.orbit-svg { position: absolute; inset: 0; animation: spin-orbit 18s linear infinite; }
.orbit-svg-rev { position: absolute; inset: 10%; animation: spin-orbit 28s linear infinite reverse; opacity: 0.5; }
@keyframes spin-orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.orbit-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.orbit-brand { font-family: var(--display); font-weight: 700; font-size: 26px; }
.orbit-brand span { color: var(--violet); }
.hero-headline { font-family: var(--display); font-size: clamp(36px, 6vw, 72px); font-weight: 700; line-height: 1.05; letter-spacing: -2px; margin-bottom: 20px; }
.hl-violet { color: var(--violet); } .hl-coral { color: var(--coral); }
.hero-sub { color: var(--slate); max-width: 520px; margin: 0 auto 40px; }
.btn-primary { background: var(--violet); color: var(--white); border: none; border-radius: 10px; padding: 14px 32px; font-weight: 600; cursor: pointer; }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(148,163,184,0.22); border-radius: 10px; padding: 14px 32px; font-weight: 600; cursor: pointer; }

/* MARQUEE */
.marquee-wrap { border-top: 1px solid rgba(148,163,184,0.12); border-bottom: 1px solid rgba(148,163,184,0.12); padding: 18px 0; overflow: hidden; background: var(--navy-2); }
.marquee-track { display: flex; gap: 0; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 12px; padding: 0 40px; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--slate); text-transform: uppercase; }
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }
.marquee-num { font-family: var(--display); color: var(--white); font-size: 18px; font-weight: 700; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* COMMON SECTIONS */
section { padding: 100px 48px; }
.container { max-width: 1160px; margin: 0 auto; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--violet); margin-bottom: 16px; }
.section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--violet); border-radius: 2px; }
.section-title { font-family: var(--display); font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; }

/* SERVICES */
.services-section { background: var(--navy-2); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card { background: var(--navy-3); border: 1px solid rgba(148,163,184,0.12); border-radius: var(--r-lg); padding: 36px 32px; transition: transform 0.25s; }
.bento-card:hover { border-color: var(--violet); transform: translateY(-4px); }
.bento-card.wide { grid-column: span 2; }
.bento-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--violet-dim); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.bento-card h3 { font-family: var(--display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.bento-card p { font-size: 14px; color: var(--slate); }
.bento-tag { display: inline-block; margin-top: 20px; background: var(--violet-dim); color: var(--violet); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.bento-big-num { font-family: var(--display); font-size: 72px; font-weight: 700; color: var(--violet); margin-bottom: 8px; }

/* PROCESS */
.process-section { background: var(--navy); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; border: 1px solid rgba(148,163,184,0.12); border-radius: var(--r-lg); overflow: hidden; }
.process-step { padding: 40px 28px; border-right: 1px solid rgba(148,163,184,0.12); }
.process-step:last-child { border-right: none; }
.process-step-num { font-family: var(--display); font-size: 48px; font-weight: 700; color: var(--violet-dim); margin-bottom: 20px; }
.process-step h3 { font-family: var(--display); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: var(--slate); }

/* RESULTS */
.results-section { background: var(--navy-2); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.result-card { background: var(--navy); border: 1px solid rgba(148,163,184,0.12); border-radius: var(--r-lg); padding: 32px; }
.result-industry { font-size: 11px; font-weight: 700; color: var(--coral); text-transform: uppercase; margin-bottom: 16px; }
.result-metric { font-family: var(--display); font-size: 52px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.result-metric span { color: var(--violet); }
.result-desc { font-size: 14px; color: var(--slate); }

/* AWS */
.aws-section { background: var(--navy); }
.aws-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
.aws-diagram { background: var(--navy-2); border: 1px solid rgba(148,163,184,0.12); border-radius: var(--r-lg); padding: 32px; font-family: monospace; font-size: 12px; color: var(--slate); }
.d-title { color: var(--violet); font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.d-service { color: var(--white); font-weight: 600; }
.aws-services-list { display: flex; flex-direction: column; gap: 16px; }
.aws-service-row { display: flex; gap: 16px; padding: 20px; border: 1px solid rgba(148,163,184,0.12); border-radius: 12px; background: var(--navy-2); }
.aws-svc-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--violet-dim); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.aws-svc-name { font-family: var(--display); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.aws-svc-name span { color: var(--violet); font-size: 12px; font-weight: 500; margin-left: 8px; }

/* CONTACT */
.contact-section { background: var(--navy-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form-wrap { background: var(--navy-3); border: 1px solid rgba(148,163,184,0.12); border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--slate); margin-bottom: 8px; }
.form-control { width: 100%; padding: 12px 16px; background: var(--navy); border: 1.5px solid rgba(148,163,184,0.12); border-radius: 10px; color: var(--white); outline: none; }
.form-submit { width: 100%; padding: 14px; background: var(--violet); color: var(--white); border: none; border-radius: 10px; font-weight: 700; cursor: pointer; margin-top: 8px; }

.dashboard-activation-module { margin-top: 40px; padding: 24px; background: var(--navy-3); border: 1px solid rgba(148,163,184,0.12); border-radius: 10px; }
.auth-note { color: var(--slate); font-size: 13px; margin: 12px 0; }
.dashboard-view-wrap { margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(148,163,184,0.12); }
.chart-container { background: var(--navy); border: 1.5px solid rgba(148,163,184,0.12); border-radius: 10px; padding: 20px; position: relative; width: 100%; min-height: 280px; }

/* FOOTER */
footer { background: var(--navy); border-top: 1px solid rgba(148,163,184,0.12); padding: 60px 48px 32px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; color: var(--slate-2); }
.footer-aws-badge { display: flex; align-items: center; gap: 8px; background: var(--navy-2); border: 1px solid rgba(148,163,184,0.12); border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 600; color: var(--slate); }

/* TOAST */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(100px); background: #1e1b4b; border: 1px solid var(--violet); color: var(--white); padding: 14px 28px; border-radius: 30px; font-weight: 600; z-index: 500; transition: transform 0.35s; }
.toast.show { transform: translateX(-50%) translateY(0); }
.auth-modal { display: none; position: fixed; inset: 0; z-index: 400; background: rgba(2, 6, 23, 0.78); padding: 24px; align-items: center; justify-content: center; }
.auth-modal.open { display: flex; }
.auth-card { position: relative; width: min(100%, 420px); padding: 36px; border-radius: 16px; background: var(--navy-3); border: 1px solid rgba(148,163,184,0.2); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.auth-card h3 { font-family: var(--display); font-size: 24px; margin-bottom: 24px; }
.auth-close { position: absolute; right: 14px; top: 10px; color: var(--slate); border: none; background: transparent; font-size: 28px; cursor: pointer; }
.auth-switch { width: 100%; border: none; margin: 16px 0; background: transparent; color: var(--violet); cursor: pointer; font-weight: 600; }
