/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  /* Color */
  --color-bg: #080b14;
  --color-text-primary: #f1f3f7;
  --color-accent: #6558d9;
  --color-border: #6558d9;
  --color-white: #ffffff;
  --color-heading: #f4f2f0;
  --color-border-subtle: rgba(255, 255, 255, 0.12);
  --color-surface: #111728;
  --color-text-secondary: #d8d8d8;
  --color-accent-light: #c2b8ff;
  --color-success: #00951b;
  --color-positive: #20c997;
  --color-negative: #e5536b;

  /* Typography */
  --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-weight-light: 200;
  --font-weight-medium: 500;
  --font-size-base: 16px;
  --line-height-base: 24px;

  --font-size-display: clamp(2.75rem, 1.5rem + 6vw, 5rem);
  --line-height-display: 0.958;

  --font-size-body-lg: 20px;
  --line-height-body-lg: 32px;

  /* Spacing scale */
  --space-4: 4px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-14: 14px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-28: 28px;
  --space-32: 32px;
  --space-37: 37px;
  --space-38: 38px;
  --space-40: 40px;
  --space-46: 46px;
  --space-48: 48px;
  --space-64: 64px;

  /* Radius */
  --radius-sm: 6px;

  /* Layout */
  --container-max-width: 1440px;
  --container-padding-mobile: 20px;
  --container-padding-tablet: 40px;

  /* Z-index */
  --z-header: 100;
  --z-progress: 150;
  --z-drawer: 200;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  min-height: 100vh;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Layout primitives (reusable)
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-mobile);
}

@media (min-width: 1024px) {
  .container {
    padding-inline: var(--container-padding-tablet);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  line-height: normal;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.85;
}

.btn--outline {
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
}

.btn--solid {
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: var(--color-text-primary);
}

.btn--lg {
  padding: var(--space-10) var(--space-16);
}

.btn--xl {
  padding: var(--space-14) var(--space-16);
}

/* ==========================================================================
   Scroll progress bar
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-progress);
  width: 100%;
  height: 4px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: relative;
  z-index: var(--z-header);
  background-color: var(--color-bg);
  padding-block: var(--space-20);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-20);
}

.site-logo {
  display: block;
  width: 88px;
  height: auto;
  flex-shrink: 0;
}

/* Primary nav: hidden on mobile, shown from tablet breakpoint */
.nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-32);
}

.nav-link {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--color-accent-light);
}

.nav-item--dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-family: inherit;
  transition: color 0.15s ease;
}

.nav-dropdown-trigger:hover {
  color: var(--color-accent-light);
}

.nav-dropdown-trigger img {
  width: 18px;
  height: 18px;
  transition: transform 0.15s ease;
}

.nav-item--dropdown.is-open .nav-dropdown-trigger img {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + var(--space-16));
  left: 0;
  min-width: 200px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  padding: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-base);
  white-space: nowrap;
}

.nav-dropdown-link:hover {
  background-color: rgba(241, 243, 247, 0.08);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 29px;
}

/* Hamburger toggle: visible until tablet breakpoint */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Mobile nav drawer (< 1024px)
   ========================================================================== */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  visibility: hidden;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 85vw);
  background-color: var(--color-bg);
  border-left: 1px solid var(--color-border-subtle);
  padding: var(--space-20);
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}

.nav-drawer.is-open {
  visibility: visible;
}

.nav-drawer.is-open .nav-drawer-backdrop {
  opacity: 1;
}

.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-close {
  align-self: flex-end;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-drawer-close::before,
.nav-drawer-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: var(--color-text-primary);
}

.nav-drawer-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-drawer-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-drawer-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.nav-drawer-item--dropdown .nav-dropdown-trigger {
  width: 100%;
  justify-content: space-between;
}

.nav-drawer-item--dropdown .nav-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: none;
  border: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.nav-drawer-item--dropdown.is-open .nav-dropdown {
  max-height: 200px;
  margin-top: var(--space-16);
}

.nav-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  margin-top: auto;
}

