/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0b0f;
  --bg-card: #111318;
  --bg-dark: #07080c;
  --border: rgba(255,255,255,0.07);
  --text: #e8eaf0;
  --text-muted: #7a7f94;
  --accent: #7c5cfc;
  --accent-2: #00d4ff;
  --accent-3: #ff6b6b;
  --gradient: linear-gradient(135deg, #7c5cfc 0%, #00d4ff 100%);
  --font: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  overflow: hidden;
}

/* ===========================
   GLOW EFFECTS
=========================== */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.glow-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; left: -150px; }
.glow-2 { width: 400px; height: 400px; background: var(--accent-2); top: 100px; right: -100px; }
.glow-3 { width: 700px; height: 500px; background: var(--accent); bottom: -100px; right: -200px; }

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ===========================
   TYPOGRAPHY
=========================== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===========================
   BADGES
=========================== */
.badge {
  display: inline-block;
  background: rgba(124, 92, 252, 0.12);
  border: 1px solid rgba(124, 92, 252, 0.3);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.product-badge {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-nav {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 100px;
  transition: opacity 0.2s;
}
.btn-nav:hover { opacity: 0.85; }

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 11, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn-nav) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:not(.btn-nav):hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.mobile-menu.open { display: flex; }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }
.hero-sub {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   CARDS
=========================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(124, 92, 252, 0.4); transform: translateY(-3px); }

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-top: 6px; }

/* ===========================
   ADVISOROS SPOTLIGHT
=========================== */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.spotlight-text h2 { margin-bottom: 16px; }
.spotlight-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 24px; }

.feature-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.check {
  color: var(--accent-2);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===========================
   MOCK UI
=========================== */
.mock-ui {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(124, 92, 252, 0.12);
}

.mock-bar {
  background: rgba(255,255,255,0.04);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.mock-title { font-size: 0.78rem; color: var(--text-muted); margin-left: 8px; font-weight: 500; }

.mock-body { padding: 16px; }

.mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 10px 8px;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
  gap: 8px;
  align-items: center;
}
.mock-row:last-of-type { border-bottom: none; }
.header-row { color: var(--text-muted); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}
.status.active { background: rgba(0, 212, 255, 0.12); color: var(--accent-2); }
.status.review { background: rgba(255, 193, 7, 0.12); color: #ffc107; }
.status.pending { background: rgba(124, 92, 252, 0.12); color: var(--accent); }

.mock-ai {
  margin-top: 14px;
  background: rgba(124, 92, 252, 0.08);
  border: 1px solid rgba(124, 92, 252, 0.2);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.ai-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.mock-ai p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ===========================
   CONTACT
=========================== */
.contact-container { max-width: 640px; }
.contact-sub { color: var(--text-muted); margin-top: 16px; margin-bottom: 40px; font-size: 1rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form select option { background: var(--bg-card); }
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary { align-self: flex-start; }

.success-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius);
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ===========================
   HERO OFFERING PILLS
=========================== */
.hero-offerings {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-offering-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.pill-icon { font-size: 1rem; }
.hero-offering-divider { color: var(--text-muted); font-size: 1.2rem; }

/* ===========================
   THREE OFFERINGS GRID
=========================== */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.offering-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.offering-card:hover { transform: translateY(-4px); }
.offering-build:hover  { border-color: rgba(124, 92, 252, 0.5); }
.offering-learn:hover  { border-color: rgba(0, 212, 255, 0.5); }
.offering-launch:hover { border-color: rgba(240, 180, 41, 0.5); }

.offering-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 20px;
  right: 24px;
  letter-spacing: -0.04em;
}
.offering-icon { font-size: 2rem; margin-bottom: 16px; }
.offering-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.offering-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.offering-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}
.offering-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-offering {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(124, 92, 252, 0.35);
  border-radius: 100px;
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.btn-offering:hover { background: rgba(124, 92, 252, 0.12); }
.btn-offering-gold {
  color: #f0b429;
  border-color: rgba(240, 180, 41, 0.35);
}
.btn-offering-gold:hover { background: rgba(240, 180, 41, 0.1); }

/* ===========================
   WORKSHOPS SECTION
=========================== */
.workshop-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
  margin-top: 48px;
}
.workshop-text h2 { margin-bottom: 20px; }
.workshop-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

.workshop-formats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.workshop-format {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.2s;
}
.workshop-format:hover { border-color: rgba(0, 212, 255, 0.3); }
.format-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 4px;
}
.format-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.workshop-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.08);
}
.workshop-card-header {
  background: rgba(0, 212, 255, 0.06);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
}
.workshop-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
}
.workshop-outcome {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.workshop-outcome:last-child { border-bottom: none; }
.outcome-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.outcome-title { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.outcome-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .workshop-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .section { padding: 70px 0; }

  .spotlight {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .spotlight-visual { order: -1; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}
