* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0f;
  color: #ffffff;
  overflow-x: hidden;
}

/* Liquid Glass */
.liquid-glass {
  background: rgba(255,255,255,0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

/* Navbar */
.navbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}

/* PGT logo image in nav and footer */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 4px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.75rem;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(255,255,255,0.15);
}

.nav-ctas {
  display: none;
}

@media (min-width: 768px) {
  .nav-ctas {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.btn-glass {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.05);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  margin-top: auto;
  padding: 1.5rem 1.5rem 2.5rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 3rem 3rem 4rem;
  }
}

.hero-content h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 28rem;
  text-wrap: pretty;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-solid {
  background: white;
  color: black;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-solid:hover {
  opacity: 0.9;
}

/* Live Trading Results Section */
.trading-results {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #0a0a0f 0%, #0b0b14 100%);
}

.results-container {
  max-width: 72rem;
  margin: 0 auto;
}

.results-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.results-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.3);
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.result-panel {
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.panel-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-tier-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.panel-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.panel-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.myfxbook-widget-wrapper {
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
  min-height: 240px;
}

.myfxbook-iframe {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
}

.result-stats-row {
  display: flex;
  gap: 1rem;
}

.result-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.result-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.result-stat-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.gain-positive {
  color: #4ade80;
}

.btn-verify {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  align-self: flex-start;
  margin-top: auto;
}

.btn-verify:hover {
  color: white;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

.results-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* Features */
.features {
  padding: 6rem 1.5rem;
  background: #0a0a0f;
}

.features-container {
  max-width: 72rem;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  text-align: center;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pricing */
.pricing {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #0a0a0f 0%, #0d0d14 50%, #0a0a0f 100%);
}

.pricing-container {
  max-width: 80rem;
  margin: 0 auto;
}

.tier-block {
  margin-bottom: 5rem;
}

.tier-block:last-child {
  margin-bottom: 0;
}

.tier-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.free-badge {
  background: rgba(74,222,128,0.15);
  color: #4ade80;
}

.member-badge {
  background: rgba(96,165,250,0.15);
  color: #60a5fa;
}

.opm-badge {
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
}

.tier-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tier-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  max-width: 36rem;
  margin: 0 auto;
  text-wrap: pretty;
}

.tier-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .tier-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tier-cards-5 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .tier-cards-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .tier-cards-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pricing-card {
  padding: 1.75rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.15), 0 0 40px rgba(255,255,255,0.03);
}

.card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.card-header h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.card-features li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  padding-left: 1.25rem;
  position: relative;
}

.card-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
}

.card-features li strong {
  color: white;
  font-weight: 600;
}

/* Closing */
.closing {
  padding: 6rem 1.5rem;
  background: #0a0a0f;
}

.closing-container {
  max-width: 56rem;
  margin: 0 auto;
}

.closing-content {
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .closing-content {
    padding: 4rem 3rem;
  }
}

.closing-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.closing-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-wrap: pretty;
}

.closing-content p:last-of-type {
  margin-bottom: 2.5rem;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.closing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-value {
  font-size: 2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.cs-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Pricing CTA section (landing page teaser — links to /pricing) */
.pricing-cta-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #0a0a0f 0%, #0d0d14 100%);
}

.pricing-cta-container {
  max-width: 72rem;
  margin: 0 auto;
}

.pricing-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pricing-cta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-cta-card {
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-cta-card.featured-cta {
  border: 1px solid rgba(96,165,250,0.25);
  background: rgba(96,165,250,0.04);
}

.pricing-cta-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.pricing-cta-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
}

.btn-tier-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border-radius: 0.625rem;
  transition: opacity 0.2s, background 0.2s;
  align-self: flex-start;
}

.btn-tier-cta-free {
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.25);
}

.btn-tier-cta-free:hover {
  background: rgba(74,222,128,0.22);
}

.btn-tier-cta-member {
  color: #93c5fd;
  background: rgba(96,165,250,0.15);
  border: 1px solid rgba(96,165,250,0.3);
}

.btn-tier-cta-member:hover {
  background: rgba(96,165,250,0.25);
}

.btn-tier-cta-opm {
  color: #fbbf24;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.25);
}

.btn-tier-cta-opm:hover {
  background: rgba(251,191,36,0.22);
}

/* Footer */
.site-footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.85rem;
}

.footer-text {
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  line-height: 1.5;
  max-width: 32rem;
}