.nav-drawer-cta .btn {
  width: 100%;
}

/* ==========================================================================
   Breakpoints: 1024px (tablet nav switch), 1280px (full desktop container)
   ========================================================================== */
@media (min-width: 1024px) {
  .nav,
  .header-cta {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .site-logo {
    width: 110.222px;
  }

  .lang-dropdown-wrapper {
    display: inline-flex;
  }
}

/* ==========================================================================
   Hero section
   ========================================================================== */
.hero-section {
  padding-block: var(--space-64);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-32);
}

.hero-orbit {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-32);
  max-width: 818px;
}

.tag {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-size: var(--font-size-base);
  color: var(--color-white);
  white-space: nowrap;
}

.hero-title {
  font-weight: 400;
  font-size: var(--font-size-display);
  line-height: var(--line-height-display);
  color: var(--color-heading);
}

.hero-title-line {
  display: block;
}

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

.hero-description {
  font-size: var(--font-size-body-lg);
  line-height: var(--line-height-body-lg);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-light);
}

.hero-description em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-37);
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 587px;
  aspect-ratio: 587 / 683;
  overflow: hidden;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--color-bg), transparent 17%) left / 17% 100% no-repeat,
    linear-gradient(to left, var(--color-bg), transparent 17%) right / 17% 100% no-repeat,
    linear-gradient(to bottom, var(--color-bg), transparent 20%) top / 100% 20% no-repeat,
    linear-gradient(to top, var(--color-bg), transparent 16%) bottom / 100% 16% no-repeat;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-37);
  }

  .hero-orbit {
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    width: 683px;
    height: 683px;
    pointer-events: none;
    z-index: 0;
  }

  .hero-orbit-ring {
    position: absolute;
  }

  .hero-orbit-ring--4 {
    left: 0;
    top: 0;
    width: 683px;
    height: 683px;
  }

  .hero-orbit-ring--1 {
    left: 54.45px;
    top: 54.65px;
    width: 573.42px;
    height: 572.79px;
  }

  .hero-orbit-ring--2 {
    left: 86.31px;
    top: 87.14px;
    width: 509.71px;
    height: 509.07px;
  }

  .hero-orbit-ring--3 {
    left: 117.85px;
    top: 118.68px;
    width: 446px;
    height: 445.36px;
  }

  .hero-image {
    flex-shrink: 0;
    width: 587px;
  }
}

/* ==========================================================================
   Shared section heading (tag + title + subtitle)
   ========================================================================== */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
  text-align: center;
}

.section-heading--left {
  align-items: flex-start;
  text-align: left;
}

.section-heading--md {
  max-width: 727px;
}

.section-heading--lg {
  max-width: 720px;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: var(--color-text-primary);
}

.section-subtitle {
  font-size: var(--font-size-base);
  line-height: normal;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   Accounts section (Explore first. Decide later.)
   ========================================================================== */
.accounts-section {
  padding-block: var(--space-64);
}

.accounts-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
}

.accounts-cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-24);
  width: 100%;
}

.account-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  width: 100%;
  padding: var(--space-32);
  border: 1px solid var(--color-border-subtle);
  border-radius: 20px;
}

.account-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  flex-grow: 1;
}

.account-card-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.account-card-header-row {
  display: flex;
  align-items: center;
  gap: var(--space-20);
}

.account-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--color-surface);
  border-radius: var(--radius-sm);
}

.account-card-title {
  font-size: 20px;
  line-height: 32px;
  text-transform: uppercase;
  color: var(--color-white);
}

.account-card-description {
  font-size: 18px;
  color: var(--color-text-secondary);
}

.account-card-price {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  color: var(--color-accent);
}

.account-card-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
}

.check-item img {
  flex-shrink: 0;
  margin-top: 3px;
}

.check-item span {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
}

.check-item--center {
  align-items: center;
}

.check-item--center img {
  margin-top: 0;
}

.account-card .btn {
  width: 100%;
}

@media (min-width: 1024px) {
  .accounts-cards {
    flex-direction: row;
    justify-content: center;
  }

  .account-card {
    width: 464px;
  }
}

