/* HERO - ASYMMETRIC GRID LAYOUT */
.hero-asymmetric {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  padding-right: var(--s-8);
}

.h1-large {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--s-6);
  text-align: left;
}

.lead-xl {
  font-size: var(--h4);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--s-8);
  max-width: 600px;
}

.hero-cta-stack {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
}

/* Floating 3D Screenshot */
.hero-visual {
  position: relative;
  min-width: 600px;
}

.floating-screenshot {
  position: relative;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4)) 
          drop-shadow(0 0 80px rgba(99, 102, 241, 0.3));
}

.floating-screenshot:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-6px);
}

.floating-screenshot img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid rgba(99, 102, 241, 0.2);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* New Button Styles */
.btn.primary-white {
  background: white;
  color: var(--bg);
  border: none;
  font-weight: 600;
}

.btn.primary-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.btn.glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.reveal-delayed {
  animation-delay: 0.2s;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  
  .hero-visual {
    min-width: auto;
  }
  
  .hero-text {
    padding-right: 0;
    text-align: center;
  }
  
  .h1-large {
    text-align: center;
  }
  
  .lead-xl {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-stack {
    justify-content: center;
  }
  
  .floating-screenshot {
    transform: none;
  }
}

/* FROM INTENT TO ACTION - 3-STEP FLOW */
.intent-to-action {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.flow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--s-10) 0;
  position: relative;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  z-index: 2;
}

.flow-label {
  font-size: var(--small);
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flow-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  min-width: 280px;
  transition: all 0.3s ease;
}

.flow-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

/* Code Block Style */
.code-block {
  background: #1a1a1a;
  border: 1px solid #333;
}

.code-header {
  font-size: var(--tiny);
  color: var(--muted);
  margin-bottom: var(--s-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.code-block pre {
  margin: 0;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: var(--small);
  color: #60a5fa;
}

.code-block code {
  color: inherit;
}

/* Engine Core */
.engine-core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1), transparent 70%);
}

.core-icon {
  width: 64px;
  height: 64px;
  color: rgba(99, 102, 241, 0.8);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.core-label {
  font-size: var(--h4);
  font-weight: 700;
  color: var(--text);
  margin-top: var(--s-3);
}

.pulse-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(99, 102, 241, 0.5);
  border-radius: 50%;
  animation: pulse-ring 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Output Card */
.output-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.output-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3);
  background: var(--surface);
  border-radius: var(--r-md);
}

.service-badge {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: var(--tiny);
  font-weight: 600;
  text-transform: uppercase;
}

.service-badge.stripe {
  background: rgba(99, 91, 255, 0.15);
  color: #635bff;
  border: 1px solid rgba(99, 91, 255, 0.3);
}

.service-badge.gmail {
  background: rgba(234, 67, 53, 0.15);
  color: #ea4335;
  border: 1px solid rgba(234, 67, 53, 0.3);
}

.output-text {
  color: var(--text-secondary);
  font-size: var(--body);
}

/* Flow Connectors */
.flow-connector {
  position: relative;
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, rgba(99, 102, 241, 0.3), rgba(99, 102, 241, 0.3));
  margin: 0 var(--s-4);
}

.wire-pulse {
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 6px;
  background: linear-gradient(to right, transparent, rgba(99, 102, 241, 0.8), transparent);
  filter: blur(2px);
  animation: wire-travel 2s ease-in-out infinite;
}

@keyframes wire-travel {
  0% {
    left: -20px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .flow-container {
    flex-direction: column;
    gap: var(--s-8);
  }
  
  .flow-connector {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.3), rgba(99, 102, 241, 0.3));
    margin: 0;
  }
  
  .wire-pulse {
    width: 6px;
    height: 20px;
    left: -2px;
    animation: wire-travel-vertical 2s ease-in-out infinite;
  }
  
  @keyframes wire-travel-vertical {
    0% {
      top: -20px;
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      top: 100%;
      opacity: 0;
    }
  }
}

/* PIPELINE SECTION */
.pipeline-section {
  background: var(--bg);
}

