/**
 * Landing page – Hero section (and nav) styles
 * Matches design: deep blue/purple bg, dot grid, wave image, gradient headline, pill CTA, stats bar
 */

@media (prefers-reduced-motion: reduce) {
  .visual.explanation,
  .visual.explanation .step {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .visual.explanation .steps::before {
    transform: scaleX(1);
    transition: none;
  }
}

/* --- Hero section --- */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--landing-nav-clearance, 100px) 0 0 0;
  background: linear-gradient(180deg, #060A16 0%, #081B52 50%, #060A16 100%);
  contain: layout style;
}

.hero-threads-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  margin-left: -180px;
}
.hero-threads-container canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 32px clamp(24px, 4vw, 48px) 40px;
  box-sizing: border-box;
  max-width: var(--landing-container-max);
  margin-left: auto;
  margin-right: auto;
}

.hero-glow-left,
.hero-glow-right {
  position: absolute;
  width: 900px;
  height: 500px;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
  will-change: transform;
  z-index: 1;
  contain: strict;
}
.hero-glow-left {
  left: -450px;
  background: radial-gradient(ellipse at center, rgba(208, 98, 178, 0.27) 0%, transparent 70%);
}
.hero-glow-right {
  right: -450px;
  background: radial-gradient(ellipse at center, rgba(37, 193, 241, 0.27) 0%, transparent 70%);
}

