:root {
  --accent: #F97316;
  --accent-fg: #0a0a0b;
  --accent-dim: rgba(249, 115, 22, 0.14);
  --accent-glow: rgba(249, 115, 22, 0.35);
  --accent-ring: rgba(249, 115, 22, 0.25);
  --accent-shadow: rgba(249, 115, 22, 0.55);
  --hot: #FAFAFA;
  --hot-dim: rgba(250, 250, 250, 0.12);
  --bg: #0a0a0b;
  --surface: rgba(168, 85, 247, 0.08);
  --border: rgba(168, 85, 247, 0.15);
  --fg: #FAFAFA;
  --muted: rgba(250, 250, 250, 0.75);
  --faint: rgba(250, 250, 250, 0.5);
  --max: 72rem;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 1rem;
  
  /* Enhanced Visual Variables */
  --glass: rgba(250, 250, 250, 0.03);
  --glass-border: rgba(250, 250, 250, 0.08);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-hard: 0 16px 64px rgba(0, 0, 0, 0.24);
  --gradient-primary: linear-gradient(135deg, #F97316 0%, #A855F7 100%);
  --gradient-surface: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  --blur-glass: blur(20px);
  --blur-heavy: blur(40px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.14) transparent;
}

html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html::-webkit-scrollbar-track {
  background: rgba(10, 10, 11, 0.25);
  border-radius: 4px;
}

html::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.22);
}

html::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
  background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.03) 0%, var(--bg) 50%);
  overflow-x: hidden;
  position: relative;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animated Background Shapes */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), rgba(168, 85, 247, 0.1));
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -100px;
  animation-delay: -5s;
}

.shape-3 {
  width: 400px;
  height: 400px;
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 30%;
  animation-delay: -15s;
}

.shape-5 {
  width: 250px;
  height: 250px;
  top: 80%;
  right: 10%;
  animation-delay: -8s;
}

.shape-6 {
  width: 180px;
  height: 180px;
  top: 5%;
  left: 60%;
  animation-delay: -12s;
}

/* Premium Background Grid */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -2;
  background-image: 
    linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(120deg); }
  66% { transform: translateY(20px) rotate(240deg); }
}

/* Animated Side Panels */
.side-panels {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}

.panel-left {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.panel-right {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.panel-box {
  width: 60px;
  height: 60px;
  margin: 20px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  animation: pulse 3s ease-in-out infinite;
}

.panel-box-1 { animation-delay: 0s; }
.panel-box-2 { animation-delay: 0.5s; }
.panel-box-3 { animation-delay: 1s; }
.panel-box-4 { animation-delay: 1.5s; }
.panel-box-5 { animation-delay: 2s; }
.panel-box-6 { animation-delay: 2.5s; }

@keyframes pulse {
  0%, 100% { 
    opacity: 0.3; 
    transform: scale(1);
    box-shadow: 0 0 0 0 var(--accent-glow);
  }
  50% { 
    opacity: 0.8; 
    transform: scale(1.1);
    box-shadow: 0 0 20px 5px var(--accent-glow);
  }
}

/* Scrolling Dot Indicator */
.scroll-dot {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: scrollPulse 2s ease-in-out infinite;
  transition: top 0.3s ease;
}

@keyframes scrollPulse {
  0%, 100% { 
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  50% { 
    opacity: 1;
    transform: translateX(-50%) scale(1.5);
  }
}

/* Shell and Layout */
.shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: var(--glass);
  backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.brand {
  text-decoration: none;
  color: var(--fg);
  font-weight: 800;
  font-size: 1.5rem;
}

.brand-text {
  background: linear-gradient(135deg, var(--accent), #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

/* Main Content */
.site-main {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(249, 115, 22, 0.3);
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0 0 2rem 0;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--accent-fg);
  box-shadow: var(--shadow-medium), 0 0 20px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-hard), 0 0 30px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--accent);
}

.btn-secondary {
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-mega {
  background: linear-gradient(135deg, var(--accent), #A855F7);
  color: var(--accent-fg);
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
}

.btn-mega:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(249, 115, 22, 0.6);
}

/* Bento Grid */
.bento-grid {
  padding: 6rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.bento-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  grid-auto-rows: 200px;
}

.bento-item {
  background: var(--gradient-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: var(--blur-glass);
}

.bento-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hard), 0 0 40px var(--accent-glow);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tall {
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

.bento-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--fg);
}

.bento-item p {
  color: var(--muted);
  margin: 0;
}

.bento-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.7;
}

.bento-stat {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  margin: auto;
}

/* Accordion */
.accordion-section {
  padding: 6rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 4rem 0;
  color: var(--fg);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--surface);
}

.accordion-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-trigger:hover {
  background: rgba(249, 115, 22, 0.1);
}

.accordion-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.accordion-arrow {
  transition: transform 0.3s ease;
  color: var(--accent);
}

.accordion-item.active .accordion-arrow {
  transform: rotate(90deg);
}

.accordion-content {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
  background: var(--surface);
}

.faq-container {
  max-width: var(--max);
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--accent);
}

.faq-item p {
  color: var(--muted);
  margin: 0;
}

/* Mega CTA */
.mega-cta {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}

.mega-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-surface);
  backdrop-filter: var(--blur-heavy);
  z-index: -1;
}

.mega-cta-content {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mega-cta-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(135deg, var(--accent), #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mega-cta-text {
  font-size: 1.5rem;
  color: var(--muted);
  margin: 0 0 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mega-cta-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mega-cta-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* Footer */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-content {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand p {
  color: var(--muted);
  margin: 0.5rem 0 0 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .bento-container {
    grid-template-columns: 1fr;
  }
  
  .bento-large,
  .bento-wide {
    grid-column: span 1;
  }
  
  .mega-cta-stats {
    gap: 2rem;
  }
  
  .panel-left,
  .panel-right {
    display: none;
  }
  
  .site-nav {
    display: none;
  }
}

/* JavaScript Interactions */
.accordion-item {
  cursor: pointer;
}

.accordion-item:hover .accordion-trigger {
  background: rgba(249, 115, 22, 0.1);
}