:root {
  --ink: #e9f3ff;
  --muted: #9bb3cc;
  --teal: #2ea6a3;
  --green: #45b649;
  --panel: #0f1a2b;
  --bg: #0b1220;
  --edge: #162a45;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.55;
}

a {
  color: #9fd8ff
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px)
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: inherit
}

.logo img {
  width: clamp(120px, 20vw, 200px);
  height: auto;
  display: block
}

.brand {
  display: flex;
  flex-direction: column
}

.brand .name {
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 800;
  letter-spacing: .02em
}

.brand .tag {
  font-size: 12px;
  color: #77d27f;
  letter-spacing: .2em
}

/* Hero */
.hero {
  padding: clamp(24px, 6vw, 64px) 0;
  display: grid;
  gap: clamp(16px, 4vw, 28px)
}

.hero h1 {
  font-size: clamp(28px, 6vw, 48px);
  margin: 0;
  line-height: 1.08;
  background: linear-gradient(#eef6ff, #9fd8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.lede {
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
  font-size: clamp(15px, 3.6vw, 18px)
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: .875rem 1.25rem;
  font-weight: 700;
  cursor: pointer
}

.btn.primary {
  background: linear-gradient(90deg, var(--teal), var(--green));
  color: #062016;
  box-shadow: 0 10px 24px rgba(46, 166, 163, .35)
}

.btn.secondary {
  background: #182840;
  color: #d5e9ff;
  border: 1px solid #2b425e
}

.illustration img {
  max-width: 440px;
  width: 100%;
  filter: drop-shadow(0 18px 48px rgba(0, 0, 0, .45))
}

/* Features */
.card-grid {
  display: grid;
  gap: 14px;
  margin-top: clamp(18px, 4vw, 28px);
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

.card {
  background: linear-gradient(180deg, #101c31, #0b1324);
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 18px
}

.card h3 {
  margin: .2rem 0 .4rem;
  font-size: 1.05rem
}

.card p {
  margin: 0;
  color: #a9c2d9;
  font-size: .95rem
}

.icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #153251;
  margin-bottom: 8px
}

/* Screenshot gallery (bottom) */
.gallery {
  margin-top: clamp(28px, 6vw, 48px);
  background: #0b1324;
  border-top: 1px solid var(--edge)
}

.gallery .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(12px, 2vw, 20px)
}

.scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 90%;
  gap: 12px;
  overflow-x: auto;
  padding: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroller::-webkit-scrollbar {
  height: 8px
}

.scroller::-webkit-scrollbar-thumb {
  background: #203a60;
  border-radius: 999px
}

.slide {
  scroll-snap-align: center;
  background: #061325;
  border: 1px solid var(--edge);
  border-radius: 14px;
  overflow: hidden
}

.slide img {
  display: block;
  width: 100%;
  height: auto
}

.caption {
  color: #9fb3c8;
  font-size: .9rem;
  margin: 10px 2px 0
}

.footer {
  padding: 24px 0;
  color: #94adc7;
  font-size: .9rem;
  text-align: center;
  border-top: 1px solid var(--edge);
  margin-top: 24px
}

@media (min-width:880px) {
  .hero {
    grid-template-columns: 1.2fr .8fr;
    align-items: center
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .scroller {
    grid-auto-columns: 32%
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(4, 10, 20, .85);
  z-index: 50;
  padding: 16px
}

.lightbox.open {
  display: grid
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  border: 1px solid var(--edge);
  background: #061325
}

.lb-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none
}

.lb-btn {
  pointer-events: auto;
  border: 1px solid var(--edge);
  background: #112035;
  color: #cfe6ff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: .9
}

.lb-btn:hover {
  opacity: 1
}

.lb-close {
  position: absolute;
  top: 12px;
  right: 12px
}

.lb-caption {
  color: #9fb3c8;
  margin-top: 10px;
  text-align: center
}

/* v4 updates: consistent aspect ratio & captions */
.slide {
  position: relative
}

.slide::before {
  content: "";
  display: block;
  aspect-ratio: var(--ar, 16/9);
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: contain;
  background: #061325
}

.shot-title {
  font-size: .85rem;
  color: #a8bfd6;
  margin: 8px 2px 0;
  text-align: center
}


/* --- Hero two-column with video card --- */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-video-card {
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 12px;
  backdrop-filter: blur(2px);
}

.hero-video-card video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  background: #000;
}

/* Buttons normalization */
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #2fc18d;
  color: #052e2a;
  border-color: rgba(0, 0, 0, .1);
}