.hero-headline-top {
  margin: 0 0 0.5em 0;
  padding-top: 180px;
  font-family: var(--font-sans);
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.hero-headline-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: hero-letter-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes hero-letter-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Headline: "Stop Guessing" (white) / "Start Trading with" (gradient) / "Absolute Confidence" (white) */
.hero-headline {
  margin: 0 0 24px 0;
  padding-top: 0;
}

.hero-headline-reveal {
  opacity: 1;
}

.hero-headline-reveal .hero-line {
  opacity: 0;
  animation: hero-headline-reveal 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.hero-headline-reveal .hero-line.hero-line-accent {
  animation: hero-headline-reveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

@keyframes hero-headline-reveal {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.hero-headline .hero-line {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-headline .hero-line-white,
.hero-headline .hero-line-light {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.hero-headline .hero-line-first {
  display: block;
  margin-bottom: 0.5em;
}

.hero-headline .hero-line-gradient {
  background: linear-gradient(90deg, #54308C 0%, #247CC6 50%, #07E0FD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-headline .hero-line.hero-line-accent {
  font-size: clamp(40px, 6vw, 72px);
  display: block;
}

.hero p.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-family: var(--font-sans);
  font-weight: 100;
}

.hero-subtitle-in {
  opacity: 0;
  animation: hero-subtitle-in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s forwards;
  transform-origin: center top;
}

@keyframes hero-subtitle-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-star-spin {
  from {
    opacity: 0.5;
    transform: rotateY(0deg);
  }
  to {
    opacity: 1;
    transform: rotateY(360deg);
  }
}

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

.btn-hero-sail-in {
  opacity: 0;
  animation: btn-hero-sail-in 0.9s cubic-bezier(0.34, 1.2, 0.64, 1) 0.65s forwards;
  transform-origin: center;
}

@keyframes btn-hero-sail-in {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Let's Sail: liquid glass (iOS 26 / Apple style) + animated gradient border */
.btn-hero-sail {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 6px 30px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  /* Liquid glass: light base + strong blur + saturation */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(200, 220, 255, 0.12) 100%
  );
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  color: #ffffff !important;
  /* Soft outer glow + inner glass highlight (liquid glass edge) */
  box-shadow:
    0 4px 24px rgba(36, 124, 198, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  overflow: hidden;
}
.btn-hero-sail::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  padding: 1px;
  z-index: -1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(7, 224, 253, 0.4) 15%,
    rgba(36, 124, 198, 0.7) 50%,
    rgba(84, 48, 140, 0.5) 85%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: dashboard-btn-border-flow 4s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.btn-hero-sail:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 4px 24px rgba(36, 124, 198, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  color: #ffffff !important;
}
.btn-hero-sail:active {
  transform: translateY(-1px) scale(1.01);
  transition-duration: 0.1s;
  box-shadow:
    0 2px 16px rgba(36, 124, 198, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Stats bar at bottom of hero */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 64px);
  margin-top: auto;
  padding-top: 80px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  opacity: 0;
  animation: stats-in-from-bottom 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.stat:nth-child(1) { animation-delay: 0.05s; }
.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.35s; }
.stat:nth-child(4) { animation-delay: 0.5s; }
@keyframes stats-in-from-bottom {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.stat .num {
  display: block;
  font-family: 'Google Sans Flex', var(--font-sans), sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  /* Gradient text (liquid glass color, no background) */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(180, 220, 255, 0.95) 40%,
    rgba(120, 180, 255, 0.95) 70%,
    rgba(140, 100, 220, 0.9) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  letter-spacing: 0.5px;
  font-family: var(--font-sans);
  font-weight: 300;
}

/**
 * Landing page – Hero and all landing sections.
 * Base (variables, nav bar, footer) is in landing-base.css.
 */

/* Responsive: hero */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    height: 100vh;
    padding: calc(24px + var(--landing-nav-clearance, 88px)) 0 0;
  }

  .hero .container {
    padding-top: 80px;
  }

  .hero-headline {
    padding-top: 0;
  }

  .hero-headline .hero-line {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero-headline .hero-line.hero-line-accent {
    font-size: clamp(32px, 9vw, 48px);
  }

  .hero p.hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .btn-hero-sail {
    min-height: 44px;
    padding: 6px 30px;
    font-size: 15px;
  }

  .stats-bar {
    gap: 28px;
    padding-top: 60px;
  }

  .stat .num {
    font-size: 28px;
  }

  .stat .label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    height: 100vh;
    padding: calc(16px + var(--landing-nav-clearance, 80px)) 0 0;
  }

  .hero .container {
    padding-top: 60px;
  }

  .hero-headline {
    padding-top: 0;
  }

  .hero-headline .hero-line {
    font-size: clamp(26px, 7vw, 36px);
  }

  .hero-headline .hero-line.hero-line-accent {
    font-size: clamp(30px, 8vw, 42px);
  }

  .hero p.hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .stats-bar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
    padding-top: 40px;
    max-width: 100%;
  }

  .stat .num {
    font-size: 22px;
  }

  .stat .label {
    font-size: 11px;
  }
}

/* === AFTER HERO === */
.after-hero {
  position: relative;
  z-index: 0;
  min-height: 75vh;
  padding: 100px 0 200px;
  background-color: #040810;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.after-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}
.after-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.after-hero h2 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin: 0 auto 28px auto;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}
.after-hero .after-hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 40px auto;
  text-align: center;
}
.after-hero .after-hero-lead strong { font-weight: 700; color: #fff; }
.after-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.after-hero-features .feature-block {
  padding: 24px 0 0;
  text-align: center;
}
.after-hero-features .feature-block h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.after-hero-features .feature-block p {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin: 0;
}

/* After-hero: tablet – image from left, single column, text stays centered */
@media (max-width: 768px) {
  .after-hero-features { grid-template-columns: 1fr; gap: 28px; }
  .after-hero {
    min-height: 60vh;
    padding: 80px 0 120px;
  }
  .after-hero-bg { object-position: left center; }
  .after-hero h2 { white-space: normal; }
}

/* After-hero: phone – hide image, left-aligned text, compact spacing (match reference) */
@media (max-width: 576px) {
  .after-hero {
    min-height: auto;
    padding: 56px 0 72px;
  }
  .after-hero-bg { display: none; }
  .after-hero .container { text-align: left; }
  .after-hero h2 {
    font-size: clamp(22px, 5.5vw, 28px);
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.3;
    text-align: left;
  }
  .after-hero .after-hero-lead {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    text-align: left;
  }
  .after-hero-features {
    gap: 24px;
    max-width: 100%;
  }
  .after-hero-features .feature-block {
    padding: 20px 0 0;
    text-align: left;
  }
  .after-hero-features .feature-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .after-hero-features .feature-block p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* === VISUAL EXPLANATION (Steps: Scan / Signal / Execute) === */
.visual.explanation {
  position: relative;
  padding: var(--landing-section-padding-y-tablet) 0 var(--landing-section-padding-y);
  background-color: #040810;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  color: #fff;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-sizing: border-box;
}
.visual.explanation .explanation-glow-left,
.visual.explanation .explanation-glow-right {
  position: absolute;
  width: 900px;
  height: 500px;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
  z-index: 0;
}
.visual.explanation .explanation-glow-left {
  left: -450px;
  background: radial-gradient(ellipse at center, rgba(208, 98, 178, 0.27) 0%, transparent 70%);
}
.visual.explanation .explanation-glow-right {
  right: -450px;
  background: radial-gradient(ellipse at center, rgba(37, 193, 241, 0.27) 0%, transparent 70%);
}
.visual.explanation .container {
  position: relative;
  z-index: 1;
  max-width: var(--landing-container-max);
  margin: 0 auto;
  padding: 0 var(--landing-container-padding);
}
.visual.explanation.explanation-inview {
  opacity: 1;
  transform: translateY(0);
}

.visual.explanation .steps {
  display: flex;
  flex-direction: row;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
@media (min-width: 601px) {
  .visual.explanation .steps {
    overflow: hidden;
  }
}
.visual.explanation .steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6 + 28px);
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, #3b82f633, #a855f733, #00FF8822);
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.visual.explanation.explanation-inview .steps::before {
  transform: scaleX(1);
}
/* Fill line: grows to active step on click, ends with track at third circle */
.visual.explanation .steps-line-fill {
  position: absolute;
  top: 28px;
  left: calc(100% / 6 + 28px);
  width: 0;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, #3b82f633, #a855f733, #00FF8822);
  z-index: 0;
  pointer-events: none;
  transform-origin: left center;
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.visual.explanation .steps[data-active="0"] .steps-line-fill {
  width: 0;
}
.visual.explanation .steps[data-active="1"] .steps-line-fill {
  width: calc(100% / 3 - 56px);
}
.visual.explanation .steps[data-active="2"] .steps-line-fill {
  width: min(calc(200% / 3 - 56px), calc(80% - 100% / 6 - 28px));
}
@keyframes ve-line-draw {
  to { transform: scaleX(1); }
}

.visual.explanation .step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}
.visual.explanation.explanation-inview .step {
  opacity: 1;
  transform: translateY(0);
}
.visual.explanation.explanation-inview .step:nth-child(1) { transition-delay: 0.25s; }
.visual.explanation.explanation-inview .step:nth-child(2) { transition-delay: 0.4s; }
.visual.explanation.explanation-inview .step:nth-child(3) { transition-delay: 0.55s; }
@keyframes ve-step-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.visual.explanation .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid #1e3a5f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #4a6580;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #030712;
  flex-shrink: 0;
  font-family: 'Google Sans Flex', var(--font-sans), sans-serif;
}
.visual.explanation .step.active .step-num {
  border-color: #3b82f6;
  color: #fff;
  box-shadow: 0 0 20px #3b82f644, inset 0 0 15px #3b82f622;
  background: #01051a;
}
.visual.explanation .step:nth-child(2).active .step-num {
  border-color: #a855f7;
  color: #fff;
  box-shadow: 0 0 20px #a855f744, inset 0 0 15px #a855f722;
  background: #0d0114;
}
.visual.explanation .step:nth-child(3).active .step-num {
  border-color: #00FF88;
  color: #fff;
  box-shadow: 0 0 20px #00FF8844, inset 0 0 15px #00FF8811;
  background: #011a0d;
}
.visual.explanation .step-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: #7b8ba5;
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.visual.explanation .step.active .step-label { color: #3b82f6; }
.visual.explanation .step:nth-child(2).active .step-label { color: #a855f7; }
.visual.explanation .step:nth-child(3).active .step-label { color: #00FF88; }
.visual.explanation .step-title {
  font-size: 15px;
  font-weight: 600;
  color: #9ca3af;
  transition: color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 8px;
}
.visual.explanation .step.active .step-title { color: #fff; }
.visual.explanation .step-desc {
  font-size: 12px;
  color: #6b7280;
  margin-top: 0;
  line-height: 1.6;
  transition: color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.visual.explanation .step.active .step-title,
.visual.explanation .step.active .step-desc {
  animation: ve-step-content-reveal 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.visual.explanation .step.active .step-title {
  animation-delay: 0.18s;
}
.visual.explanation .step.active .step-desc {
  animation-delay: 0.32s;
}
@keyframes ve-step-content-reveal {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.visual.explanation .step.active .step-desc { color: #e5e7eb; }
.visual.explanation .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
  min-height: 28px;
}
.visual.explanation .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  background: #01051a;
  border: 1px solid #3b82f633;
  color: #3b82f688;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}
.visual.explanation .step.active .tag {
  opacity: 1;
  transform: translateY(0);
}
.visual.explanation .step.active .tag:nth-child(1) { transition-delay: 0.05s; }
.visual.explanation .step.active .tag:nth-child(2) { transition-delay: 0.1s; }
.visual.explanation .step.active .tag:nth-child(3) { transition-delay: 0.15s; }
.visual.explanation .step:nth-child(2) .tag {
  background: #0d0114;
  border-color: #a855f733;
  color: #a855f788;
}
.visual.explanation .step:nth-child(3) .tag {
  background: #011a0d;
  border-color: #00FF8833;
  color: #00FF8888;
}

/* Tablet / small laptop (601px – 900px): keep row, give text more room */
@media (min-width: 601px) and (max-width: 900px) {
  .visual.explanation {
    padding: 44px 0 52px;
  }
  .visual.explanation .steps {
    max-width: 100%;
    padding: 0;
  }
  .visual.explanation .steps::before {
    left: calc(100% / 6 + 26px);
    right: 20%;
  }
  .visual.explanation .steps-line-fill {
    left: calc(100% / 6 + 26px);
    top: 26px;
  }
  .visual.explanation .steps[data-active="1"] .steps-line-fill {
    width: calc(100% / 3 - 52px);
  }
  .visual.explanation .steps[data-active="2"] .steps-line-fill {
    width: min(calc(200% / 3 - 52px), calc(80% - 100% / 6 - 26px));
  }
  .visual.explanation .step {
    padding: 0 6px;
  }
  .visual.explanation .step-num {
    width: 52px;
    height: 52px;
    font-size: 10px;
    margin-bottom: 12px;
  }
  .visual.explanation .steps::before {
    top: 26px;
  }
  .visual.explanation .step-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    margin-bottom: 6px;
  }
  .visual.explanation .step-title {
    font-size: 14px;
  }
  .visual.explanation .step-desc {
    font-size: 11px;
    max-width: 100%;
    margin-top: 6px;
  }
  .visual.explanation .tags {
    margin-top: 10px;
    min-height: 24px;
  }
  .visual.explanation .tag {
    font-size: 8px;
    padding: 2px 6px;
  }
}

/* Laptop (901px – 1199px) */
@media (min-width: 901px) and (max-width: 1199px) {
  .visual.explanation {
    padding: 56px 0 64px;
  }
  .visual.explanation .steps {
    max-width: 860px;
    padding: 0;
  }
  .visual.explanation .step {
    padding: 0 12px;
  }
  .visual.explanation .step-title {
    font-size: 15px;
  }
  .visual.explanation .step-desc {
    max-width: 220px;
  }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
  .visual.explanation {
    padding: 64px 0 72px;
  }
  .visual.explanation .steps {
    max-width: 960px;
    padding: 0;
  }
  .visual.explanation .steps::before {
    left: calc(100% / 6 + 28px);
    right: 20%;
  }
  .visual.explanation .step {
    padding: 0 16px;
  }
  .visual.explanation .step-title {
    font-size: 16px;
  }
  .visual.explanation .step-desc {
    max-width: 240px;
    font-size: 13px;
  }
  .visual.explanation .tags {
    margin-top: 14px;
  }
  .visual.explanation .tag {
    font-size: 9px;
    padding: 4px 9px;
  }
}

@media (max-width: 600px) {
  .visual.explanation {
    padding: var(--landing-section-padding-y-sm) 0 50px;
    animation: ve-explanation-enter 1.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
  }
  .visual.explanation .steps-line-fill {
    display: none;
  }
  .visual.explanation .steps {
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-width: 100%;
  }
  .visual.explanation .steps::before {
    display: none;
  }
  /* Vertical timeline line on mobile – centered with circles, ends at third circle */
  .visual.explanation .steps::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 27px;
    width: 2px;
    height: 480px;
    background: linear-gradient(180deg, #3b82f633, #a855f733, #00FF8822);
    z-index: 0;
    pointer-events: none;
    transform: scaleY(0);
    transform-origin: top center;
    animation: ve-line-draw-vertical 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
  }
  @keyframes ve-line-draw-vertical {
    to { transform: scaleY(1); }
  }
  .visual.explanation .step {
    flex: none;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 20px;
    align-items: start;
    text-align: left;
    padding: 0 0 32px 0;
    position: relative;
    z-index: 1;
    animation: ve-step-enter 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  .visual.explanation .step:nth-child(1) { animation-delay: 0.5s; }
  .visual.explanation .step:nth-child(2) { animation-delay: 0.75s; }
  .visual.explanation .step:nth-child(3) { animation-delay: 1s; }
  .visual.explanation .step:last-child {
    padding-bottom: 0;
  }
  .visual.explanation .step-num {
    grid-column: 1;
    width: 56px;
    height: 56px;
    margin: 0;
    align-self: center;
    transition: all 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .visual.explanation .step-label,
  .visual.explanation .step-title,
  .visual.explanation .step-desc,
  .visual.explanation .tags {
    grid-column: 2;
    min-width: 0;
  }
  .visual.explanation .step-label {
    align-self: center;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 10px;
    transition: color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .visual.explanation .step-title {
    font-size: 16px;
    line-height: 1.35;
    margin-top: 4px;
    transition: color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .visual.explanation .step-desc {
    max-width: none;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
    transition: color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .visual.explanation .step.active .step-title,
  .visual.explanation .step.active .step-desc {
    animation: ve-step-content-reveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  .visual.explanation .step.active .step-title {
    animation-delay: 0.22s;
  }
  .visual.explanation .step.active .step-desc {
    animation-delay: 0.4s;
  }
  .visual.explanation .tags {
    justify-content: flex-start;
    margin-top: 10px;
    min-height: 24px;
    flex-wrap: nowrap;
  }
  .visual.explanation .tag {
    flex-shrink: 0;
    font-size: 8px;
    padding: 2px 6px;
    letter-spacing: 1px;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .visual.explanation .step.active .tag:nth-child(1) { transition-delay: 0.08s; }
  .visual.explanation .step.active .tag:nth-child(2) { transition-delay: 0.16s; }
  .visual.explanation .step.active .tag:nth-child(3) { transition-delay: 0.24s; }
}

/* === HOW YOU WIN + WHY TRADERS (one shared background) === */
.landing-dark-band {
  position: relative;
  background: transparent;
  overflow: hidden;
}

/* === HOW YOU WIN (overlaps after-hero) === */
.how-you-win-section {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 100px 0 80px;
  background: transparent;
  color: #fff;
  overflow: visible;
}
.how-you-win-section .container {
  position: relative;
  z-index: 1;
}
.how-you-win-container {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 48px 72px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.how-you-win-intro {
  padding-top: 0;
  text-align: left;
  position: relative;
}
.how-you-win-intro::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  min-height: 200px;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.how-you-win-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.how-you-win-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin: 0;
}
.how-you-win-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}
.how-you-win-steps-line {
  display: none;
}
.how-you-win-section .step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.how-you-win-section .step-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.how-you-win-section .step-content h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}
.how-you-win-section .step-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 768px) {
  .how-you-win-section { margin-top: 0; padding: 80px 0 60px; }
  .how-you-win-container { grid-template-columns: 1fr; gap: 40px; }
  .how-you-win-intro { text-align: center; }
  .how-you-win-intro::after { display: none; }
}

.step-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}

/* === WHY TRADERS CHOOSE TEMTO === */
.why-traders-section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
  padding: 100px 0;
  background: transparent;
  color: #fff;
  overflow: visible;
}
.why-traders-section .container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.why-traders-section .section-title { margin-bottom: 48px; }
.why-traders-section .section-title h2 {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
.why-traders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  max-width: 100%;
}
.why-traders-grid .why-card {
  padding: 0;
}
/* Icons: logo.how.png as mask, each card a different color (fuchsia, indigo, blue, cyan) */
.why-traders-grid .why-card-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  -webkit-mask-image: url('/static/images/logo.how.png');
  mask-image: url('/static/images/logo.how.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.why-traders-grid .why-card-icon-1 { background-color: #E91E8C; }   /* fuchsia / hot pink */
.why-traders-grid .why-card-icon-2 { background-color: #5E35B1; }   /* deep purple / indigo */
.why-traders-grid .why-card-icon-3 { background-color: #2196F3; }   /* medium blue */
.why-traders-grid .why-card-icon-4 { background-color: #00BCD4; }   /* sky blue / cyan */
.why-traders-grid .why-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-traders-grid .why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) { .why-traders-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .why-traders-grid { grid-template-columns: 1fr; } }

/* === DASHBOARD DEMO SECTION (division line + dashboardDemo image) === */
.dashboard-demo-section {
  position: relative;
  padding: var(--landing-section-padding-y) 0;
  box-sizing: border-box;
}
.dashboard-demo-section .container {
  max-width: var(--landing-container-max);
  margin: 0 auto;
}
.dashboard-demo-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, #3b82f633, #a855f733, #00FF8822);
}
.dashboard-demo-section .section-title h2 {
  color: #fff;
  font-family: var(--font-sans);
}
.dashboard-demo-section .section-title .hero-headline {
  margin: 0 0 16px 0;
  padding-top: 0;
}
.dashboard-demo-section .section-title .hero-headline .hero-line {
  font-size: clamp(32px, 4vw, 48px);
  display: block;
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.dashboard-demo-section .section-title .hero-headline .hero-line.hero-line-gradient {
  background: linear-gradient(90deg, #54308C 0%, #247CC6 50%, #07E0FD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Dashboard section: animations run on scroll into view */
.dashboard-demo-section .section-title .hero-headline-reveal .hero-line {
  opacity: 0;
  animation: none;
}
.dashboard-demo-section.dashboard-visible .section-title .hero-headline-reveal .hero-line {
  animation: hero-headline-reveal 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}
.dashboard-demo-section .section-title p.hero-subtitle-in {
  opacity: 0;
  animation: none;
}
.dashboard-demo-section.dashboard-visible .section-title p.hero-subtitle-in {
  animation: hero-subtitle-in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.55s forwards;
}
.dashboard-demo-section .dashboard-demo-preview.fade-up,
.dashboard-demo-section .dashboard-cta.fade-up {
  opacity: 0;
  animation: none;
}
.dashboard-demo-section.dashboard-visible .dashboard-demo-preview.fade-up {
  animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}
.dashboard-demo-section.dashboard-visible .dashboard-cta.fade-up {
  animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}
.dashboard-demo-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}
.dashboard-subtitle-reveal {
  animation-delay: 0.55s;
}
.dashboard-demo-preview {
  max-width: 960px;
  margin: 0 auto 32px;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.dashboard-demo-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.dashboard-demo-section .dashboard-cta {
  text-align: center;
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.dashboard-demo-section .btn-demo-primary {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s ease, background 0.28s ease;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0284c7 100%);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.dashboard-demo-section .btn-demo-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
}
.dashboard-demo-section.dashboard-visible .btn-demo-primary,
.dashboard-demo-section.dashboard-visible .btn-demo-secondary {
  position: relative;
}
.dashboard-demo-section.dashboard-visible .btn-demo-secondary {
  border: 1px solid transparent;
  background-clip: padding-box;
}
.dashboard-demo-section.dashboard-visible .btn-demo-secondary::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  padding: 1px;
  z-index: -1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(7, 224, 253, 0.4) 15%,
    rgba(36, 124, 198, 0.7) 50%,
    rgba(84, 48, 140, 0.5) 85%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: dashboard-btn-border-flow 4s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@keyframes dashboard-btn-border-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.dashboard-demo-section .btn-demo-secondary {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  background: rgba(16, 22, 37, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #315B9A;
  cursor: pointer;
  font-family: var(--font-sans);
}
.dashboard-demo-section .btn-demo-secondary:hover {
  color: #fff;
  border-color: #3E7EFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(49, 91, 154, 0.35);
}

@media (max-width: 768px) {
  .dashboard-demo-section { padding: var(--landing-section-padding-y-tablet) 0; }
  .dashboard-demo-section .section-title .hero-line-break {
    display: block;
    margin-top: 0.2em;
  }
}
@media (max-width: 480px) {
  .dashboard-demo-section { padding: var(--landing-section-padding-y-mobile) 0; }
  .dashboard-demo-section .dashboard-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  .dashboard-demo-section .btn-demo-primary,
  .dashboard-demo-section .btn-demo-secondary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
    padding: 14px 24px;
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  .dashboard-demo-section { padding: var(--landing-section-padding-y-sm) 0; }
}

/* === SECTIONS === */
.landing-page section { padding: 80px 0; position: relative; }
.section-title { text-align: center; margin-bottom: 48px; max-width: 100%; box-sizing: border-box; }
.section-title h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; word-wrap: break-word; }
.section-title h2.section-title-italic { font-style: italic; }
.section-title p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.7; word-wrap: break-word; }

/* === ABOUT TEXT === */
.about-text { max-width: 800px; margin: 0 auto; text-align: center; }
.about-text p { color: var(--text-muted); font-size: 16px; line-height: 1.9; margin-bottom: 20px; }
.about-text em { color: var(--accent); font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; }
.about-text strong { color: var(--accent); }

/* === HOW IT WORKS === */
.steps { display: flex; flex-direction: column; gap: 48px; max-width: 700px; margin: 0 auto; }
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-num { flex-shrink: 0; width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--accent), #2B7BD4); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: white; box-shadow: 0 4px 20px rgba(63,169,245,0.3); }
.step-content h3 { font-size: 22px; margin-bottom: 8px; color: var(--text); }
.step-content p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* === FEATURES GRID === */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: all 0.3s; }
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(63,169,245,0.1); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* === DASHBOARD PREVIEW === */
.dashboard-preview { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; max-width: 900px; margin: 0 auto; position: relative; overflow: hidden; }
/* Circles in background removed for now */
.dash-mockup { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.dash-stat { background: var(--bg-card2); border-radius: 12px; padding: 16px; text-align: center; }
.dash-stat .val { font-size: 28px; font-weight: 700; color: var(--accent2); font-family: 'Playfair Display', serif; }
.dash-stat .lbl { font-size: 11px; color: var(--text-muted); margin-top: 4px; letter-spacing: 1px; }
.dash-chart { grid-column: 1 / -1; height: 200px; background: var(--bg-card2); border-radius: 12px; position: relative; overflow: hidden; }
.dash-chart canvas { width: 100%; height: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--accent), #2B7BD4); color: white; padding: 16px 40px; border-radius: 12px; font-weight: 700; font-size: 16px; border: none; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 24px rgba(63,169,245,0.3); text-decoration: none; display: inline-block; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(63,169,245,0.4); color: white; }
.btn-secondary { background: transparent; color: var(--text); padding: 16px 40px; border-radius: 12px; font-weight: 600; font-size: 16px; border: 1px solid var(--border); cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; position: relative; transition: all 0.3s; }
.price-card:hover { transform: translateY(-4px); }
.price-card.popular { border-color: var(--accent); box-shadow: 0 0 40px rgba(63,169,245,0.15); }
.price-card.popular::before { content: 'BELIEBTESTE WAHL'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent), #2B7BD4); color: white; padding: 4px 20px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 2px; }
.price-name { font-family: 'Playfair Display', serif; font-size: 24px; font-style: italic; margin-bottom: 4px; }
.price-amount { font-size: 36px; font-weight: 700; color: var(--accent2); margin-bottom: 4px; }
.price-amount span { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.price-desc { color: var(--text-muted); font-size: 13px; margin-bottom: 24px; line-height: 1.6; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li { padding: 8px 0; font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.price-features li::before { content: '✓'; color: var(--accent2); font-weight: 700; flex-shrink: 0; }
.btn-price { display: block; width: 100%; padding: 14px; border-radius: 10px; text-align: center; font-weight: 700; font-size: 14px; border: 1px solid var(--border); color: var(--text); background: transparent; cursor: pointer; transition: all 0.3s; }
.btn-price:hover { border-color: var(--accent); color: var(--accent); }
.price-card.popular .btn-price { background: linear-gradient(135deg, var(--accent), #2B7BD4); color: white; border: none; box-shadow: 0 4px 16px rgba(63,169,245,0.3); }
.price-card.popular .btn-price:hover { transform: translateY(-1px); }

/* === CHOOSE YOUR VOYAGE (Pricing section with gradient + dots) === */
.voyage-pricing-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.voyage-pricing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #060A16 0%, #081B52 50%, #060A16 100%);
  z-index: 0;
}
.voyage-pricing-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 1;
}
.voyage-pricing-section .container { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.voyage-pricing-title h2 { color: #fff; font-family: var(--font-sans); }
.voyage-pricing-title p { color: rgba(255, 255, 255, 0.8); }

.voyage-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
}
.voyage-card {
  background: linear-gradient(180deg, #101625 0%, #132447 100%);
  border: 1px solid rgba(0, 194, 255, 0.35);
  border-radius: 10px;
  padding: 32px;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 0 24px rgba(0, 194, 255, 0.12);
  display: flex;
  flex-direction: column;
}
.voyage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 32px rgba(0, 194, 255, 0.2);
}
.voyage-card-popular {
  border-color: rgba(0, 194, 255, 0.5);
  box-shadow: 0 0 32px rgba(0, 194, 255, 0.25), 0 0 48px rgba(88, 101, 242, 0.15);
}
.voyage-card-popular:hover {
  box-shadow: 0 0 40px rgba(0, 194, 255, 0.35), 0 0 56px rgba(88, 101, 242, 0.2);
}
.voyage-pricing-grid .voyage-card:nth-child(3) {
  border-color: rgba(169, 143, 243, 0.4);
  box-shadow: 0 0 24px rgba(169, 143, 243, 0.15);
}
.voyage-pricing-grid .voyage-card:nth-child(3):hover {
  box-shadow: 0 0 32px rgba(169, 143, 243, 0.22);
}
.voyage-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, #57449B 0%, #1E1735 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 0 10px 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.voyage-card-name {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}
.voyage-price {
  font-size: 32px;
  font-weight: 700;
  color: #00C2FF;
  margin-bottom: 4px;
}
.voyage-price span { font-size: 15px; color: var(--text-muted); font-weight: 400; }
.voyage-price-purple { color: #A98FF3; }
.voyage-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.voyage-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.voyage-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: #fff;
}
.voyage-feature-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}
.voyage-btn {
  display: block;
  width: 100%;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  border: 1.5px solid transparent;
  margin-top: auto;
}
.voyage-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid #00C2FF;
  box-shadow: 0 0 16px rgba(0, 194, 255, 0.2);
}
.voyage-btn-outline:hover {
  color: #fff;
  border-color: #00C2FF;
  background: rgba(0, 194, 255, 0.08);
  box-shadow: 0 0 24px rgba(0, 194, 255, 0.3);
}
.voyage-btn-primary {
  background: #00C2FF;
  color: #000;
  border: 1.5px solid #00C2FF;
  box-shadow: 0 0 20px rgba(0, 194, 255, 0.4);
}
.middle-btn{
  color: black !important;
}
.voyage-btn-primary:hover {
  color: #000;
  background: #33CCFF;
  border-color: #33CCFF;
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(0, 194, 255, 0.5);
}
.voyage-btn-outline-purple {
  background: transparent;
  color: #A98FF3;
  border: 1.5px solid #A98FF3;
  box-shadow: 0 0 16px rgba(169, 143, 243, 0.2);
}
.voyage-btn-outline-purple:hover {
  color: #A98FF3;
  border-color: #A98FF3;
  background: rgba(169, 143, 243, 0.08);
  box-shadow: 0 0 24px rgba(169, 143, 243, 0.3);
}
@media (max-width: 900px) {
  .voyage-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* === TESTIMONIALS === */
/* === CAPTAIN'S LOG (Testimonials) === */
.captains-log-section .section-title h2 { color: #fff; font-family: var(--font-sans); }
.captains-log-section .section-title p { color: var(--text-muted); }
.captains-log-section .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.captains-log-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.captains-log-card {
  background: linear-gradient(180deg, #101625 0%, #132447 100%);
  border: 1px solid rgba(110, 86, 191, 0.25);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.captains-log-card:hover {
  border-color: rgba(110, 86, 191, 0.4);
  box-shadow: 0 8px 32px rgba(110, 86, 191, 0.12);
}
.captains-log-quote-icon {
  width: 48px;
  height: auto;
  margin-bottom: 16px;
  display: block;
}
.captains-log-quote-icon path { fill: #6E56BF; }
.captains-log-text {
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.captains-log-gain {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.captains-log-author { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; }
.captains-log-name { color: #fff; font-weight: 600; font-size: 14px; }
.captains-log-role { color: var(--text-muted); font-size: 13px; }
@media (max-width: 900px) {
  .captains-log-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* === MARKET INSIGHTS === */
.market-insights-section .section-title { text-align: left; margin-bottom: 32px; }
.market-insights-section .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.market-insights-section .section-title h2 { color: #fff; font-family: var(--font-sans); }
.market-insights-section .section-title p { color: var(--text-muted); max-width: none; margin-left: 0; }
.market-insights-ticker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  padding: 16px 24px;
  background: rgba(13, 22, 38, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 40px;
}
.ticker-item { color: var(--text-muted); font-size: 14px; }
.ticker-item strong { color: #fff; margin-right: 4px; }
.ticker-up { color: var(--green); }
.ticker-down { color: var(--red); }
.ticker-signal {
  margin-left: auto;
  color: #25C1F1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.market-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
}
.market-insight-card {
  background: linear-gradient(180deg, #101625 0%, #132447 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  text-align: left;
}
.market-insight-card:hover {
  border-color: rgba(63, 169, 245, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.market-insight-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--bg-card2);
}
.market-insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.market-insight-tag {
  display: inline-block;
  margin: 12px 0 0 16px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
.market-insight-tag-trend { background: #a0523a; }
.market-insight-tag-alt { background: #2EBD85; }
.market-insight-tag-edu { background: #2B7BD4; }
.market-insight-body { padding: 16px 20px 20px; text-align: left; }
.market-insight-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: var(--font-sans);
}
.market-insight-body p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.market-insight-body a {
  font-size: 13px;
  font-weight: 600;
  color: #25C1F1;
}
.market-insight-body a:hover { color: #5BB8FF; }
@media (max-width: 900px) {
  .market-insights-ticker { flex-direction: column; align-items: flex-start; }
  .ticker-signal { margin-left: 0; }
  .market-insights-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: 0; }
}

/* === FAQ === */
.faq-section {
  padding: var(--landing-section-padding-y) 0;
  box-sizing: border-box;
}
.faq-section .container {
  max-width: var(--landing-container-max);
  margin: 0 auto;
}

.faq-section-head {
  text-align: center;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.faq-section .faq-section-head .faq-section-title {
  opacity: 0;
  animation: none;
}
.faq-section.faq-visible .faq-section-head .faq-section-title {
  animation: hero-headline-reveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards;
}
.faq-section .faq-section-head .faq-section-desc {
  opacity: 0;
  animation: none;
}
.faq-section.faq-visible .faq-section-head .faq-section-desc {
  animation: hero-subtitle-in 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .faq-section .faq-section-head .faq-section-title,
  .faq-section .faq-section-head .faq-section-desc {
    opacity: 1;
    animation: none;
  }
}
.faq-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(90deg, #54308C 0%, #247CC6 50%, #07E0FD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.faq-section-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.faq-card {
  background: rgba(16, 22, 37, 0.15);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 48px 40px 56px;
  min-height: 520px;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.faq-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.faq-card-title-block { text-align: left; }
.faq-card-title {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}
.faq-card-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}
.faq-card-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  flex: 0 0 auto;
  align-content: start;
}
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
  .faq-section .container { padding: 0 20px; }
}
.faq-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px 0;
  min-height: 0;
}
.faq-item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-align: left;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  will-change: transform, opacity;
  overflow: hidden;
  min-height: 0;
}
.faq-section.faq-visible .faq-item {
  animation: faq-item-in 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  will-change: auto;
}
.faq-section.faq-visible .faq-col:nth-child(1) .faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-section.faq-visible .faq-col:nth-child(1) .faq-item:nth-child(2) { animation-delay: 0.11s; }
.faq-section.faq-visible .faq-col:nth-child(1) .faq-item:nth-child(3) { animation-delay: 0.17s; }
.faq-section.faq-visible .faq-col:nth-child(1) .faq-item:nth-child(4) { animation-delay: 0.23s; }
.faq-section.faq-visible .faq-col:nth-child(2) .faq-item:nth-child(1) { animation-delay: 0.08s; }
.faq-section.faq-visible .faq-col:nth-child(2) .faq-item:nth-child(2) { animation-delay: 0.14s; }
.faq-section.faq-visible .faq-col:nth-child(2) .faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-section.faq-visible .faq-col:nth-child(2) .faq-item:nth-child(4) { animation-delay: 0.26s; }
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 10px 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 15px);
  text-align: left;
  font-family: inherit;
  border-radius: 8px;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 44px;
  box-sizing: border-box;
}
.faq-q span { flex: 1; min-width: 0; }
.faq-q:hover { color: rgba(255, 255, 255, 0.92); }
.faq-item.open .faq-q {
  color: rgba(255, 255, 255, 0.98);
}
.faq-arrow {
  width: 20px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  color: var(--text-muted);
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.68;
  padding-left: 30px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  flex-shrink: 0;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.06s,
              margin-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.06s,
              padding-left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-item.open .faq-a {
  max-height: 380px;
  margin-top: 10px;
  padding-left: 30px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.08s,
              margin-top 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.08s,
              padding-left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes faq-item-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item {
    animation: none;
    opacity: 1;
    transform: none;
    will-change: auto;
  }
  .faq-section.faq-visible .faq-item { animation: none; opacity: 1; transform: none; }
  .faq-a,
  .faq-item.open .faq-a {
    transition-duration: 0.01s;
  }
}
@media (max-width: 768px) {
  .faq-section { padding: var(--landing-section-padding-y-tablet) 0; }
  .faq-section .container { padding: 0 var(--landing-container-padding-tablet); }
  .faq-section .faq-item.faq-hide-mobile { display: none; }
  .faq-section-head { margin-bottom: 28px; }
  .faq-section-title { font-size: clamp(1.4rem, 5vw, 1.75rem); }
  .faq-section-desc { font-size: 15px; }
  .faq-card {
    padding: 28px 24px 36px;
    min-height: 440px;
    border-radius: 14px;
  }
  .faq-card-header {
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 16px;
  }
  .faq-card-title {
    font-size: clamp(24px, 6vw, 28px);
  }
  .faq-card-subtitle { font-size: 14px; }
  .faq-card-icon {
    width: 40px;
    height: 40px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px 0;
    align-content: start;
  }
  .faq-col {
    gap: 16px;
    justify-content: flex-start;
    min-height: 0;
  }
  .faq-q {
    padding: 12px 0;
    min-height: 48px;
    font-size: 15px;
  }
  .faq-arrow { width: 18px; height: 10px; }
  .faq-a { padding-left: 28px; font-size: 14px; }
  .faq-item.open .faq-a {
    margin-top: 8px;
    padding-left: 28px;
    max-height: 280px;
  }
}
@media (max-width: 480px) {
  .faq-section { padding: var(--landing-section-padding-y-mobile) 0; }
  .faq-section .container { padding: 0 var(--landing-container-padding-mobile); }
  .faq-section-head { margin-bottom: 24px; }
  .faq-section-title { font-size: 1.4rem; }
  .faq-section-desc { font-size: 14px; }
  .faq-card {
    padding: 24px 20px 32px;
    min-height: 400px;
    border-radius: 12px;
  }
  .faq-card-header {
    margin-bottom: 16px;
    gap: 12px;
  }
  .faq-card-title {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .faq-card-subtitle { font-size: 13px; }
  .faq-card-icon {
    width: 36px;
    height: 36px;
  }
  .faq-grid { gap: 10px 0; }
  .faq-col { gap: 14px; justify-content: flex-start; }
  .faq-q {
    font-size: 14px;
    padding: 10px 0;
    min-height: 44px;
  }
  .faq-arrow { width: 16px; height: 9px; }
  .faq-a {
    font-size: 13px;
    padding-left: 0;
    padding-top: 4px;
    line-height: 1.6;
  }
  .faq-item.open .faq-a {
    margin-top: 6px;
    max-height: 280px;
    padding-left: 0;
  }
}
@media (max-width: 360px) {
  .faq-section { padding: var(--landing-section-padding-y-sm) 0; }
  .faq-section .container { padding: 0 var(--landing-container-padding-sm); }
  .faq-card {
    padding: 20px 16px 28px;
    min-height: 380px;
    border-radius: 10px;
  }
  .faq-card-title { font-size: 20px; }
  .faq-card-subtitle { font-size: 12px; }
  .faq-card-icon { width: 32px; height: 32px; }
  .faq-q { font-size: 13px; }
  .faq-a { font-size: 12px; }
  .faq-item.open .faq-a { max-height: 240px; }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fade-up:nth-child(1) { animation-delay: 0s; }
.fade-up:nth-child(2) { animation-delay: 0.08s; }
.fade-up:nth-child(3) { animation-delay: 0.16s; }
.fade-up:nth-child(4) { animation-delay: 0.24s; }
.fade-up:nth-child(5) { animation-delay: 0.32s; }
.fade-up:nth-child(6) { animation-delay: 0.4s; }

/* Footer: animate on scroll into view */
.landing-page footer.landing-footer .footer-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: none;
}
.landing-page footer.landing-footer.footer-visible .footer-brand.footer-anim {
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.08s forwards;
}
.landing-page footer.landing-footer.footer-visible .footer-col.footer-anim:nth-child(2) {
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.16s forwards;
}
.landing-page footer.landing-footer.footer-visible .footer-col.footer-anim:nth-child(3) {
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.24s forwards;
}
.landing-page footer.landing-footer.footer-visible .footer-col.footer-anim:nth-child(4) {
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.32s forwards;
}
.landing-page footer.landing-footer.footer-visible .footer-divider.footer-anim {
  animation: fadeUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.38s forwards;
}
.landing-page footer.landing-footer.footer-visible .footer-logos.footer-anim {
  animation: fadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.42s forwards;
}
.landing-page footer.landing-footer.footer-visible .footer-bottom.footer-anim {
  animation: fadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.52s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .landing-page footer.landing-footer .footer-anim {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.landing-page #dashboard { background: transparent; }
.landing-page #insights { background: transparent; }
.dashboard-cta { text-align: center; margin-top: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.pricing-grid-max { max-width: 800px; margin-left: auto; margin-right: auto; }
.price-card.price-card-free { border-color: var(--accent); }
.price-features.price-features-disabled { opacity: 0.4; }
.price-features-disabled li { text-decoration: line-through; }
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .dash-mockup { grid-template-columns: 1fr 1fr; }
}