/* ==========================================================================
   Experience section (Choose the experience that fits you.)
   ========================================================================== */
.experience-section {
  padding-block: var(--space-64);
}

.experience-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
}

.experience-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  width: 100%;
}

.experience-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--space-20) var(--space-20) var(--space-32);
  border: 1px solid var(--color-border-subtle);
  border-radius: 20px;
}

.experience-card-image {
  width: 100%;
  aspect-ratio: 668 / 325;
  border-radius: 16px;
  overflow: hidden;
}

.experience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-20);
  padding-top: var(--space-24);
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px var(--space-16);
  border: 0.5px solid var(--color-accent-light);
  border-radius: 100px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.experience-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  color: var(--color-success);
}

.experience-card-heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  width: 100%;
}

.experience-card-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-white);
}

.experience-card-subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-white);
}

.experience-card-description {
  font-size: var(--font-size-base);
  line-height: 28px;
  color: var(--color-text-secondary);
}

.experience-card .btn {
  align-self: flex-start;
}

@media (min-width: 1024px) {
  .experience-cards {
    flex-direction: row;
  }

  .experience-card {
    flex: 1 1 0;
  }
}

/* ==========================================================================
   How section (Market prediction in three simple steps.)
   ========================================================================== */
.how-section {
  position: relative;
  padding-block: var(--space-64);
  overflow: hidden;
}

.how-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  background-image: url('/wp-content/themes/weoption/template/images/how-glow.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.how-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
  max-width: 1197px;
  margin-inline: auto;
}

.how-heading {
  max-width: 765px;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  width: 100%;
  list-style: none;
}

.step-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
     text-align: center;
    justify-content: center;
    align-items: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 24px;
  font-weight: var(--font-weight-medium);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  color: var(--color-white);
}

.step-description {
  font-size: var(--font-size-base);
  line-height: 28px;
  color: var(--color-text-secondary);
}

.how-cta {
  width: 163px;
}

@media (min-width: 1024px) {
  .step-list {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-48);
  }

  .step-item {
    flex: 1 1 0;
  }
}

/* ==========================================================================
   Device section (Made for the way you use the web.)
   ========================================================================== */
.device-section {
  padding-block: var(--space-64);
}

.device-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
}

.device-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-46);
  width: 100%;
  max-width: 464px;
}

.device-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  width: 100%;
}

.device-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.device-item-header {
  display: flex;
  align-items: flex-end;
  gap: 19px;
}

.device-item-header img {
  flex-shrink: 0;
}

.device-item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-text-primary);
}

.device-item-description {
  font-size: var(--font-size-base);
  line-height: 28px;
  color: var(--color-text-secondary);
}

.device-media {
  width: 100%;
  max-width: 497px;
  aspect-ratio: 497 / 632;
  border-radius: 16px;
  overflow: hidden;
}

.device-media img,
.device-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .device-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-32);
  }

  .device-media {
    flex-shrink: 0;
    width: 497px;
  }
}

/* ==========================================================================
   Highlights bar (Free demo account, always on / ...)
   ========================================================================== */
.highlights-section {
  padding-block: var(--space-16);
}

.highlights-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-16) 104px;
}

/* ==========================================================================
   CTA section (See how WeOptions works...)
   ========================================================================== */
.cta-section {
  padding-block: var(--space-64);
}

.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: var(--space-48) var(--space-20);
  border: 1px solid var(--color-border-subtle);
  border-radius: 20px;
  overflow: hidden;
}

.cta-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 823px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-37);
}

/* ==========================================================================
   FAQ section (Good to know before you start.)
   ========================================================================== */
.faq-section {
  padding-block: var(--space-64);
}

.faq-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
  max-width: 952px;
  margin-inline: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-28);
  width: 100%;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  padding-bottom: var(--space-24);
  border-bottom: 1px solid var(--color-border-subtle);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  width: 100%;
  text-align: left;
}

.faq-question span {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  color: var(--color-text-primary);
}

