@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');


/* Fix horizontal scroll */
html, body {
  overflow-x: hidden;
  width: 100%;
}

:root {
  --bg-color: #FAFCFE;
  --surface-color: #FFFFFF;
  --surface-border: #CBD5E1;
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --accent-cyan: #2588D1;
  --accent-blue: #1b6da8;
  --accent-green: #10B981;
  --glow-cyan: rgba(37, 136, 209, 0.15);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Ambient Glows - Made subtle for light mode */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.glow-top-right {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 136, 209, 0.1) 0%, transparent 70%);
}

.glow-bottom-left {
  bottom: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 136, 209, 0.08) 0%, transparent 70%);
}

/* Typography Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 6px -1px var(--glow-cyan);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -1px var(--glow-cyan);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid var(--surface-border);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  background-color: var(--surface-color);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

.btn-text {
  color: var(--text-secondary);
  font-weight: 600;
  transition: color 0.2s ease;
}

.btn-text:hover {
  color: var(--accent-cyan);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* Panels */
.glass-panel {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
  padding: 40px 0 10px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(37, 136, 209, 0.1);
  border: 1px solid rgba(37, 136, 209, 0.2);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
}

.hero-form {
  max-width: 540px;
  margin: 0 auto;
  padding: 24px;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.input-group {
  flex: 1;
}

.input-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.input-group input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--surface-border);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-inset);
}

.input-group input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(37, 136, 209, 0.15);
}

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

.form-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Logos Section */
.logos,
.trusted-by {
  padding: 20px 0;
  background: transparent;
}

.logos-heading {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Marquee Animation */
.logo-marquee {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

.logo-marquee-track img {
  height: 38px;
  width: auto;
  max-width: 180px;
  margin: 0 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.logo-marquee-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Features */
.features {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-lg);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 136, 209, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-cyan);
}

.icon-wrapper.highlight {
  background: rgba(37, 136, 209, 0.15);
}

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

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Performance Banner */
.performance-banner {
  padding: 60px 0;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 64px;
  background: #FFFFFF;
}

.glow-border {
  border: 1px solid var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(37, 136, 209, 0.1);
}

.banner-text {
  max-width: 500px;
}

.banner-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.banner-text p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.banner-stat {
  text-align: right;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--accent-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
}

.pricing-table-wrapper {
  overflow-x: auto;
  padding: 10px 10px 30px;
}

.premium-table {
  width: 100%;
  min-width: 800px;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  background: #FFFFFF;
}

.premium-table th,
.premium-table td {
  padding: 24px;
  border-bottom: 1px solid var(--surface-border);
}

.tier-col {
  width: 20%;
  text-align: center;
  vertical-align: bottom;
}

.feature-col {
  width: 40%;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

.tier-premium {
  background: rgba(37, 136, 209, 0.02);
  position: relative;
}

/* Left and right borders for the highlighted column */
th.tier-premium {
  border-top: 2px solid var(--accent-cyan);
  border-left: 2px solid var(--accent-cyan);
  border-right: 2px solid var(--accent-cyan);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

td.tier-premium {
  border-left: 2px solid var(--accent-cyan);
  border-right: 2px solid var(--accent-cyan);
}

.premium-table tfoot td.tier-premium {
  border-bottom: 2px solid var(--accent-cyan) !important;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.premium-badge {
  display: inline-block;
  background: var(--accent-cyan);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tier-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.tier-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.tier-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-border);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.check-glow {
  background: var(--accent-cyan);
  color: #fff;
  box-shadow: 0 2px 10px rgba(37, 136, 209, 0.3);
}

.dash {
  color: var(--surface-border);
  font-weight: 800;
}

.premium-table tbody td {
  text-align: center;
}

.premium-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-secondary);
}

.premium-table tfoot td {
  border-bottom: none;
  padding-top: 32px;
  padding-bottom: 32px;
}

/* --- Footer --- */
.q-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--surface-border);
  background: #ffffff;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.q-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.q-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .q-footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.q-footer-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .q-footer-links {
    justify-content: center;
  }
}

.q-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

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

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

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .banner-stat {
    text-align: center;
  }
}

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

  .form-row {
    flex-direction: column;
  }

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

  .pricing-table-wrapper {
    margin: 0 -24px;
    padding: 24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .tier-col:not(.tier-premium) {
    display: none;
  }
}

/* Chart overrides to keep them contained */
.qs-charts-grid,
.qs-dashboard-container {
  width: 100% !important;
  max-width: 100% !important;
  position: static !important;
  left: auto !important;
  transform: none !important;
  padding: 0 !important;
}

/* --- Dynamic Latest Articles --- */
.preview-section {
  background-color: var(--light);
}

