:root {
  --bg-dark: #0a0a0a;
  --cyan: #00CED1;
  --amber: #FFB347;
  --green-led: #00FF00;
  --text-light: #ffffff;
  --text-gray: #b0b0b0;
  --text-muted: #888;
  --gradient-text: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

nav {
  padding: 1.5rem 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--text-gray);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sonic-weapons-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sonic-weapons-logo img {
  height: 32px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.sonic-weapons-logo:hover img {
  opacity: 1;
}

.led-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-led);
  box-shadow: 0 0 8px var(--green-led);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: flex-end;
}

.nav-links a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--cyan);
}

.hero {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(0, 206, 209, 0.15) 0%, transparent 60%);
  opacity: 0.3;
  pointer-events: none;
}

.hero::after {
  content: '';
  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: 40px 40px;
  opacity: 0.02;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(0, 206, 209, 0.1);
  border: 1px solid rgba(0, 206, 209, 0.2);
  margin-bottom: 2rem;
}

.badge svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}

.badge span {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Impact, sans-serif;
  font-weight: normal;
}

.hero .subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #888;
  margin-bottom: 2rem;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-family: Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #008B8D 100%);
  color: white;
  box-shadow: 
    0 4px 16px rgba(0, 206, 209, 0.4),
    0 8px 32px rgba(0, 206, 209, 0.2);
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.plugin-formats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.plugin-formats span {
  font-size: 12px;
  color: #666;
}

.format-badges {
  display: flex;
  gap: 1rem;
}

.format-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-family: monospace;
  font-size: 12px;
}

.plugin-mockup {
  position: relative;
  filter: drop-shadow(0 20px 60px rgba(0, 206, 209, 0.2));
}

.plugin-interface {
  width: 480px;
  height: 360px;
  background: linear-gradient(135deg, #323232 0%, #2a2a2a 50%, #252525 100%);
  border-radius: 2px;
  box-shadow: 
    0 1px 0 0 rgba(74, 74, 74, 0.3),
    0 -1px 0 0 rgba(10, 10, 10, 0.5),
    inset 0 1px 2px rgba(90, 90, 90, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.6),
    0 16px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.plugin-interface::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 1px,
    rgba(255, 255, 255, 0.03) 1px,
    rgba(255, 255, 255, 0.03) 2px
  );
  opacity: 0.08;
  pointer-events: none;
}

.plugin-header {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-gray);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8), 0 -1px 0 rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.search-display {
  margin-bottom: 1.25rem;
}

.search-label {
  font-family: Impact, sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #888;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
  margin-bottom: 0.25rem;
}

.lcd-input {
  height: 32px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 1px;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.8),
    inset 0 1px 2px rgba(0, 0, 0, 0.6),
    0 1px 0 rgba(60, 60, 60, 0.2);
  padding: 0 0.75rem;
  font-family: "Courier New", monospace;
  font-size: 13px;
  color: var(--amber);
  text-shadow: 0 0 4px rgba(255, 179, 71, 0.4);
  display: flex;
  align-items: center;
}

.vfd-display {
  height: 120px;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 1px;
  box-shadow: 
    inset 0 3px 6px rgba(0, 0, 0, 0.9),
    inset 0 1px 3px rgba(0, 0, 0, 0.8),
    0 1px 0 rgba(60, 60, 60, 0.2);
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.vfd-display::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
  pointer-events: none;
}

.vfd-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.chord-text {
  font-family: "Courier New", monospace;
  font-size: 28px;
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 206, 209, 0.6), 0 0 2px rgba(0, 206, 209, 0.8);
  letter-spacing: 0.05em;
  transition: opacity 0.8s ease-out;
  margin-bottom: 0.5rem;
  min-height: 28px;
}

.chord-text.fade-out,
.chord-meta.fade-out {
  opacity: 0;
}