.btn-secondary {
  background: rgba(255, 255, 255, .06);
  color: #d7e0ea;
  border-color: rgba(255, 255, 255, .18);
}

/* --- Logo + Bio section --- */
.about-bio {
  padding: 26px 16px;
}

.about-bio .bio-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
}

.about-bio .bio-logo img {
  width: clamp(200px, 40vw, 350px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, .35));
}

.about-bio .bio-text h2 {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 0.9rem + 1vw, 1.6rem);
}

.about-bio .bio-text p {
  margin: 6px 0;
  color: #94a3b8;
}

@media (max-width: 720px) {
  .about-bio .bio-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-bio .bio-logo img {
    margin: 0 auto;
  }
}


/* --- Overlap fixes for logo + bio responsiveness --- */
/* Give the hero a bottom margin so the next section doesn't collide when large logos are used */
.hero {
  margin-bottom: 24px;
}

/* Bio layout: ensure spacing and proper stacking on medium screens */
.about-bio {
  padding-top: 28px;
  padding-bottom: 22px;
}

.about-bio .bio-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: start;
}

/* Bio logo scales but never exceeds its column; also cap height to prevent overflow */
.about-bio .bio-logo img {
  width: clamp(200px, 40vw, 350px);
  max-width: 350px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

/* Headline spacing so it doesn't ride up under the logo */
.about-bio .bio-text h2 {
  margin-top: 6px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.about-bio .bio-text p {
  margin: 8px 0;
}

/* Medium screens: widen the logo column a bit but reduce its max size to avoid overlap */
@media (max-width: 1024px) {
  .about-bio .bio-wrap {
    grid-template-columns: 200px 1fr;
    gap: 18px;
  }

  .about-bio .bio-logo img {
    max-width: clamp(300px, 40vw, 350px);
    max-height: 300px;
  }
}

/* Small screens: stack vertically; center logo; ensure generous top spacing */
@media (max-width: 760px) {
  .about-bio .bio-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-bio .bio-logo img {
    margin: 0 auto;
    max-width: clamp(200px, 40vw, 350px);
    max-height: 300px;
  }

  .about-bio {
    padding-top: 22px;
  }
}

/* Guard rails: if any transforms or absolute elements appear, keep the flow intact */
.about-bio,
.about-bio * {
  position: relative;
}


/* Bio logo sizing: exactly 350px on desktop, responsive smaller on mobile */
.about-bio .bio-logo img {
  width: clamp(200px, 40vw, 350px);
  height: auto;
  display: block;
}

@media (min-width: 1024px) {
  .about-bio .bio-logo img {
    width: 350px;
  }
}


/* === Width fix for "Why TradingScript Solutions" section === */
/* Constrain the copy column so lines don't run too long and don't collide with the logo */
.about-bio .bio-text {
  max-width: 780px;
  /* readable line length on desktop */
}

@media (min-width: 1280px) {
  .about-bio .bio-text {
    max-width: 840px;
  }
}

@media (max-width: 1024px) {
  .about-bio .bio-text {
    max-width: unset;
  }

  /* full width when stacked on tablet/mobile */
}

/* Ensure enough spacing between logo and text at larger sizes */
.about-bio .bio-wrap {
  gap: 26px;
}

@media (max-width: 1024px) {
  .about-bio .bio-wrap {
    gap: 18px;
  }
}


/* === Responsive overlap fix for bio logo + text === */
.about-bio .bio-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 350px) 1fr;
  gap: 32px;
  align-items: center;
}

.about-bio .bio-logo img {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
}

.about-bio .bio-text {
  max-width: 100%;
  word-break: break-word;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .about-bio .bio-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .about-bio .bio-logo img {
    margin: 0 auto;
    max-width: 300px;
  }

  .about-bio .bio-text {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}

/* Small devices */
@media (max-width: 640px) {
  .about-bio .bio-logo img {
    max-width: 300px;
  }

  .about-bio .bio-text {
    max-width: 100%;
  }
}


/* === Fix overlap in "Why TradingScript Solutions" while keeping responsiveness === */
/* Desktop: make the left logo column wide enough for a 350px logo + padding, and keep text in its own column */
@media (min-width: 1024px) {
  .about-bio .bio-wrap {
    display: grid;
    grid-template-columns: 380px 1fr;
    /* 350px logo + spacing */
    align-items: start;
    gap: 24px;
  }

  .about-bio .bio-logo img {
    width: 350px;
    /* exact desktop size */
    max-width: 350px;
    height: auto;
  }
}

/* Tablet: slightly smaller logo and column to avoid crowding */
@media (min-width: 760px) and (max-width: 1023.98px) {
  .about-bio .bio-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: start;
    gap: 20px;
  }

  .about-bio .bio-logo img {
    max-width: 300px;
    width: 300px;
    height: auto;
  }
}

