:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --accent: #14b8a6;
  --bg: #0a0a0a;
  --bg-alt: #141414;
  --bg-elevated: #1a1a1a;
  --surface: #1f1f1f;
  --text: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border: #27272a;
  --border-light: #3f3f46;
  --success: #10b981;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
  --glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
}

.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: var(--text);
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-btn {
  padding: 0.625rem 1.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.nav-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

/* Hero Section */
.hero,
.hero-section {
  padding: 10rem 2rem 6rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(99, 102, 241, 0.15) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-banner {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  text-align: center;
}

.banner-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  text-align: left;
}

.hero-heading {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.hero-actions .purchase-btn {
  flex: 0 0 auto;
  min-width: 385px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid transparent;
  background-image: linear-gradient(var(--surface), var(--surface)),
    linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(20, 184, 166, 0.3));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Hero Visual - Command Demo */
.hero-visual {
  position: relative;
}

.command-demo {
  position: relative;
  z-index: 1;
}

.command-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.window-header {
  background: var(--bg-elevated);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.window-dots {
  display: flex;
  gap: 0.375rem;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
}

.window-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.window-content {
  padding: 1.5rem;
}

.message {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.bot-avatar {
  background: transparent;
  object-fit: cover;
}

.message-content {
  flex: 1;
}

.message-author {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.bot-name {
  color: var(--accent);
}

.bot-tag {
  display: inline-block;
  padding: 0.125rem 0.375rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 0.25rem;
  margin-left: 0.25rem;
}

.message-text {
  color: var(--text-secondary);
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.875rem;
}

.embed {
  background: var(--bg-elevated);
  border-left: 3px solid var(--success);
  padding: 1rem;
  border-radius: 0.375rem;
  margin-top: 0.5rem;
}

.embed-header {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.embed-body {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.primary-btn {
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--glow);
}

.primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.secondary-btn {
  padding: 1rem 2rem;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-light);
}

.secondary-btn:hover {
  background: var(--bg-elevated);
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

/* Features Section */
.features,
.features-section {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.feature-box {
  background: var(--surface);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.feature-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--text-secondary);
  line-height: 1.7;
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--glow);
}

.feature-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Commands Section */
.commands-section {
  padding: 6rem 2rem;
  background: var(--bg);
}

.commands-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.commands-info {
  position: relative;
}

.section-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.command-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.command-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.command-item code {
  background: var(--surface);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.875rem;
  color: var(--primary);
  border: 1px solid var(--border);
  min-width: 140px;
}

.command-item span {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.commands-visual {
  position: relative;
}

.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.terminal-header {
  background: var(--bg-elevated);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.terminal-body {
  padding: 1.5rem;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.875rem;
}

.terminal-line {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.prompt {
  color: var(--accent);
  font-weight: 700;
}

.command {
  color: var(--primary);
  font-weight: 600;
}

.comment {
  color: var(--text-muted);
}

/* Framework Section */
.framework-section {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.framework-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.framework-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.2);
}

.framework-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.framework-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.framework-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.framework-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.framework-features li {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  font-size: 0.9375rem;
}

.framework-card.vorp .framework-badge {
  background: var(--success);
}

.framework-card.rsg .framework-badge {
  background: var(--accent);
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.cta-content {
  text-align: center;
  background: var(--surface);
  padding: 4rem 3rem;
  border-radius: 1.5rem;
  border: 1px solid transparent;
  background-image: linear-gradient(var(--surface), var(--surface)),
    linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(20, 184, 166, 0.4));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
}

.cta-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.2s;
  box-shadow: var(--glow);
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

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

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-column h4 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Docs & Support Pages */
.docs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
}

.docs-hero {
  padding: 8rem 2rem 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.docs-hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  text-align: center;
}

.docs-hero-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
}

.docs-content {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.docs-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 4rem;
  align-items: start;
}

.docs-sidebar {
  position: sticky;
  top: 6rem;
}

.docs-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.docs-nav-item {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  font-size: 0.9375rem;
}

.docs-nav-item:hover {
  background: var(--bg-elevated);
  color: var(--text);
}

.docs-main {
  background: var(--surface);
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.docs-section {
  margin-bottom: 3rem;
}

.docs-section:last-child {
  margin-bottom: 0;
}

.docs-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.docs-section h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.docs-section h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.docs-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.docs-section ul,
.docs-section ol {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.docs-section li {
  margin-bottom: 0.5rem;
}

.docs-section pre {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.docs-section pre code {
  background: transparent;
  border: none;
  padding: 0;
  display: block;
  color: var(--text-secondary);
  line-height: 1.6;
}

.command-doc {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.command-doc h4 {
  margin-top: 0;
}

.param-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.param {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.param code {
  background: var(--bg);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.875rem;
  color: var(--primary);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.param span {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Support Page */
.support-content-section {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.support-quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.quick-link-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.quick-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.quick-link-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.2s;
}

.link-btn:hover {
  color: var(--primary-light);
}

.faq-section {
  background: var(--surface);
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  margin-bottom: 4rem;
}

.faq-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: 1.0625rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer code {
  background: var(--bg);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.875rem;
  color: var(--primary);
  border: 1px solid var(--border);
}

.faq-answer a {
  color: var(--primary);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.help-cta {
  text-align: center;
  background: var(--surface);
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.help-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.help-cta p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.help-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Generic code styling */
code {
  background: var(--bg);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.875rem;
  color: var(--primary);
  border: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }

  .commands-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .framework-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    padding: 3rem 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid,
  .docs-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-buttons {
    flex-direction: column;
  }

  /* Docs responsive */
  .docs-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .docs-sidebar {
    position: static;
  }

  .docs-main {
    padding: 2rem 1.5rem;
  }

  .docs-hero-title {
    font-size: 2.5rem;
  }

  /* Support responsive */
  .support-quick-links {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 2rem 1.5rem;
  }

  .help-cta {
    padding: 2rem 1.5rem;
  }

  .help-cta-buttons {
    flex-direction: column;
  }
}
