
:root {
  --bg-dark: #0d0d10;
  --bg-card: #151519;
  --text-primary: #f5f5f7;
  --text-secondary: #b0b0b8;
  --accent: #ff6b35;
  --accent-hover: #ff8c5a;
  --accent-soft: rgba(255, 107, 53, 0.2);
  --accent-glow: rgba(255, 107, 53, 0.5);
  --border: #2a2a33;
  --border-glow: rgba(255, 107, 53, 0.2);
  --success: #4caf50;
  --success-glow: rgba(76, 175, 80, 0.5);
  --code-bg: #16161c;
  --header-height: 64px;
  --shadow-normal: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
  --glow-accent: 0 0 20px rgba(255, 107, 53, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'JetBrains Mono', 'SF Mono', 'Roboto Mono', monospace;
  font-weight: 700;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-github {
  background-color: #24292e;
  color: white;
  border: 1px solid #24292e;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.btn-github:hover {
  background-color: #2c3136;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(36, 41, 46, 0.3);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(12, 12, 14, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  height: var(--header-height);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
}

.logo-icon {
  color: var(--accent);
  margin-right: 0.5rem;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin-right: 1rem;
}

.nav-links li {
  margin-left: 2rem;
  position: relative;
}

.nav-links a:not(.btn) {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.5rem 0;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a:not(.btn):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.2s ease;
  opacity: 0.7;
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.nav-links a:not(.btn):hover:after {
  width: 100%;
}

.nav-links a:not(.btn):hover {
  color: var(--text-primary);
}

.nav-links .btn {
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-left: 1rem;
  border: none;
}

.nav-links .btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff8c5a);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.nav-links .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

/* Mobile navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: rgba(12, 12, 14, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  padding: 1rem 0;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-nav a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text {
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #f0f0f0, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.5px;
  font-weight: 800;
  margin-top: 0;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  white-space: pre-line;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  background: rgba(30, 30, 30, 0.3);
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: inline-flex;
}

.hero-feature {
  margin: 0 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.2rem 0;
}

.hero-feature:not(:last-child):after {
  content: '•';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 107, 53, 0.5);
}

.provider-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  margin-top: 0.75rem;
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.provider-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: 'JetBrains Mono', 'SF Mono', 'Roboto Mono', monospace;
  transition: all 0.2s ease;
  cursor: default;
}

.provider-badge:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.provider-badge.openai {
  background-color: rgba(14, 165, 233, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.provider-badge.openai:nth-child(2) {
  background-color: rgba(2, 132, 199, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.provider-badge.openai:nth-child(3) {
  background-color: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.provider-badge.openai:nth-child(4) {
  background-color: rgba(14, 116, 144, 0.15);
  color: #67e8f9;
  border: 1px solid rgba(14, 116, 144, 0.3);
}

.provider-badge.openai:nth-child(5) {
  background-color: rgba(6, 182, 212, 0.15);
  color: #a5f3fc;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.provider-badge.openai:nth-child(6) {
  background-color: rgba(8, 145, 178, 0.15);
  color: #a5f3fc;
  border: 1px solid rgba(8, 145, 178, 0.3);
}

.provider-badge.openai:nth-child(7) {
  background-color: rgba(22, 78, 99, 0.15);
  color: #a5f3fc;
  border: 1px solid rgba(22, 78, 99, 0.3);
}

.provider-badge.openai:nth-child(8) {
  background-color: rgba(0, 134, 186, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(0, 134, 186, 0.3);
}

.provider-badge.openai:nth-child(9) {
  background-color: rgba(3, 105, 161, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(3, 105, 161, 0.3);
}

.provider-badge.openai:nth-child(10) {
  background-color: rgba(21, 128, 197, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(21, 128, 197, 0.3);
}

.provider-badge.gemini {
  background-color: rgba(156, 39, 176, 0.15);
  color: #e9d5ff;
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.provider-badge.gemini:nth-child(2) {
  background-color: rgba(124, 77, 255, 0.15);
  color: #d8b4fe;
  border: 1px solid rgba(124, 77, 255, 0.3);
}

.provider-badge.claude {
  background-color: rgba(249, 115, 22, 0.15);
  color: #fed7aa;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.provider-badge.ollama {
  background-color: rgba(24, 24, 27, 0.3);
  color: #f5f5f7;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff8c5a);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3), 0 0 0 1px rgba(255, 107, 53, 0.2);
}

.hero-buttons .btn-primary.windows-btn {
  background: linear-gradient(135deg, #0078d7, #00a2ed);
  box-shadow: 0 8px 20px rgba(0, 120, 215, 0.3), 0 0 0 1px rgba(0, 120, 215, 0.2);
}

.hero-buttons .btn-primary.windows-btn:hover {
  background-color: #00a2ed;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 120, 215, 0.4);
}

.hero-buttons .btn-secondary {
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-buttons .btn-secondary .fa-github {
  font-size: 1.2em;
  margin-right: 0.5rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.hero-buttons .btn-secondary:hover {
  background: #333;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 0;
  padding: 0 1rem;
}

.hero-img {
  max-width: 100%;
  position: relative;
  z-index: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.hero-img:hover {
  transform: translateY(-5px);
}

/* Social Proof */
.social-proof {
  padding: 1.5rem 0;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.02) 0%, rgba(255, 107, 53, 0.08) 50%, rgba(255, 107, 53, 0.02) 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.1);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  text-align: center;
  position: relative;
}