/* Mobile: stack vertically, center logo, full-width text */
@media (max-width: 759.98px) {
  .about-bio .bio-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-bio .bio-logo img {
    width: 300px;
    max-width: 300px;
    margin: 0 auto;
    height: auto;
  }
}

/* Safety: ensure text can't sit under the logo */
.about-bio .bio-text {
  position: relative;
  z-index: 1;
}

.about-bio .bio-logo {
  position: relative;
  z-index: 0;
}


/* Primary call-to-action */




/* Sticky CTA (mobile only) */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  display: none;
  justify-content: center;
  z-index: 40;
  pointer-events: none;
}

.sticky-cta.visible {
  display: flex;
}

.sticky-cta @media (min-width: 900px) {
  .sticky-cta {
    display: none !important;
  }
}


/* === Styling alignment + spacing polish === */
/* Hero layout spacing & rhythm */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 40px;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 18px;
    padding-bottom: 28px;
  }
}

/* Tighter heading spacing */
.hero h1 {
  margin-bottom: 10px;
}

.hero p {
  margin-top: 8px;
}

/* Actions row consistency */
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
}

.actions .btn {
  height: 46px;
  line-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);
}

/* Primary CTA tuned to match palette and reduce glow */




/* Secondary button matches site style */
.btn.btn-secondary {
  background: rgba(255, 255, 255, .06);
  color: #d7e0ea;
}

/* Illustration card alignment & spacing */
.illustration {
  border-radius: 16px;
  padding: 10px;
  background: radial-gradient(80% 70% at 50% 50%, rgba(255, 255, 255, .06), rgba(0, 0, 0, 0) 60%);
  border: 1px solid rgba(255, 255, 255, .08);
}

.illustration img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Section spacing after hero */
.about-bio {
  margin-top: 36px;
}

/* Header spacing so hero doesn't feel cramped under the logo/brand */
header {
  margin-bottom: 4px;
}


/* === Unified button system === */
.btn {
  --btn-h: 48px;
  --btn-pad-x: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btn-h);
  padding: 0 var(--btn-pad-x);
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: .2px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  will-change: transform, box-shadow;
}

