/* ============================================
   The Unsubjective Trader - Landing Page Styles
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0f2440;
  --navy-light: #1e3a5f;
  --blue-accent: #2563eb;
  --blue-hover: #1d4ed8;
  --gray-100: #f5f6f8;
  --gray-200: #e8eaed;
  --gray-300: #c9cdd4;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --white: #ffffff;
  --green: #22c55e;
  --red-strike: #dc2626;
  --gold: #f59e0b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* --- Typography --- */
h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--blue-accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--blue-accent);
  border: 2px solid var(--blue-accent);
}
.btn-outline:hover {
  background: var(--blue-accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-card {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue-accent); }

.nav-cta {
  padding: 8px 20px !important;
  font-size: 0.85rem !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, var(--gray-100) 100%);
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--navy) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--navy) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 80px 0 60px;
}

.hero-logo {
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--blue-accent);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37,99,235,0.08);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-accent);
  margin-bottom: 24px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--gray-300);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Section Spacing --- */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--gray-100);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  margin-bottom: 16px;
}

/* --- Problem Section --- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.pain-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(220,38,38,0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--red-strike);
}

.pain-card h4 {
  margin-bottom: 10px;
  color: var(--navy);
}
.pain-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.transition-text {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--blue-accent);
}

/* --- Strategy Cards --- */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.strategy-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.strategy-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.strategy-card-header {
  padding: 32px 28px 20px;
  border-bottom: 1px solid var(--gray-200);
}

.strategy-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  margin-bottom: 12px;
}
.tag-scalp { background: rgba(245,158,11,0.1); color: #d97706; }
.tag-swing { background: rgba(37,99,235,0.08); color: var(--blue-accent); }

.strategy-card-header h3 {
  margin-bottom: 8px;
}
.strategy-card-header p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.strategy-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--gray-200);
}
.stat-item {
  padding: 16px 28px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stat-item:nth-child(2n) { border-right: none; }
.stat-item:nth-child(n+3) { border-bottom: none; }

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.stat-value.positive { color: var(--green); }
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.strategy-includes {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-200);
}
.strategy-includes h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.includes-list {
  list-style: none;
  display: grid;
  gap: 8px;
}
.includes-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--gray-700);
}
.includes-list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  flex-shrink: 0;
}



.price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-old {
  font-size: 1.1rem;
  color: var(--gray-300);
  text-decoration: line-through;
}
.price-new {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

/* --- Strategy Promo / Discount Block --- */
.strategy-promo {
  padding: 20px 28px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f5e9 100%);
  border-top: 1px solid var(--gray-100);
}

.promo-pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.price-regular {
  font-size: 0.95rem;
  color: var(--gray-400);
}

.price-regular s {
  color: var(--gray-300);
}

.price-launch {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}

.promo-code {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.discount-code {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.promo-urgency {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e53e3e;
}

.strategy-footer {
  padding: 24px 28px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.strategy-footer .btn {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

/* --- Launch Disclaimer Section --- */
.launch-disclaimer-section {
  padding-top: 0;
  padding-bottom: 0;
}

.launch-disclaimer {
  max-width: 720px;
  margin: 0 auto;
  background: var(--gray-50, #f7f8fa);
  border: 1px solid var(--gray-100, #e2e8f0);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
}

.launch-disclaimer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.launch-disclaimer p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* --- Social Proof / Trade Examples --- */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trade-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1117;
  aspect-ratio: 16/7;
  border: 1px solid var(--gray-200);
}
.trade-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trade-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--gray-300);
  font-size: 0.9rem;
}
.trade-card-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: var(--gray-300);
  opacity: 0.6;
}

.trade-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  font-family: inherit;
  gap: 16px;
}
.faq-question:hover { color: var(--blue-accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo {
  height: 32px;
  filter: brightness(0) invert(1);
}
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-links svg {
  width: 18px;
  height: 18px;
}

.disclaimer {
  font-size: 0.78rem;
  max-width: 640px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

.copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
  .nav-toggle { display: flex; }

  .hero-content { padding: 48px 0 40px; }
  .hero-logo { max-width: 360px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-group .btn { width: 100%; max-width: 320px; }

  .section { padding: 64px 0; }

  .pain-grid { grid-template-columns: 1fr; gap: 16px; }
  .pain-card { padding: 28px 20px; }

  .strategy-grid { grid-template-columns: 1fr; }
  .strategy-footer { flex-direction: column; }
  .strategy-footer .btn { width: 100%; }

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

  .footer-links { flex-direction: column; gap: 12px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pain-grid { gap: 20px; }
  .strategy-grid { gap: 24px; }
}



/* --- Strategy Screenshot --- */
.strategy-screenshot {
  padding: 0 2rem;
  margin-bottom: 1rem;
}
.strategy-screenshot img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

/* --- Coming Soon Cards --- */
.strategy-card-coming-soon {
  border: 2px dashed var(--gray-300) !important;
  background: var(--gray-100) !important;
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.strategy-card-coming-soon:hover {
  opacity: 0.9;
  border-color: var(--gray-500) !important;
}
.coming-soon-content {
  text-align: center;
  padding: 2.5rem 2rem;
}
.coming-soon-icon {
  margin-bottom: 1.25rem;
}
.coming-soon-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gray-500);
}
.strategy-card-coming-soon h3 {
  color: var(--gray-500);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.strategy-card-coming-soon p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}