.preview-grid {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.preview-grid::after {
  content: '';
  flex: 0 0 1px;
}

/* Hide scrollbar for a cleaner look while maintaining scrollability */
.preview-grid::-webkit-scrollbar {
  height: 8px;
}

.preview-grid::-webkit-scrollbar-track {
  background: var(--border-color);
  border-radius: 4px;
}

.preview-grid::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}

.preview-card {
  margin: 16px 0;
  background: white;
  border: 1px solid var(--accent-cyan);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 0 0 450px;
  scroll-snap-align: start;
}

.preview-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.micro-teasers {
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
}

.micro-teasers li {
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.micro-teasers li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.preview-card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border-color);
}

.preview-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.preview-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 12px;
}

.preview-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 0;
}

.preview-body {
  padding: 24px;
  position: relative;
  flex-grow: 1;
}

.redacted-content {
  color: transparent;
  text-shadow: 0 0 8px rgba(15, 23, 42, 0.4);
  user-select: none;
  font-size: 14px;
  line-height: 1.6;
  pointer-events: none;
  margin-bottom: 16px;
}

.lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.lock-icon {
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lock-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 16px;
}

.lock-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

@keyframes pulse-hint {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(37, 136, 209, 0.4);
  }

  100% {
    opacity: 0.7;
  }
}

@keyframes highlight-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 136, 209, 0.4);
    border-color: var(--border-color);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(37, 136, 209, 0.2);
    border-color: var(--primary);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 136, 209, 0);
    border-color: var(--border-color);
  }
}

.highlight-pulse {
  animation: highlight-glow 1.5s ease-out;
}

/* --- Weekly Euro Brief Footer --- */
.q-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  background: #ffffff;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.q-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.q-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .q-footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.q-footer-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .q-footer-links {
    justify-content: center;
  }
}

.q-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

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

@media (max-width: 767px) {
  .preview-card {
    flex: 0 0 85vw;
  }
}


/* ==========================================================================
   Mobile Pricing Segmented Control
   ========================================================================== */

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .mobile-pricing-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Segmented Control Base */
  .segmented-control {
    display: flex;
    position: relative;
    background-color: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 32px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .segmented-control input[type="radio"] {
    display: none;
  }

  .segmented-control label {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
  }

  /* The sliding indicator */
  .segmented-indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc((100% - 8px) / 3);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  }

  /* Indicator positions */
  #tier-free:checked~.segmented-indicator {
    transform: translateX(0);
  }

  #tier-standard:checked~.segmented-indicator {
    transform: translateX(100%);
  }

  #tier-premium:checked~.segmented-indicator {
    transform: translateX(200%);
  }

  /* Label active states */
  #tier-free:checked~label[for="tier-free"],
  #tier-standard:checked~label[for="tier-standard"],
  #tier-premium:checked~label[for="tier-premium"] {
    color: var(--text-primary);
  }

  /* Panel Styling */
  .tier-panel {
    background: white;
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(5px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .tier-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--surface-border);
  }

  .tier-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .tier-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
  }

  .tier-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
  }

  .feature-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
  }

  .feature-list li:last-child {
    border-bottom: none;
  }

  .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
  }

  .check-icon {
    background-color: var(--accent-cyan);
    color: white;
  }

  .cross-icon {
    background-color: #e2e8f0;
    color: #94a3b8;
  }

  .btn-block {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

/* Track Record Custom Styles */
.track-record-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.track-record-table-container {
  background: white;
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  overflow-x: auto;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.track-record-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 300px;
}

.track-record-table thead tr {
  background: #f8fafc;
  border-bottom: 1px solid var(--surface-border);
}

.track-record-table th {
  padding: 16px 24px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.track-record-table td {
  padding: 24px;
  vertical-align: middle;
}

.asset-cell {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.call-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-weight: 700;
  font-size: 0.9rem;
}

.call-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.action-cell {
  color: var(--text-secondary);
}

.outcome-cell {
  font-weight: 800;
  color: #10b981;
  font-size: 1.25rem;
  white-space: nowrap;
}

.desktop-only-cell {
  display: none;
}

.mobile-break {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only-cell {
    display: table-cell;
  }
}

@media (max-width: 640px) {
  .track-record-table, 
  .track-record-table tbody, 
  .track-record-table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .track-record-table thead {
    display: none;
  }
  
  .track-record-table tr {
    gap: 20px;
    padding: 16px 0;
  }

  .track-record-table td {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px !important;
    border: none;
    text-align: center;
  }

  .track-record-table td::before {
    content: attr(data-label);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }

  .asset-cell {
    font-size: 1.1rem;
  }

  .outcome-cell {
    font-size: 1.25rem;
  }
  
  .mobile-break {
    display: none;
  }
  
  .banner-content {
    padding: 24px !important;
  }
}

.premium-badge {
  display: inline-block;
  background: var(--accent-cyan);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