.social-proof:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.social-proof:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.social-proof-content {
  font-size: 1.1rem;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.social-proof-stars {
  color: var(--accent);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 4px;
  margin-right: 0.5rem;
}

/* Value Section */
.value {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-main-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  display: inline-block;
  color: var(--text-primary);
  max-width: 800px;
}

.section-main-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  position: relative;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0.3rem 1.8rem;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 107, 53, 0.08);
  letter-spacing: 0.5px;
  border-radius: 30px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section-title:hover {
  background: rgba(255, 107, 53, 0.12);
  border-color: rgba(255, 107, 53, 0.25);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
  transform: translateY(-2px);
}

.section-title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg,
  rgba(255, 255, 255, 0.03) 0%,
  rgba(255, 255, 255, 0.06) 50%,
  rgba(255, 255, 255, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section-title:hover:before {
  opacity: 1;
}

.section-title:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  letter-spacing: 0.3px;
  line-height: 1.7;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-subtitle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 3px;
  opacity: 0.5;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.value-card {
  background-color: rgba(30, 30, 30, 0.4);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.value-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.value-card:hover:before {
  opacity: 1;
}

.value-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.value-card-icon {
  font-size: 1.6rem;
  color: var(--accent);
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 53, 0.15);
  margin-right: 1rem;
}

.value-card:hover .value-card-icon {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.25);
}

.value-card-title {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  position: relative;
  color: var(--text-primary);
  font-weight: 600;
}

.value-card-header {
  padding-bottom: 0.8rem;
  position: relative;
}

.value-card-header:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 107, 53, 0.3);
  border-radius: 1px;
}

.value-card-text {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  margin-top: 0.8rem;
  flex-grow: 1;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.2) 0%, rgba(30, 30, 30, 0.6) 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.05);
  border-bottom: 1px solid rgba(255, 107, 53, 0.05);
  position: relative;
}

.features:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.features:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

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

.feature-card {
  background-color: rgba(30, 30, 30, 0.3);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 107, 53, 0.1);
}