.btn:focus-visible {
  outline: 1px solid rgba(148, 163, 184, .2);
  outline-offset: 2px;
  border-color: rgba(47, 193, 141, .55);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary CTA */




/* Ghost / Outline secondary (See Preview) */
.btn-ghost {
  background: radial-gradient(80% 120% at 30% 20%, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02) 60%);
  color: #d7e0ea;
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.btn-ghost:hover {
  background: radial-gradient(80% 120% at 30% 20%, rgba(255, 255, 255, .10), rgba(255, 255, 255, .03) 60%);
  border-color: rgba(255, 255, 255, .24);
}

/* Tertiary (Contact) */
.btn-secondary {
  background: rgba(255, 255, 255, .06);
  color: #d7e0ea;
}

/* Keep actions row tidy */
.actions {
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 520px) {
  .btn {
    --btn-h: 44px;
    --btn-pad-x: 16px;
  }
}


/* === Boost visibility of primary CTA (Start Membership) === */
.actions
/* Subtle luminous halo to draw the eye without being gaudy */
.actions

/* Gentle entrance pulse (runs once) to catch attention */
@keyframes cta-pop {
  0% {
    transform: translateY(2px) scale(.98);
    box-shadow: 0 10px 26px rgba(25, 227, 166, .28), 0 4px 10px rgba(0, 0, 0, .22);
  }

  60% {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 20px 46px rgba(25, 227, 166, .42), 0 10px 18px rgba(0, 0, 0, .28);
  }

  100% {
    transform: translateY(0) scale(1.00);
    box-shadow: 0 16px 36px rgba(25, 227, 166, .35), 0 6px 14px rgba(0, 0, 0, .25);
  }
}

.actions
/* Hover/active refinements */
.actions .actions
/* Keep mobile sticky CTA comfortable (not oversized) */
@media (max-width: 520px) {
  #sticky-cta
}


/* === Animated CTA for "Start Membership" === */
/* Continuous but subtle gradient motion + sheen sweep on hover. Respects reduced-motion. */
@keyframes cta-breathe {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-1px) scale(1.01);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes cta-gradient-pan {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes cta-sheen {
  0% {
    opacity: 0;
    transform: translateX(-140%) skewX(-20deg);
  }

  35% {
    opacity: .55;
  }

  100% {
    opacity: 0;
    transform: translateX(140%) skewX(-20deg);
  }
}

.actions
/* Sheen element */
.actions .actions
/* Subtle breathing animation so it stands out but doesn't distract */
.actions
/* Accessibility: honor reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .actions .btn-cta,
  .actions
}


.btn,
.button,
.button-cta,
.btn-cta,
.btn-primary,
.button-primary,
.button-preview,
.btn-preview,
.button-contact,
.btn-contact {
  box-shadow: none !important;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  transition: transform .18s cubic-bezier(.2, .9, .25, 1), filter .22s ease, box-shadow .22s ease;
  transform: translateZ(0);
}


.button-cta,


.button.primary,
.btn.primary.btn-primary,
.button-primary,
.btn-preview,
.button-preview {

  background: linear-gradient(90deg, var(--teal), var(--green));
  background-size: 160% 160%;
  animation: btnGradientShift 6s ease-in-out infinite;
  color: #051b12;
  border-color: rgba(34, 197, 94, .45);

}





.button.primary:hover,
.btn.primary.btn-primary:hover,
.button-primary:hover,
.btn-preview:hover,
.button-preview:hover {
  box-shadow: 0 0 0 12px var(--glow);
  filter: saturate(1.1) brightness(1.06);

}


.btn-contact,
.button-contact {
  box-shadow: none !important;
}


.btn-contact:hover,
.button-contact:hover {
  box-shadow: 0 0 0 8px var(--glow);
}


.btn:hover,
.button:hover,


.btn:active,
.button:active,

@keyframes btnGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.btn.primary.btn-primary {
  animation: btnGradientShift 6s ease-in-out infinite;
}


.button.primary {
  animation: btnGradientShift 6s ease-in-out infinite;
}


.button-primary {
  animation: btnGradientShift 6s ease-in-out infinite;
}


.btn-preview {
  animation: btnGradientShift 6s ease-in-out infinite;
}


/* === Halo sweep over CTA ============================================= */
@keyframes haloSweep {
  0% {
    transform: translateX(-140%) skewX(-12deg);
    opacity: .0;
  }

  8% {
    opacity: .35;
  }

  50% {
    opacity: .45;
  }

  92% {
    opacity: .35;
  }

  100% {
    transform: translateX(140%) skewX(-12deg);
    opacity: .0;
  }
}

.halo-sweep {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.halo-sweep::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -30%;
  width: 60%;
  pointer-events: none;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, .28) 45%,
      rgba(255, 255, 255, .55) 50%,
      rgba(255, 255, 255, .28) 55%,
      rgba(255, 255, 255, 0) 100%);
  filter: blur(2px);
  transform: translateX(-140%) skewX(-12deg);
  animation: haloSweep 2.6s ease-in-out infinite;
}

/* Make the halo a touch stronger on hover/focus */
.halo-sweep:hover::after,
.halo-sweep:focus-visible::after {
  animation-duration: 1.9s;
  opacity: .6;
}



/* --- Enforce responsive card grid for Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

@media (min-width:700px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1100px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.price-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, .25);
    background: rgba(255, 255, 255, .03);
    padding: 20px;
}

.price-card .btn {
  margin-top: auto;
}


/* --- Products Combined Features grid --- */
.products-wrap {
  padding: 22px 0;
}

.products-head {
  margin-bottom: 12px;
}

.products-head h2 {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
}