.faq-question img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question img {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  font-size: var(--font-size-base);
  line-height: 28px;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--space-64);
  padding-bottom: var(--space-32);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-64);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-64) var(--space-40);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  max-width: 258px;
}

.footer-logo {
  width: 141px;
  height: auto;
}

.footer-tagline {
  font-size: var(--font-size-base);
  line-height: 28px;
  color: var(--color-text-primary);
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-64) var(--space-40);
}

@media (min-width: 1024px) {
  .footer-top {
    flex-wrap: nowrap;
    gap: 64px 216px;
  }

  .footer-right {
    gap: 64px 216px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  min-width: 109px;
}

.footer-col-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-primary);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.footer-nav a {
  font-size: var(--font-size-base);
  line-height: 28px;
  color: var(--color-text-secondary);
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-32);
  padding-top: var(--space-38);
  border-top: 1px solid var(--color-border-subtle);
}

.footer-disclosure {
  text-align: center;
  width: 100%;
  font-size: var(--font-size-base);
  line-height: 28px;
  color: var(--color-text-secondary);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: var(--font-size-base);
  line-height: 28px;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   How it works — page hero
   ========================================================================== */
.page-hero {
  padding-block: var(--space-64);
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
}

.page-hero-heading {
  gap: var(--space-32);
}

.hero-title--center {
  text-align: center;
}

.page-hero-description {
  max-width: 1196px;
}

.page-hero-image {
  width: 100%;
  max-width: 634px;
  margin-top: -110px;
}

.page-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  mask-image:
    linear-gradient(to bottom, transparent 0%, black 14%, black 31%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-composite: intersect;
}

/* ==========================================================================
   How it works — comparison section
   ========================================================================== */
.compare-section {
  position: relative;
  padding-block: var(--space-64);
  overflow: hidden;
}

.compare-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
  max-width: 950px;
  margin-inline: auto;
}

.compare-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--space-20) var(--space-24);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  overflow-x: auto;
}

.compare-row {
  display: flex;
  gap: var(--space-24);
  min-width: 640px;
  height: 49px;
  align-items: center;
  border-bottom: 1px solid var(--color-border-subtle);
}

.compare-row--header {
  height: 45px;
}

.compare-row--last {
  border-bottom: none;
}

.compare-cell {
  font-size: 14px;
  color: var(--color-text-primary);
}

.compare-cell:nth-child(1) {
  flex: 0 0 171px;
  color: var(--color-text-secondary);
}

.compare-cell:nth-child(2) {
  flex: 0 0 372px;
}

.compare-cell:nth-child(3) {
  flex: 1 1 0;
}

.compare-row--header .compare-cell {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-accent);
}

/* ==========================================================================
   How it works — steps section
   ========================================================================== */
.steps-section {
  padding-block: var(--space-64);
}

.steps-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
}

.steps-section--glow {
  position: relative;
  overflow: hidden;
}

.steps-section--glow .steps-inner {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   How it works — amount / payout section
   ========================================================================== */
.amount-section {
  padding-block: var(--space-64);
}

.amount-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
}

.amount-examples {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-32);
  width: 100%;
}

.amount-examples-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-24);
  width: 100%;
}

.example-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  width: 100%;
  max-width: 586px;
}

.example-heading {
  font-size: var(--font-size-base);
  color: var(--color-white);
}

.example-heading--center {
  text-align: center;
}

.example-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 257px;
  padding: var(--space-20) var(--space-24);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
}

.example-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  min-height: 49px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.example-row--last {
  border-bottom: none;
}

.example-label {
  font-size: 14px;
  color: var(--color-text-primary);
}

.example-value {
  flex-shrink: 0;
  font-size: 14px;
  text-align: right;
  color: var(--color-text-primary);
}

.example-value--positive {
  color: var(--color-positive);
}

.example-value--negative {
  color: var(--color-negative);
}

.outcome-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  width: 100%;
  min-height: 257px;
  padding: 37px var(--space-24);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
}