.chord-meta {
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: var(--cyan);
  opacity: 0.6;
  text-shadow: 0 0 4px rgba(0, 206, 209, 0.4);
  transition: opacity 0.8s ease-out;
  min-height: 12px;
}

/* Social Proof Section */
.social-proof-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(ellipse at center, rgba(0, 206, 209, 0.03) 0%, transparent 70%);
}

/* Demo Video Section */
.demo-section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(0, 206, 209, 0.05) 0%, transparent 70%);
}

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

.video-frame {
  position: relative;
  background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 50%, #252525 100%);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.8),
    0 4px 16px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(80, 80, 80, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(60, 60, 60, 0.5);
}

.video-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  border-radius: 8px 8px 0 0;
  pointer-events: none;
}

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: #000;
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 206, 209, 0.15);
  position: relative;
  z-index: 1;
}

.social-proof-header {
  text-align: center;
  margin-bottom: 2rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.rating-text {
  font-family: Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--amber);
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 179, 71, 0.3);
}

.testimonials-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 120px;
  overflow: hidden;
}

.testimonial {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding: 0 2rem;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-quote {
  font-size: 20px;
  color: var(--cyan);
  font-family: "Courier New", monospace;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-shadow: 0 0 6px rgba(0, 206, 209, 0.3);
}

.testimonial-author {
  font-size: 14px;
  color: var(--text-muted);
  font-family: Impact, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.features-section {
  padding: 8rem 0;
  position: relative;
}

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

.section-header h2 {
  font-size: 42px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Impact, sans-serif;
  font-weight: normal;
  margin-bottom: 1rem;
}

.section-header p {
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-card.amber {
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(255, 179, 71, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 179, 71, 0.1);
}

.feature-card.cyan {
  background: linear-gradient(135deg, rgba(0, 206, 209, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(0, 206, 209, 0.1);
  box-shadow: inset 0 1px 0 rgba(0, 206, 209, 0.1);
}

.feature-card.metal {
  background: linear-gradient(135deg, rgba(176, 176, 176, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon.amber {
  background: rgba(255, 179, 71, 0.1);
  border: 1px solid rgba(255, 179, 71, 0.2);
}

.feature-icon.cyan {
  background: rgba(0, 206, 209, 0.1);
  border: 1px solid rgba(0, 206, 209, 0.2);
}

.feature-icon.metal {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

.how-it-works {
  padding: 8rem 0;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 1px,
    rgba(255, 255, 255, 0.03) 1px,
    rgba(255, 255, 255, 0.03) 2px
  );
  opacity: 0.02;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.step {
  position: relative;
}

.step-number {
  font-family: Impact, sans-serif;
  font-size: 64px;
  letter-spacing: 0.05em;
  opacity: 0.3;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px currentColor;
}

.step:nth-child(1) .step-number {
  color: var(--amber);
}

.step:nth-child(2) .step-number {
  color: var(--cyan);
}

.step:nth-child(3) .step-number {
  color: var(--green-led);
}

.step h3 {
  font-size: 22px;
  font-family: system-ui, sans-serif;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step p {
  color: #888;
  line-height: 1.6;
}

.pricing-section {
  padding: 8rem 0;
  text-align: center;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 179, 71, 0.1);
  border: 1px solid rgba(255, 179, 71, 0.2);
  margin-bottom: 2rem;
}

.pricing-badge span {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--amber);
}

.pricing-section h2 {
  font-size: 48px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Impact, sans-serif;
  font-weight: normal;
  margin-bottom: 1rem;
}

.pricing-section > p {
  color: #888;
  font-size: 18px;
  margin-bottom: 3rem;
}

.pricing-card {
  display: inline-block;
  padding: 3rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 206, 209, 0.1) 0%, rgba(255, 179, 71, 0.05) 100%);
  border: 1px solid rgba(0, 206, 209, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 206, 209, 0.2),
    inset 0 1px 0 rgba(0, 206, 209, 0.2);
  position: relative;
  overflow: hidden;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.old-price {
  font-size: 24px;
  color: #666;
  text-decoration: line-through;
}

.price {
  font-family: Impact, sans-serif;
  font-size: 72px;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 206, 209, 0.6);
  letter-spacing: -0.02em;
}

.price-note {
  color: #888;
  font-size: 14px;
  margin-bottom: 2rem;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1.25rem 3rem;
  font-size: 18px;
  margin-bottom: 1.5rem;
  box-shadow: 
    0 4px 24px rgba(0, 206, 209, 0.5),
    0 8px 48px rgba(0, 206, 209, 0.3);
}

.guarantee {
  font-size: 12px;
  color: #666;
}

footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

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

.footer-section h4 {
  color: var(--cyan);
  margin-bottom: 1rem;
  font-family: Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
}

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

.footer-section a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  display: block;
  padding: 0.25rem 0;
}

.footer-section a:hover {
  color: var(--cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #666;
  font-size: 14px;
}

.support-page {
  padding: 4rem 0;
}

.support-page h1 {
  font-size: 48px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Impact, sans-serif;
  font-weight: normal;
  margin-bottom: 3rem;
  text-align: center;
}

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

.support-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
}

.support-card h2 {
  color: var(--cyan);
  font-family: Impact, sans-serif;
  font-size: 20px;
  margin-bottom: 1rem;
}

.support-card p, .support-card ul {
  color: #888;
  line-height: 1.8;
}

.support-card ul {
  list-style: none;
  padding-left: 1rem;
}

.support-card li::before {
  content: '•';
  color: var(--cyan);
  font-weight: bold;
  margin-right: 0.5rem;
}

.resend-form {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid rgba(0, 206, 209, 0.3);
  border-radius: 8px;
  padding: 2rem;
  max-width: 600px;
  margin: 3rem auto;
}

.resend-form h2 {
  color: var(--cyan);
  font-family: Impact, sans-serif;
  font-size: 24px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #888;
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: white;
  font-size: 16px;
}

.form-group input:focus {
  outline: none;
  border-color: var(--cyan);
}

.success-message {
  text-align: center;
  padding: 4rem 2rem;
}

.success-message h1 {
  font-size: 48px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Impact, sans-serif;
  font-weight: normal;
  margin-bottom: 1rem;
}

.success-message p {
  color: #888;
  font-size: 18px;
  margin-bottom: 2rem;
}

.success-steps {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid rgba(0, 206, 209, 0.3);
  border-radius: 8px;
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
}

.success-steps h2 {
  color: var(--cyan);
  font-family: Impact, sans-serif;
  font-size: 20px;
  margin-bottom: 1.5rem;
}

.success-steps ol {
  color: #888;
  line-height: 2;
  padding-left: 2rem;
}

/* Legal Pages */
.legal-page {
  padding: 4rem 0 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 42px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Impact, sans-serif;
  font-weight: normal;
  margin-bottom: 0.5rem;
  text-align: center;
}

.legal-page .last-updated {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 3rem;
}

.legal-page section {
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-family: Impact, sans-serif;
  font-size: 24px;
  color: var(--cyan);
  margin-bottom: 1rem;
  font-weight: normal;
  letter-spacing: 0.05em;
}

.legal-page p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-page li {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-page a {
  color: var(--cyan);
  text-decoration: none;
  transition: opacity 0.3s;
}

.legal-page a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav-container {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .sonic-weapons-logo {
    display: none;
  }

  .logo {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .nav-links {
    gap: 1rem;
    font-size: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .plugin-interface {
    width: 100%;
    max-width: 480px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 36px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .video-container {
    padding: 0 1rem;
  }

  .video-frame {
    padding: 1rem;
  }

  .demo-section {
    padding: 4rem 0;
  }

  .legal-page {
    padding: 2rem 0 4rem;
  }

  .legal-page h1 {
    font-size: 32px;
  }
}