.products-sub {
  color: #94a3b8;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

@media (min-width:700px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1100px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
}

.pc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pc-head .icon {
  width: 22px;
  height: 22px;
}

.pc-head .icon.placeholder {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.pc-list {
  margin: 0;
  padding-left: 18px;
  color: #cbd5e1;
}


/* --- Products Combined Features (ALL cards + group CTA) --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

@media (min-width:700px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1100px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width:1400px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
}

.pc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pc-head .icon.placeholder {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.pc-list {
  margin: 0;
  padding-left: 18px;
  color: #cbd5e1;
}

.products-cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.products-cta .btn {
  min-width: 240px;
  justify-content: center;
}


/* --- Products/ Pricing group cards + unified CTA --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width:700px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1100px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width:1400px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
}

.pc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pc-head .icon.placeholder {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.pc-list {
  margin: 0;
  padding-left: 18px;
  color: #cbd5e1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

@media (min-width:700px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1100px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.price-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, .25);
  background: rgba(255, 255, 255, .03);
}

.price-card .btn {
  margin-top: auto;
}

.products-cta,
.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.products-cta .btn,
.pricing-cta .btn {
  min-width: 240px;
  justify-content: center;
}


/* --- Products Combined Features (archive-driven) --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width:700px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1100px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width:1400px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
}

.pc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pc-head .icon.placeholder {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.pc-list {
  margin: 0;
  padding-left: 18px;
  color: #cbd5e1;
}

.products-cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.products-cta .btn {
  min-width: 240px;
  justify-content: center;
}


/* --- Unified Products & Pricing Layout Enhancements --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}

@media (min-width:700px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1100px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width:1400px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pc-head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.pc-list {
  margin: 0;
  padding-left: 18px;
  color: #cbd5e1;
  line-height: 1.4;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}

@media (min-width:700px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1100px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.price-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, .25);
  background: rgba(255, 255, 255, .03);
  padding: 20px;
}

.price-card .btn {
  margin-top: auto;
}

.products-cta,
.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.products-cta .btn,
.pricing-cta .btn {
  min-width: 240px;
  justify-content: center;
}


/* === Re-implemented Product Cards (top-aligned, equal-height, concise bullets) === */
.products-grid {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 700px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 20px 0;
}

.product-card .pc-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.product-card .pc-head h3 {
  margin: 0;
  font-size: 1.06rem;
}

.product-card .pc-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.5;
}

.product-card .pc-list li {
  margin-bottom: .35em;
}

.product-card .pc-list li:nth-child(n+6) {
  display: none;
}

/* show up to 5 bullets */

/* === Section Panels: individual backgrounds per section (no full-page banding) === */
:root {
  --panel-from: rgba(15, 23, 42, .35);
  --panel-to: rgba(2, 6, 23, .22);
  --panel-brd: rgba(148, 163, 184, .12);
  --panel-radius: 18px;
  --panel-pad: 22px;
  --panel-gap: 22px;
}

section {
  position: relative;
  z-index: 0;
}

section>.container {
  background: linear-gradient(180deg, var(--panel-from), var(--panel-to));
  border: 1px solid var(--panel-brd);
  border-radius: var(--panel-radius);
  padding: var(--panel-pad);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 0 0 1px rgba(15, 23, 42, .18);
}

section+section {
  margin-top: var(--panel-gap);
}

@media (min-width: 900px) {
  section+section {
    margin-top: 26px;
  }
}

footer {
  margin-top: calc(var(--panel-gap) + 8px);
}







/* Opaque per-section panels (no dependency on body background) */
:root {
  --panel-from-solid: #111827;
  /* slate-900-ish */
  --panel-to-solid: #0b1221;
}

section>.container {
  background: linear-gradient(180deg, var(--panel-from-solid), var(--panel-to-solid)) !important;
}


/* Re-enable overall site background using panel colors */
html,
body {
  background: linear-gradient(180deg, var(--panel-from-solid), var(--panel-to-solid));
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

/* === v6 Fix Patch (moved to assets/css/styles.css) === */
/* Center both legacy banners and section-based banners */
.compliance-banner,
.compliance-banner *,
.compliance-section,
.compliance-section *,
.compliance-banner--top,
.compliance-banner--top *,
.compliance-section--top,
.compliance-section--top *,
.compliance-banner--bottom,
.compliance-banner--bottom *,
.compliance-section--bottom,
.compliance-section--bottom * {
  text-align: center !important;
}

/* Page bottom breathing room */
body {
  padding-bottom: 50px !important;
}

/* Footer centering + hr */
footer {
  text-align: center !important;
  padding: 24px 0 50px 0;
}

footer * {
  text-align: inherit !important;
}

.footer-hr {
  display: block;
  width: 100%;
  border: 0;
  border-top: 1px solid var(--edge, #1f344f);
  margin: 0 0 16px 0;
  opacity: .85;
}

/* === end v6 Fix Patch === */



/* === Display Fix Overrides (ensure these load last) === */
.compliance-section--top,
.compliance-section--top *,
.compliance-section--bottom,
.compliance-section--bottom *,
.compliance-banner--top,
.compliance-banner--top *,
.compliance-banner--bottom,
.compliance-banner--bottom * {
  text-align: center !important;
}

footer,
footer * {
  text-align: center !important;
}

.footer-hr {
  display: block;
  width: 100%;
  border: 0;
  border-top: 1px solid var(--edge, #1f344f);
  margin: 0 0 16px 0;
  opacity: .85;
}

body {
  padding-bottom: 50px !important;
}



/* === Compliance Banners (consolidated) === */
html {
  scroll-padding-top: 150px;
}

/* highest of provided values */
.compliance-banner {
  box-sizing: border-box;
  width: 100%;
  padding: 22px 18px;
  margin: 0;
  z-index: 9999;
  position: relative;
}

@media (max-width:640px) {
  .compliance-banner {
    padding: 18px 14px;
  }
}

.compliance-banner__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center !important;
  font-size: 15px;
  line-height: 1.55;
}

.compliance-banner__inner p {
  margin: 6px auto;
  max-width: 900px;
}

.compliance-banner__inner strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.compliance-banner--top {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #0b1221, #111827);
  color: #fff;
  border-bottom: 2px solid #329cc2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}

.compliance-banner--bottom {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #111827, #0b1221);
  color: #fff;
  border-top: 2px solid #329cc2;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .25);
}

@media (prefers-color-scheme: light) {

  .compliance-banner--top,
  .compliance-banner--bottom {
    background: linear-gradient(90deg, #f3f4f6, #e5e7eb);
    color: #111827;
    border-color: #329cc2;
  }
}

/* === Compliance Sections (section-based alt) === */
.compliance-section {
  box-sizing: border-box;
  width: 100%;
  padding: 26px 20px;
  margin: 0;
  z-index: 9999;
  position: relative;
}

@media (max-width:640px) {
  .compliance-section {
    padding: 22px 16px;
  }
}

.compliance-section__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center !important;
  font-size: 15px;
  line-height: 1.55;
}

.compliance-section__inner p {
  margin: 8px 0;
  text-align: center !important;
}

.compliance-section__inner strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  text-align: center !important;
}

.compliance-section--top {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #0b1221, #111827);
  color: #fff;
  border-bottom: 2px solid #329cc2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}

.compliance-section--bottom {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #111827, #0b1221);
  color: #fff;
  border-top: 2px solid #329cc2;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .25);
}

@media (prefers-color-scheme: light) {

  .compliance-section--top,
  .compliance-section--bottom {
    background: linear-gradient(90deg, #f3f4f6, #e5e7eb);
    color: #111827;
    border-color: #329cc2;
  }
}

/* Centering enforcement (kept) */
.compliance-banner,
.compliance-banner *,
.compliance-section,
.compliance-section *,
.compliance-banner--top,
.compliance-banner--top *,
.compliance-section--top,
.compliance-section--top *,
.compliance-banner--bottom,
.compliance-banner--bottom *,
.compliance-section--bottom,
.compliance-section--bottom * {
  text-align: center !important;
}

/* === Disclaimer Card (consolidated) === */
.ts-disclaimer-card {
  max-width: 1100px;
  margin: 40px auto 56px auto;
  padding: 28px;
  border-radius: 16px;
  background: rgba(17, 24, 39, .85);
  backdrop-filter: blur(6px);
  border: 2px solid #329cc2;
  color: #e5e7eb;
  font-size: 15px;
  line-height: 1.6;
}

.ts-disclaimer-card__inner {
  max-width: 980px;
  margin: 0 auto;
}

.ts-disclaimer-card h2 {
  font-size: 22px;
  margin: 0 0 16px 0;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.ts-disclaimer-card p {
  margin: 12px 0;
}

.ts-disclaimer-card strong {
  color: #93c5fd;
}

@media (prefers-color-scheme: light) {
  .ts-disclaimer-card {
    background: #f9fafb;
    color: #111827;
    border-color: #329cc2;
  }

  .ts-disclaimer-card h2 {
    color: #0b1221;
  }

  .ts-disclaimer-card strong {
    color: #0b1221;
  }
}

/* === Footer helpers preserved === */
.ts-footer-extra {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  opacity: .9;
}

.ts-footer-extra a {
  color: inherit;
  text-decoration: underline;
}

/* === Bottom page spacing (normalize to 50px site-wide) === */
html,
body {
  scroll-padding-bottom: 140px;
}

body {
  padding-bottom: 50px !important;
}

/* Why list: remove bullets and zero padding/margins */
ul.why-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
ul.why-list li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* === Disclaimer & Footer mobile edges fix === */
/* On small screens, add 20px breathing room. Keep the disclaimer centered on wider screens. */
@media (max-width: 1024px) {
  .ts-disclaimer-card {
    margin-left: 20px;
    margin-right: 20px;
  }
  footer,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* On larger screens, center the disclaimer and optionally constrain width */
@media (min-width: 1025px) {
  .ts-disclaimer-card {
    max-width: 960px; /* adjust if you prefer a different max width */
    margin-left: auto;
    margin-right: auto;
  }
}

  /* Scoped to section only */
  
  
  @media (min-width: 768px) {
    
  }
  
  
  
  
  

/* === Pricing: standardize layout and highlight Best Value (2025-09-26) === */
:root{
  --price-accent: #34d399;        /* emerald */
  --period-accent: #93c5fd;       /* blue-300 */
  --card-bg-a: rgba(17,24,39,.92);
  --card-bg-b: rgba(11,18,33,.88);
  --card-border: rgba(148,163,184,.18);
  --card-radius: 20px;
}

#pricing .pricing-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

/* Card layout */
#pricing .price-card{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:20px 18px;
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, var(--card-bg-a), var(--card-bg-b));
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
#pricing .price-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
  border-color: rgba(148,163,184,.32);
}

/* Price (h3) — make it pop */
#pricing .price-card > h3{
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 4px 0;
  background: linear-gradient(90deg, var(--price-accent), #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;              /* gradient text */
  letter-spacing: .2px;
}

/* Period line — emphasize item/per */
#pricing .price-card .period{
  margin: 0 0 12px 0;
  font-weight: 700;
  color: var(--period-accent);
  opacity: .95;
}
#pricing .price-card .period strong{
  color: #e5e7eb;                  /* near-white */
}

/* Perks list */
#pricing .price-card .perk-list{
  margin: 8px 0 0 0;
  padding-left: 1.1rem;
}
#pricing .price-card .perk-list li{
  margin: 6px 0;
  list-style: disc;
  opacity: .95;
}

/* Featured (Best Value) styling */
#pricing .price-card.featured{
  border-color: rgba(16,185,129,.55);
  box-shadow: 0 14px 60px rgba(16,185,129,.14), inset 0 0 0 1px rgba(16,185,129,.22);
  background: linear-gradient(180deg, rgba(16,24,32,.95), rgba(10,18,32,.95));
  transform: translateY(-2px);
}
#pricing .price-card.featured .badge{
  position:absolute;
  top: 12px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2px;
  color: #0b1221;
  background: linear-gradient(90deg, #34d399, #22d3ee);
  box-shadow: 0 6px 20px rgba(34,211,238,.28);
}