.feature-card:hover:after {
  opacity: 0.7;
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  background: rgba(255, 107, 53, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  background: rgba(255, 107, 53, 0.15);
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.feature-text {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

/* Install Section */
.install {
  padding: 6rem 0;
}

.code-block {
  background-color: rgba(12, 12, 14, 0.8);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.code-block:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.code-block:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 107, 53, 0.1);
}

.code-block pre {
  font-family: 'JetBrains Mono', 'SF Mono', 'Roboto Mono', monospace;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.code-block code {
  display: block;
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 107, 53, 0.3);
}

.copy-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 6px;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.copy-btn:before {
  content: '\f0c5';
  font-family: 'FontAwesome';
  font-size: 0.9rem;
}

.copy-btn:hover {
  background: rgba(255, 107, 53, 0.2);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.copy-btn.copied {
  background: rgba(76, 175, 80, 0.2) !important;
  border-color: rgba(76, 175, 80, 0.3) !important;
  color: #4caf50 !important;
}

.copy-btn.copied:before {
  content: '\f00c';
}

.install-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 20px;
  display: inline-block;
  margin: 1rem auto;
  border: 1px solid rgba(255, 107, 53, 0.1);
  letter-spacing: 0.3px;
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background-color: rgba(30, 30, 30, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-plans {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.pricing-plan {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price.free {
  color: var(--text-secondary);
}

.plan-price-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features {
  padding: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing-feature-icon {
  color: var(--success);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.pricing-feature-icon.disabled {
  color: var(--text-secondary);
}

.pricing-feature-text {
  color: var(--text-secondary);
}

.pricing-cta {
  padding: 0 2rem 2rem;
  text-align: center;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
}

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

.testimonial {
  background-color: var(--bg-card);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--border);
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 1rem;
}

.testimonial-info h4 {
  font-size: 1rem;
}

.testimonial-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Roadmap */
.roadmap {
  padding: 4rem 0;
  background-color: rgba(30, 30, 30, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.roadmap-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--border);
  z-index: 1;
}

.roadmap-item {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
}

.roadmap-date {
  background-color: var(--accent);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1rem;
}

.roadmap-feature {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Footer */
footer {
  padding: 4rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-info {
  flex: 2;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: 400px;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-social a {
  color: var(--text-secondary);
  margin-left: 1.5rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

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

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--bg-card);
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  position: relative;
  padding: 2rem;
  border: 1px solid var(--border);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--text-primary);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Nav link styling with underline effect */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.2s ease;
  opacity: 0.7;
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.nav-link:hover::after {
  width: 100%;
}

/* Common utility classes */
.text-shadow-accent {
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.bg-gradient-btn {
  background: linear-gradient(135deg, var(--accent), #ff8c5a);
}

.shadow-accent-btn {
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.shadow-accent-btn-hover {
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.min-w-200 {
  min-width: 200px;
}

.min-w-300 {
  min-width: 300px;
}

.max-w-md {
  max-width: 400px;
}

/* Base styling for main content */
main {
  padding-top: 0;
}

/* Blog styles */
.blog-posts {
  margin-top: 2rem;
}

.blog-post {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post:last-child {
  border-bottom: none;
}

.blog-post h2 {
  margin-bottom: 0.5rem;
}

.blog-post-date {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  color: var(--accent);
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--accent-hover);
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-img {
    max-width: 100%;
  }

  .section-main-title {
    font-size: 1.6rem;
  }

  .section-main-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .roadmap-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .roadmap-timeline::before {
    top: 0;
    bottom: 0;
    left: 24px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .roadmap-item {
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
  }

  .roadmap-date {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .hero-visual {
    margin-top: 0;
  }

  .hero-content {
    padding-top: 0;
  }

  .value-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .pricing-plans {
    flex-direction: column;
    align-items: center;
  }

  .pricing-plan {
    width: 100%;
    max-width: 350px;
    margin-bottom: 2rem;
  }
}

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

  .mobile-menu-btn {
    display: block;
  }

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

  .hero-title {
    font-size: 1.8rem;
    margin-top: 10px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .value-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
  }

  .footer-social a:first-child {
    margin-left: 0;
  }

  .quick-install-label {
    font-size: 0.8rem;
  }

  .quick-install-bar {
    width: 100%;
  }

  .setup-instructions-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

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

  .section-main-title {
    font-size: 1.4rem;
  }

  .section-main-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
    padding: 0.3rem 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .provider-badge {
    font-size: 0.65rem;
    padding: 0.1rem 0.4rem;
  }

  .container {
    padding: 0 1rem;
  }

  .install-section-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .npm-badge-link, .mit-badge-link {
    width: 100%;
  }

  .value-card-header {
    flex-direction: column;
    text-align: center;
  }

  .value-card-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .value-card-title {
    text-align: center;
  }

  .feature-card {
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto 1.2rem;
  }
}

/* Mobile nav active state */
.mobile-nav.active {
  display: block;
}

.install-section-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto 0 auto;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.npm-badge-link, .mit-badge-link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  background: var(--code-bg, #16161c);
  border-radius: 11px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s ease;
  height: 44px;
}

.install-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  max-width: 100%;
  overflow-x: auto;
  padding: 0.5rem 1rem;
}

.npm-badge-link:hover, .mit-badge-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border-color: rgba(255,255,255,0.08);
}

.quick-install-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  background: var(--code-bg, #16161c);
  border-radius: 11px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.04);
  width: fit-content;
  gap: 0.4rem;
  font-family: 'JetBrains Mono','SF Mono','Roboto Mono',monospace;
  font-size: 0.9rem;
  height: 44px;
  flex-shrink: 1;
  min-width: 0;
}

.setup-instructions-btn {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.3rem;
  padding: 0.5rem 0.8rem;
  background-color: rgba(53, 151, 119, 0.15);
  border: 1px solid rgba(53, 151, 119, 0.3);
  border-radius: 8px;
  color: #c0e8dc;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  height: 44px;
}

.setup-instructions-btn:before {
  content: '\f0ad';
  font-family: 'FontAwesome';
  font-size: 0.9rem;
}

.setup-instructions-btn:hover {
  background-color: rgba(53, 151, 119, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #d4f0e8;  /* Lighter and brighter version of the tortoise green color */
}
.quick-install-label {
  color: #ffeede;
  letter-spacing: 0.03em;
  padding: 0 0.2em;
  user-select: all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.quick-install-copy {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-left: 0.2em;
  transition: all 0.2s ease;
  min-width: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-install-copy:before {
  content: '\f0c5';
  font-family: 'FontAwesome';
  font-size: 0.9rem;
  margin-right: 0.3rem;
}
.quick-install-copy:hover {
  background: rgba(255, 107, 53, 0.2);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.quick-install-copy.copied {
  background: rgba(76, 175, 80, 0.2) !important;
  border-color: rgba(76, 175, 80, 0.3) !important;
  color: #4caf50 !important;
}
.quick-install-copy.copied:before {
  content: '\f00c';
}

/* Sponsor links */
.sponsor-links {
  margin-top: 1rem;
}

.github-sponsor {
  display: inline-flex;
  align-items: center;
  background-color: #24292e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.github-sponsor i {
  color: #ea4aaa;
  margin-right: 0.5rem;
}

.github-sponsor:hover {
  background-color: #2c3136;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(36, 41, 46, 0.3);
}

/* Responsive styles for install section */
@media (max-width: 768px) {
  .install-section-wrapper {
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    padding-bottom: 1rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .quick-install-bar {
    padding: 0.4rem 0.6rem;
  }
  
  .quick-install-label {
    font-size: 0.8rem;
  }
}