.pipeline-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  padding: var(--s-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-5);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-width: 120px;
  transition: all var(--transition-base);
}

.pipeline-step:hover {
  border-color: var(--border-hover);
  background: var(--surface);
}

.step-number {
  font-size: var(--tiny);
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.step-content h4 {
  font-size: var(--small);
  margin: 0 0 var(--s-1);
  text-align: center;
  font-weight: 600;
}

.step-content p {
  font-size: var(--tiny);
  color: var(--muted);
  margin: 0;
  text-align: center;
}

.pipeline-arrow {
  width: 30px;
  height: 1px;
  background: var(--border);
  position: relative;
}

.pipeline-arrow::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid var(--border);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

@media (max-width: 1024px) {
  .pipeline-arrow {
    display: none;
  }
  
  .pipeline-flow {
    gap: var(--s-3);
  }
}

/* DEMO SECTION */
.demo-section {
  background: var(--bg);
}

.demo-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-8);
}

@media (max-width: 1024px) {
  .demo-container {
    grid-template-columns: 1fr;
  }
}

.demo-interface {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-4) var(--s-5);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  gap: var(--s-5);
  flex-wrap: wrap;
}

.demo-tabs {
  display: flex;
  gap: var(--s-1);
}

.demo-tab {
  padding: var(--s-2) var(--s-4);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  color: var(--muted);
  font-size: var(--small);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.demo-tab:hover {
  color: var(--text);
}

.demo-tab.active {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.demo-actions {
  display: flex;
  gap: var(--s-2);
}

.demo-btn {
  padding: var(--s-2) var(--s-4);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: var(--small);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.demo-btn:hover {
  border-color: var(--text);
}

#runDemo {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

#runDemo:hover {
  background: var(--text-secondary);
  border-color: var(--text-secondary);
}

.demo-content {
  position: relative;
  min-height: 400px;
}

.demo-pane {
  display: none;
  padding: var(--s-5);
  animation: fadeIn 0.2s ease;
}

.demo-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#promptInput {
  width: 100%;
  min-height: 360px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  font-size: var(--small);
  padding: var(--s-5);
  resize: vertical;
  line-height: 1.6;
}

#promptInput::placeholder {
  color: var(--subtle);
}

#promptInput:focus {
  outline: none;
  border-color: var(--text);
}

.demo-pane pre {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: var(--s-5);
  overflow-x: auto;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.demo-pane pre::-webkit-scrollbar {
  display: none;
}

.demo-pane::-webkit-scrollbar {
  display: none;
}

.demo-pane code {
  font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
  font-size: var(--tiny);
  line-height: 1.6;
  color: var(--text-secondary);
}

.demo-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-4) var(--s-5);
  background: var(--bg);
  border-top: 1px solid var(--border);
  gap: var(--s-5);
  flex-wrap: wrap;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-secondary);
}

.status-dot.running {
  animation: pulse 1.5s infinite;
}

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

.status-text {
  font-size: var(--small);
  font-weight: 500;
  color: var(--text-secondary);
}

.demo-metrics {
  display: flex;
  gap: var(--s-6);
  font-size: var(--small);
}

.metric {
  color: var(--muted);
}

.metric strong {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Demo Examples */
.demo-examples {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.demo-examples h4 {
  font-size: var(--small);
  color: var(--muted);
  margin-bottom: var(--s-2);
  font-weight: 500;
}

.example-btn {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: left;
  width: 100%;
}

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

.example-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.example-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--text-secondary);
}

.example-text {
  font-size: var(--small);
  font-weight: 500;
  color: var(--text);
}

/* PRICING SECTION */
.pricing-section {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7);
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(99, 102, 241, 0.05);
  box-shadow: 0 0 40px -10px rgba(99, 102, 241, 0.5),
              0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: 0 0 60px -10px rgba(99, 102, 241, 0.6),
              0 25px 50px -15px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--bg);
  padding: var(--s-1) var(--s-4);
  border-radius: 999px;
  font-size: var(--tiny);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-tier {
  font-size: var(--h4);
  font-weight: 600;
  margin-bottom: var(--s-5);
  color: var(--text);
}