/* Ensure consistent spacing at the bottom even if perk counts differ */
#pricing .price-card::after{
  content: "";
  margin-top: auto;
}


/* === Pricing grid: enforce 4 cards per row on desktop (2025-09-26) === */
@media (min-width: 1200px){
  #pricing .pricing-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px;
  }
  #pricing .price-card{ min-width: 0; }
}
.pc-features{
      margin-left: -20px;
}


/* === FAQ Section (2025-09-28) === */
#faq .faq-container{
  border-radius: 14px;
  background: rgba(17,24,39,0.75);
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  overflow: hidden;
}
#faq .faq-title{
  margin: 0;
  padding: 18px 24px;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  background: linear-gradient(180deg, rgba(17,24,39,.96), rgba(11,18,33,.92));
  border-bottom: 1px solid rgba(148,163,184,.18);
}
#faq .faq-item{ border-bottom: 1px solid rgba(148,163,184,.18); }
#faq .faq-question{
  width: 100%;
  text-align: left;
  background: transparent;
  color: #e5e7eb;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .25s ease;
  border: 0; 
  font-size: 16px;
}
#faq .faq-question:hover{ background: rgba(148,163,184,.06); }
#faq .faq-question::after{
  content: '+';
  font-size: 22px;
  font-weight: 800;
  transition: transform .25s ease;
  opacity: .9;
}
#faq .faq-question.active::after{ transform: rotate(45deg); }
#faq .faq-answer{
  max-height: 0;
  overflow: hidden;
  background: rgba(2,6,23,.6);
  transition: max-height .3s ease, padding .2s ease;
  padding: 0 20px;
}
#faq .faq-item.open .faq-answer{
  /* JS sets max-height to content height for smooth animation */
  padding: 10px 20px; /* requested 10px top & bottom */
}
#faq .faq-answer p{ margin: 0 0 12px 0; }
#faq .faq-answer ul{ margin: 12px 0; padding-left: 1.1rem; }
#faq .highlight{
  background: rgba(59,130,246,.18);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}