.outcome-card-header {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.outcome-label {
  font-size: var(--font-size-base);
  text-transform: uppercase;
}

.outcome-label--positive {
  color: var(--color-positive);
}

.outcome-label--negative {
  color: var(--color-negative);
}

.outcome-amount {
  font-size: 40px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.outcome-description {
  font-size: var(--font-size-base);
  line-height: 28px;
  font-weight: var(--font-weight-light);
  color: var(--color-text-primary);
}

@media (min-width: 1024px) {
  .amount-examples-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }

  .example-block {
    flex: 586 586 0;
    max-width: 586px;
  }

  .outcome-card--correct {
    flex: 464 464 0;
    max-width: 464px;
  }

  .outcome-card--incorrect {
    flex: 343 343 0;
    max-width: 343px;
  }
}

/* ==========================================================================
   How it works — benefit section
   ========================================================================== */
.benefit-section {
  padding-block: var(--space-64);
}

.benefit-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
}

.benefit-heading {
  max-width: 755px;
}

.benefit-heading--wide {
  max-width: 960px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  width: 100%;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: var(--space-16) var(--space-20);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  text-align: center;
  align-items: center;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background-color: var(--color-surface);
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.benefit-description {
  font-size: var(--font-size-base);
  line-height: 28px;
  font-weight: var(--font-weight-light);
  color: var(--color-text-primary);
}

@media (min-width: 1024px) {
  .benefit-list {
    flex-direction: row;
    align-items: stretch;
  }

  .benefit-item {
    flex: 1 1 0;
  }
}

/* ==========================================================================
   Digital Options — product hero
   ========================================================================== */
.page-hero-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 18px 4px rgba(194, 184, 255, 0.08);
}

.page-hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Digital Options — way section
   ========================================================================== */
.way-section {
  padding-block: var(--space-64);
}

.way-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
}

.way-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  width: 100%;
}

.way-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: var(--space-24) var(--space-20);
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  text-align: center;
    align-items: center;
}

.way-example {
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-secondary);
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .way-list {
    flex-direction: row;
    align-items: stretch;
  }

  .way-item {
    flex: 1 1 0;
  }
}

/* ==========================================================================
   Digital Options — clear section
   ========================================================================== */
.clear-section {
  padding-block: var(--space-64);
}

.clear-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-64);
}

/* ==========================================================================
   Tap Trading — outcome list
   ========================================================================== */
.outcome-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  width: 100%;
}

@media (min-width: 1024px) {
  .outcome-list {
    flex-direction: row;
    justify-content: center;
  }

  .outcome-list .outcome-card {
    flex: 1 1 0;
    max-width: 464px;
  }
}

/* ==========================================================================
   Language Dropdown (EN / JP)
   ========================================================================== */
.lang-dropdown-wrapper {
  position: relative;
  display: block;
}

.lang-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: 8px 14px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  width: 100%;
  justify-content: center;
}

.lang-dropdown-trigger:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.lang-dropdown-trigger .lang-globe-icon {
  stroke: var(--color-text-secondary);
  flex-shrink: 0;
}

.lang-dropdown-trigger img {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.lang-dropdown-wrapper.is-open .lang-dropdown-trigger img {
  transform: rotate(180deg);
}

.lang-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.lang-dropdown-wrapper.is-open .lang-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lang-dropdown-link:hover,
.lang-dropdown-link.is-active {
  background-color: rgba(101, 88, 217, 0.2);
  color: var(--color-accent-light);
}

.lang-dropdown-link .lang-name {
  color: var(--color-text-secondary);
  font-size: 13px;
  margin-left: auto;
}

/* Mobile drawer specific adjustments */
.nav-drawer-cta .lang-dropdown-wrapper {
  width: 100%;
}

.nav-drawer-cta .lang-dropdown-panel {
  width: 100%;
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background-color: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  border: none;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.nav-drawer-cta .lang-dropdown-wrapper.is-open .lang-dropdown-panel {
  max-height: 120px;
  padding: 6px;
  margin-top: 8px;
  border: 1px solid var(--color-border-subtle);
}

