:root {
  --background: #0a0f1a;
  --foreground: #f6f8fc;
  --border: rgba(255, 255, 255, 0.1);
  --input: rgba(255, 255, 255, 0.05);
  --primary: #ff7a00;
  --primary-foreground: #ffffff;
  --secondary: #162033;
  --secondary-foreground: #f6f8fc;
  --muted: #1e293b;
  --muted-foreground: #94a3b8;
  --success: #10b981;
  --success-foreground: #ffffff;
  --accent: #ff9f40;
  --accent-foreground: #ffffff;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --warning: #f59e0b;
  --warning-foreground: #ffffff;
  --card: rgba(22, 32, 51, 0.8);
  --card-foreground: #f6f8fc;
  --sidebar: #0f172a;
  --sidebar-foreground: #f6f8fc;
  --sidebar-primary: #ff7a00;
  --sidebar-primary-foreground: #ffffff;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-family-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-family-body);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c33 50%, #ffa366 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Background Accents */
.bg-glow-blob {
  position: absolute;
  width: 500px;
  max-width: 100%;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  display: none;
}

@media (min-width: 992px) {
  .bg-glow-blob {
    display: block;
  }
}

#app {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(255, 159, 64, 0.15),
      transparent 24%
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(255, 122, 0, 0.1),
      transparent 22%
    ),
    radial-gradient(
      circle at 50% 50%,
      #0a0f1e 0%,
      #080c14 100%
    );
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

.orb-a {
  width: 340px;
  height: 340px;
  top: 120px;
  left: -80px;
  background: rgba(255, 159, 64, 0.2);
}

.orb-b {
  width: 380px;
  height: 380px;
  top: 520px;
  right: -100px;
  background: rgba(22, 32, 51, 0.4);
}

.orb-c {
  width: 280px;
  height: 280px;
  bottom: 200px;
  left: 22%;
  background: rgba(255, 122, 0, 0.1);
}

.page-shell {
  position: relative;
  z-index: 1;
  overflow-x: hidden !important;
  width: 100% !important;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

.section {
  padding: 36px 0;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

.section-spacious {
  padding: 60px 0;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: wrap;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--muted-foreground);
  font-size: 13px;
  font-weight: 500;
}
.menu-open {
  overflow: hidden !important;
  touch-action: none;
  -ms-touch-action: none;
}

.glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 45px rgba(22, 32, 51, 0.1);
}