@media (max-width: 640px){
  #faq .faq-question{ padding: 14px 16px; }
  #faq .faq-item.open .faq-answer{ padding: 10px 16px; }
}

/* Smooth scroll for in-page anchors */
html{scroll-behavior:smooth;}


/* === Products Combined Layout Fix (2025-09-29) === */
/* Grid + row layout stays the same */
#products-combined .products-grid{display:grid;grid-template-columns:1fr !important;gap:1.25rem}
#products-combined .pc-row{display:flex;flex-direction:column;gap:1rem}
@media (min-width:768px){
  #products-combined .pc-row{flex-direction:row;align-items:flex-start;gap:1.25rem}
}

/* Media column: allow growth/contract to 380px in row layout */
#products-combined .pc-media{
  display:block;
  width:min(100%,380px);
  max-width:380px;
  height: auto;
}

/* Image: fill the media wrapper safely */
#products-combined .pc-media img{
  width:100% !important;
  height:auto !important;
  display:block;
  border-radius:.75rem;
  object-fit:contain;
}

/* Content column: take remaining width and avoid overflow clipping */
#products-combined .pc-content{
  display:flex;
  flex-direction:column;
  flex:1 1 0;
  min-width:0;
}
#products-combined .pc-content .pc-cta{margin-top:.75rem}