.pricing-price {
  margin-bottom: var(--s-5);
}

.price-amount {
  font-size: var(--h1);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-period {
  font-size: var(--small);
  color: var(--muted);
  font-weight: 400;
}

.pricing-desc {
  color: var(--muted);
  margin-bottom: var(--s-7);
  min-height: 48px;
  font-size: var(--small);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-8);
  flex-grow: 1;
}

.pricing-features li {
  padding: var(--s-3) 0;
  color: var(--text-secondary);
  font-size: var(--small);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* WAITLIST SECTION */
.waitlist-section {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.input {
  height: 48px;
  padding: 0 var(--s-5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  font-size: var(--body);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  transition: all var(--transition-fast);
  font-weight: 400;
}

.input:focus {
  outline: none;
  border-color: var(--text);
  background: var(--surface-hover);
}

/* Form validation states */
.input:valid:not(:placeholder-shown) {
  border-color: var(--success);
}

.input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: var(--error);
}

.input::placeholder {
  color: var(--subtle);
}

.textarea {
  height: auto;
  padding: var(--s-4) var(--s-5);
  resize: vertical;
  line-height: 1.6;
}

select.input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s-5) center;
  padding-right: var(--s-10);
}

.form-message {
  padding: var(--s-4);
  border-radius: var(--r-sm);
  font-size: var(--small);
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--error);
  color: var(--error);
}

/* PHILOSOPHY SECTION */
.philosophy-section {
  background: var(--bg);
}

.philosophy-section .h2 {
  text-align: center;
}

.philosophy-text {
  font-size: var(--lead);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--s-10);
  line-height: 1.7;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
}

@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

.philosophy-item {
  text-align: center;
}

.philosophy-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--s-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
}

.philosophy-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--text);
}

.philosophy-item h4 {
  font-size: var(--h4);
  margin-bottom: var(--s-3);
  color: var(--text);
}

.philosophy-item p {
  color: var(--muted);
  font-size: var(--small);
  margin: 0;
}

/* TRUST SECTION */
.trust-section {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-12);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .trust-stats {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
}

.trust-stat {
  padding: var(--s-6);
}

.trust-number {
  font-size: var(--h1);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s-3);
  line-height: 1;
  letter-spacing: -0.04em;
}

.trust-label {
  color: var(--muted);
  font-size: var(--small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* FOOTER */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  padding: var(--s-16) 0 var(--s-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--s-12);
  margin-bottom: var(--s-10);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.footer-desc {
  color: var(--muted);
  font-size: var(--small);
  margin: 0;
}

.social-links {
  display: flex;
  gap: var(--s-3);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--surface-hover);
  border-color: var(--text);
  color: var(--text);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
}

@media (max-width: 640px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer-col a {
  color: var(--muted);
  font-size: var(--small);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-8);
  border-top: 1px solid var(--border-subtle);
  color: var(--muted);
  font-size: var(--small);
  flex-wrap: wrap;
  gap: var(--s-5);
}

.footer-badge {
  padding: var(--s-2) var(--s-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: var(--tiny);
  font-weight: 500;
  color: var(--text-secondary);
}

/* ACTIVITY TICKER */
.activity-ticker {
  overflow: hidden;
  padding: var(--s-8) 0;
  position: relative;
  background: linear-gradient(90deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--r-lg);
  box-shadow: inset 0 1px 0 rgba(99, 102, 241, 0.1);
}

.ticker-track {
  display: flex;
  gap: var(--s-4);
  animation: scroll-ticker 30s linear infinite;
  will-change: transform;
}

.ticker-item {
  flex-shrink: 0;
  padding: var(--s-3) var(--s-5);
  background: rgba(0, 255, 157, 0.05);
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: var(--r-sm);
  font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
  font-size: var(--small);
  color: #00ff9d;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
  transition: all 0.3s ease;
}

.ticker-item:hover {
  background: rgba(0, 255, 157, 0.1);
  border-color: rgba(0, 255, 157, 0.4);
  transform: scale(1.02);
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}
