/* Modern Home Page Styles */

:root {
  --primary-gradient: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  --transition-standard: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-visual {
  flex: 1;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 540px;
}

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

.hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(0, 200, 83, 0.1);
  border-radius: 1rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(0, 200, 83, 0.2);
  box-shadow: 0 2px 8px rgba(0, 200, 83, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.15);
}

.hero-badge span:first-child {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.hero-badge-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--neutral-600);
}

.hero-image-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
  padding: 2rem;
  border: 2px solid rgba(0, 200, 83, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(0, 200, 83, 0.1) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 200, 83, 0.2);
  border-color: rgba(0, 200, 83, 0.4);
}

.hero-image:hover::before {
  opacity: 1;
}

.notification-card {
  position: absolute;
  bottom: 30px;
  right: 20px;
  background: var(--secondary-light);
  border: 1px solid rgba(0, 200, 83, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 300px;
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.notification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 200, 83, 0.2);
  border-color: rgba(0, 200, 83, 0.4);
}

.notification-icon {
  background: rgba(0, 200, 83, 0.2);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.notification-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.notification-message {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

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

/* Live Updates Section */
.live-updates-section {
  padding: 4rem 0;
  background-color: var(--secondary-dark);
}

.updates-ticker {
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.ticker-wrapper {
  display: flex;
  gap: 2rem;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--secondary-light);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-icon.up {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.ticker-icon.down {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.ticker-icon.announcement {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ticker-symbol {
  font-weight: 600;
  color: var(--text-light);
}

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

.ticker-change {
  font-weight: 500;
}

.ticker-change.positive {
  color: #10b981;
}

.ticker-change.negative {
  color: #ef4444;
}

.ticker-announcement {
  font-weight: 500;
  color: #f59e0b;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

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

.step-card {
  background: var(--secondary-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-standard);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.step-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.step-description {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

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

.feature-card {
  background: var(--secondary-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-standard);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 3em;
}

.feature-example {
  margin-top: auto;
  padding: 0;
  background: none;
  border: none;
  height: 250px;
  display: flex;
}

/* New alert box styles */
.alert-box {
  background: rgba(0, 200, 83, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: 250px;
  overflow: hidden;
}

.alert-title {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9375rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 1rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alert-content {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  overflow: auto;
  max-height: 160px;
}

.alert-data {
  font-family: monospace;
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 100%;
  word-wrap: break-word;
  white-space: normal;
  padding: 0.25rem 0;
}

.results-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: monospace;
  background: var(--secondary-light);
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric .label {
  color: var(--text-muted);
  font-weight: 500;
  min-width: 5rem;
}

.metric .value {
  font-weight: 600;
  color: var(--text-light);
}

.metric .change {
  font-weight: 500;
  margin-left: auto;
}

.change.positive {
  color: #10b981;
}

.change.negative {
  color: #ef4444;
}

.alert-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-muted);
}

.alert-type svg {
  color: #f59e0b;
}

.alert-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stock-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: monospace;
}

.stock-info .symbol {
  font-weight: 600;
  color: var(--text-light);
}

.stock-info .price {
  color: var(--text-muted);
}

.stock-info .change {
  margin-left: auto;
  font-weight: 500;
}

.alert-trigger {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Recent Alerts Section */
.recent-alerts-section {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

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

.alert-card {
  background: var(--secondary-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-standard);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.alert-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-company {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.company-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-info {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-weight: 600;
  color: var(--text-light);
}

.company-symbol {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.alert-time {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.alert-body {
  padding: 1.5rem;
}

.alert-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.alert-description {
  color: var(--text-muted);
  line-height: 1.6;
}

.alert-footer {
  padding: 1.5rem;
  background-color: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-insight {
  display: flex;
  gap: 0.75rem;
}

.insight-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

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

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

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

.testimonial-card {
  background: var(--secondary-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-standard);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-content p::before {
  content: '"';
  font-size: 1.5rem;
  color: var(--primary);
}

.testimonial-content p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--primary);
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--text-light);
}

.author-title {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Get Started Section */
.get-started-section {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.get-started-card {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  border: 2px solid rgba(0, 200, 83, 0.3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all 0.3s ease;
}

.get-started-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(0, 200, 83, 0.1) 50%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.get-started-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 200, 83, 0.2);
  border-color: rgba(0, 200, 83, 0.5);
}

.get-started-content {
  padding: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.get-started-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.get-started-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.login-form {
  max-width: 400px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-input-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: all 0.2s ease;
  height: 3.5rem;
  width: 100%;
}

.phone-input-wrapper:focus-within {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.phone-input-wrapper:hover {
  border-color: #d1d5db;
}

.phone-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  z-index: 2;
  width: 20px;
  height: 20px;
}

.phone-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem 0 3rem;
  color: #374151;
  font-weight: 600;
  font-size: 1rem;
  border-right: 1px solid #e5e7eb;
  height: 100%;
  background-color: #f9fafb;
  font-family: inherit;
  min-width: 60px;
  flex-shrink: 0;
}

.form-control {
  border: none;
  padding: 0 1rem;
  font-size: 1rem;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: transparent !important;
  color: #111827 !important;
  font-family: inherit;
  font-weight: 500;
  flex: 1;
  outline: none;
}

.form-control::placeholder {
  color: #9ca3af !important;
  font-weight: 400;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  background: transparent !important;
  color: #111827 !important;
}

/* Fix browser autofill styling */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: #111827 !important;
  background-color: white !important;
  background: white !important;
  border-radius: 0 !important;
}

.phone-input-wrapper.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.phone-input-wrapper.error .phone-icon {
  color: #ef4444;
}

.phone-input-wrapper.error .phone-prefix {
  background-color: #fef2f2;
  border-right-color: #fecaca;
  color: #dc2626;
}

.btn-get-otp {
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 1rem;
  padding: 1rem 2rem;
  cursor: pointer;
  height: 3.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 200px;
}

.btn-get-otp:hover:not(:disabled) {
  background: var(--primary-dark);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transform: translateY(-1px);
}

.btn-get-otp:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.btn-get-otp:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.security-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  color: var(--neutral-600, #9ca3af);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: left;
  max-width: 400px;
  margin: 1rem auto 0;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-icon {
  color: var(--neutral-600, #9ca3af);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
  
  .get-started-title {
    font-size: 2rem;
  }
  
  .get-started-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 0 3rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .get-started-content {
    padding: 2rem;
  }
  
  .get-started-title {
    font-size: 1.75rem;
  }
  
  .get-started-subtitle {
    font-size: 1rem;
  }
  
  .login-form {
    max-width: 100%;
  }
  
  .phone-input-wrapper {
    height: 3rem;
  }
  
  .phone-icon {
    left: 0.75rem;
    width: 18px;
    height: 18px;
  }
  
  .phone-prefix {
    padding: 0 0.5rem 0 2.5rem;
    font-size: 0.875rem;
    min-width: 50px;
  }
  
  .form-control {
    font-size: 0.875rem;
    padding: 0 0.75rem;
  }
  
  .btn-get-otp {
    height: 3rem;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
  
  .security-note {
    max-width: 100%;
    margin: 1rem 0 0;
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
  .feature-example {
    height: 220px;
  }
  
  .metric {
    padding: 0.625rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .metric .label {
    min-width: 4.5rem;
  }
  
  .stock-info {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .stock-info .change {
    margin-left: 0;
  }
  
  .feature-card {
    min-height: 450px;
  }
  
  .alert-box {
    padding: 1rem;
    max-height: 220px;
  }
  
  .alert-title {
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
  }
  
  .alert-content {
    padding: 0.75rem;
    gap: 0.5rem;
    max-height: 140px;
  }
  
  .alert-data {
    font-size: 0.8125rem;
    padding: 0.125rem 0;
    font-size: 0.875rem;
  }
}

/* Placeholder for stock chart image */
@media (max-width: 768px) {
  .hero-image-container {
    height: 300px;
  }
}



/* Placeholder for avatar images */
img[src^="img/avatar-"] {
  background-color: var(--neutral-200);
  border-radius: 50%;
}

.results-table,
.order-details,
.insight {
  background: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  border-radius: 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.table-header {
  color: var(--neutral-700);
  font-weight: 600;
}

.table-row {
  color: var(--neutral-800);
  white-space: pre;
}

.growth-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: monospace;
  margin-top: 0.5rem;
  color: var(--neutral-700);
}

.metric-row {
  font-family: monospace;
  font-size: 0.9375rem;
  color: var(--neutral-800);
  line-height: 1.6;
}

.detail {
  color: var(--neutral-800);
  line-height: 1.5;
  font-size: 0.9375rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  margin-bottom: 0.5rem;
}

.insight {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 1.25rem;
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-badge {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    align-items: center;
  }

  .hero-badge span:first-child {
    font-size: 0.9375rem;
  }
}