/* On narrow screens, allow full card width while keeping the 380px cap */
@media (max-width:767.98px){
  #products-combined .pc-media{width:100%;max-width:380px}
}


/* === All-Access $99/mo CTA (below hero) === */
.btn.btn-allaccess{
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #0a1524;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 28px rgba(34,188,156,.35);
}
.btn.btn-allaccess:hover{ filter:brightness(1.08); transform:translateY(-1px); }
.all-access{ margin:56px auto; }
.all-access-head{ text-align:center; margin-bottom:28px; }
.all-access-head .lede{ max-width:1024px; margin:8px auto 16px; color:var(--muted); }
.all-access-cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:12px; }
.all-access-grid{ display:grid; grid-template-columns:1fr; gap:16px; }
@media (min-width:900px){ .all-access-grid{ grid-template-columns:1fr 1fr; } }
.all-access-card{ background:var(--panel); border:1px solid var(--edge); border-radius:16px; padding:20px; box-shadow:0 8px 32px rgba(0,0,0,.25); }
.all-access-card h3{ margin:0 0 10px 0; }
.all-access-list{ margin:0; padding-left:18px; display:grid; gap:10px; }
.all-access .disclaimer{ margin-top:12px; font-size:14px; color:var(--muted); border-top:1px dashed var(--edge); padding-top:10px; }


#follow-us {
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

#follow-us .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Padded card-style wrapper so there's actual inner breathing room */
#follow-us .follow-card {
  padding: 24px 20px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
}

/* Force stack + center regardless of any global .pc-head flex rules */
#follow-us .follow-head {
  display: block !important;
  text-align: center !important;
  margin: 0 auto 18px auto;
}

#follow-us .follow-head h2 {
  margin: 0 0 8px 0;
  line-height: 1.2;
}

#follow-us .follow-head .pc-desc {
  margin: 0;
  opacity: .85;
}

/* Centered icons with clean spacing */
#follow-us .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
}

/* Transparent icon buttons to avoid tinting/greying the brand icons */
#follow-us .icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

#follow-us .icon-link:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
}

#follow-us .icon-link svg {
  width: 44px;
  height: 44px;
  display: block;
}

#follow-us .icon-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  #follow-us .icon-link {
    width: 60px;
    height: 60px;
  }

  #follow-us .icon-link svg {
    width: 40px;
    height: 40px;
  }
}