/* =========================================================
   Design tokens
   ========================================================= */
:root {
  /* Color */
  --color-cream: #f8f1e4;
  --color-cream-deep: #f1e6d0;
  --color-gold: #c8962e;
  --color-gold-light: #e0b760;
  --color-gold-dark: #a87a1f;
  --color-navy: #1b1e4a;
  --color-navy-soft: #2a2d5e;
  --color-nav-bg: #7a6e5e;
  --color-text: #2a2620;
  --color-text-muted: #6b6660;
  --color-white: #ffffff;
  --color-circle-stroke: rgba(200, 150, 46, 0.12);

  /* Status (permitted / prohibited) */
  --color-success: #2a8a4d;
  --color-success-soft: #d6ecd0;
  --color-success-border: #a8d9a4;
  --color-danger: #c83c3c;
  --color-danger-soft: #f7d8d6;
  --color-danger-border: #eaa9a4;

  /* Typography */
  --font-heading: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Wix Madefor Display", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: var(--font-body);

  --fs-eyebrow: 0.75rem;       /* 12 */
  --fs-body-sm: 0.875rem;      /* 14 */
  --fs-body: 1rem;             /* 16 */
  --fs-body-lg: 1.125rem;      /* 18 */
  --fs-h1-mobile: clamp(2.5rem, 9vw, 3.75rem);
  --fs-h1-desktop: clamp(3.75rem, 6vw, 5.5rem);
  --fs-h2: clamp(1.875rem, 4.5vw, 3rem);       /* up to 48 */
  --fs-h3: clamp(1.125rem, 2.2vw, 1.375rem);   /* ~18–22 */
  --fs-display: clamp(1.5rem, 3.2vw, 2rem);    /* highlight values */

  --lh-tight: 1.05;
  --lh-snug: 1.25;
  --lh-normal: 1.5;

  /* Spacing — 4pt scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radii */
  --radius-pill: 999px;
  --radius-card: 1.5rem;
  --radius-sm: 0.5rem;

  /* Layout */
  --container-max: 1600px;
  --container-pad: var(--space-5);

  /* Effects */
  --shadow-card: 0 24px 48px -24px rgba(27, 30, 74, 0.18);
  --transition-fast: 160ms ease;
  --transition: 240ms ease;

  /* Gradients */
  --gradient-card: linear-gradient(135deg, #142450 0%, #0F1A38 100%);
  --gradient-text-gold: linear-gradient(180deg, #FFDE92 0%, #CD8F00 100%);
  --gradient-button-gold: linear-gradient(90deg, #E7C975 0%, #CD9D37 100%);
  --bg-gradient-box: linear-gradient(180deg, #FFF 0%, #FDF6E3 100%);
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-gold-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-3) var(--space-4);
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* =========================================================
   Site header / nav
   ========================================================= */
.site-header {
  background: var(--color-nav-bg);
  color: var(--color-white);
  position: relative;
  z-index: 20;
}

.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3) var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.site-logo img {
  height: 32px;
  width: auto;
}

/* Hamburger */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-right: -10px;
  border-radius: var(--radius-sm);
}
.menu-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition-fast);
}

/* Open state — X icon */
[data-menu-open="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
[data-menu-open="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
[data-menu-open="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav — collapsed by default */
.primary-nav {
  position: absolute;
  inset: 100% 0 auto 0;
  background: var(--color-nav-bg);
  padding: var(--space-4) var(--container-pad) var(--space-6);
  display: none;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.25);
}
[data-menu-open="true"] .primary-nav { display: flex; }

.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.primary-nav__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-3) 0;
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--color-white);
  transition: opacity var(--transition-fast);
}
.primary-nav__link:hover { opacity: 0.8; }

.caret {
  font-size: 0.7em;
  line-height: 1;
  display: inline-block;
  transform: translateY(1px);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--fs-body-sm);
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast),
              color var(--transition-fast), box-shadow var(--transition-fast);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gradient-button-gold);
  color: var(--color-white);
  box-shadow: 0 8px 16px -8px rgba(168, 122, 31, 0.6);
  -webkit-text-fill-color: unset;
}
.btn--primary:hover { background: var(--color-gold-light); }

.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.btn--secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn--login {
  align-self: flex-start;
  padding-inline: var(--space-5);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-12) + 70px) 0 var(--space-16) !important;
  background:
    radial-gradient(ellipse at 50% 0%, var(--color-cream) 0%, var(--color-cream-deep) 100%);
}

.hero__circles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--color-gold);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero__circles circle { stroke: var(--color-circle-stroke); }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  gap: var(--space-10);
}

/* Pill tag */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-pill);
  color: var(--color-gold);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  width: max-content;
  max-width: 100%;
}
.pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

.eyebrow {
  margin: var(--space-5) 0 var(--space-3);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-navy);
}

.hero__headline {
  margin: 0 0 var(--space-5);
  font-size: var(--fs-h1-mobile);
  line-height: var(--lh-tight);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero__headline--gold {
  background: var(--gradient-text-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero__headline--navy { color: var(--color-navy); }

.hero__lede {
  margin: 0 0 var(--space-8);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-snug);
  color: var(--color-text-muted);
  max-width: 40ch;
}
.hero__lede strong {
  color: var(--color-navy);
  font-weight: 700;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero__visual {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.hero__visual img {
  width: 100%;
  height: auto;
}

/* =========================================================
   Section header (eyebrow + title)
   ========================================================= */
.section-eyebrow {
  margin: 0 0 var(--space-4);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  text-align: center;
}
.section-eyebrow--heading {
  font-size: 0.8125rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-title {
  margin: 0;
  color: var(--color-navy);
  font-size: var(--fs-h2);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}
.section-title__accent {
  background: var(--gradient-text-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 700;
  font-family: var(--font-serif);
}

/* =========================================================
   How-to / step grid
   ========================================================= */
.howto {
  padding: var(--space-12) 0;
  background:
    url('/wp-content/themes/wegolden/images/background.png') center / cover no-repeat,
    var(--color-cream);
}

.howto__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.step-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  border-radius: var(--radius-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.step-card__label {
  margin: 0 0 var(--space-2);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.step-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.step-card__icon svg { width: 100%; height: 100%; }
.step-card__icon--lg {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-3);
}

.step-card__title {
  margin: 0 0 var(--space-3);
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
  color: var(--color-navy);
}

.step-card__desc {
  margin: 0;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-normal);
  color: var(--color-text-muted);
}

/* Feature (Step 01) — dark navy gradient fill */
.step-card--feature {
  background: var(--gradient-card, linear-gradient(135deg, #142450 0%, #0F1A38 100%));
  color: var(--color-white);
  padding: var(--space-12);
  min-height: 280px;
}
.step-card--feature .step-card__icon--lg { margin-top: auto; }
.step-card--feature .step-card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  background: var(--gradient-text-gold, linear-gradient(180deg, #FFDE92 0%, #CD8F00 100%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.step-card--feature .step-card__desc {
  color: var(--color-white);
  font-size: var(--fs-body-lg);
  line-height: 1.45;
  max-width: 72%;
}

/* Light cards — vertical cream gradient with hairline gold border */
.step-card--small,
.step-card--wide {
  background: var(--bg-gradient-box);
  border: 1px solid rgba(201, 168, 90, 0.6);
  border-radius: 1rem;
  padding: var(--space-4) var(--space-6);
}

.step-card--small .step-card__top,
.step-card--wide .step-card__top {
  margin-bottom: 6px;
}

.step-card--small .step-card__label,
.step-card--wide .step-card__label {
  font-family: var(--font-heading);
  font-size: var(--fs-body-sm);
  letter-spacing: 0.04em;
  color: #8b6f1f;
  margin-bottom: 0;
}

.step-card--small .step-card__icon,
.step-card--wide .step-card__icon {
  color: var(--color-gold-dark);
}

.step-card--small .step-card__title,
.step-card--wide .step-card__title {
  color: #1e1e1e;
  line-height: 1.32;
}

.step-card--small .step-card__desc,
.step-card--wide .step-card__desc {
  color: #6b5d3f;
}

/* =========================================================
   Program highlights
   ========================================================= */
.highlights {
  margin-top: var(--space-12);
}

.highlights__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.highlights__grid {
  list-style: none;
  margin: 0 0 var(--space-6);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.highlight {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: var(--color-cream);
  border: 1px solid rgba(200, 150, 46, 0.22);
  border-radius: var(--radius-card);
  padding: var(--space-5) var(--space-6);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.highlight__top {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.highlight__icon svg { width: 100%; height: 100%; }

.highlight__value {
  font-family: var(--font-heading);
  font-size: var(--fs-display);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: -0.01em;
}

.highlight__desc {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
}

.coverage-note {
  margin: 0;
  text-align: center;
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
}
.coverage-note strong {
  color: var(--color-gold-dark);
  font-weight: 700;
}

/* =========================================================
   Tiers (deposit staircase)
   ========================================================= */
.tiers {
  position: relative;
  padding: var(--space-12) 0;
  background:
    radial-gradient(
      ellipse 55% 35% at 50% 22%,
      rgba(254, 250, 240, 0.6) 0%,
      rgba(251, 242, 216, 0.55) 55%,
      rgba(242, 228, 188, 0.5) 100%
    ),
    var(--color-cream);
}

.tiers__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.tiers__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.tiers__heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.tiers__eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8b6f1f;
}

.tiers__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.27;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #211161;
}

.tiers__desc {
  margin: 0;
  font-size: var(--fs-body-lg);
  line-height: 1.45;
  color: #8b6f1f;
  max-width: 581px;
}

/* Staircase grid */
.tier-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  border-bottom: 1px solid #cf9b21;
  padding-bottom: var(--space-5);
}

.tier {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  width: 100%;
}

.tier__price {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  width: 140px;
}

.tier__label {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 20px;
  text-transform: uppercase;
  color: #8b6f1f;
}

.tier__amount {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 40px;
  letter-spacing: 0.04em;
  background: var(--gradient-text-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.tier__duration {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 20px;
  color: #6b5d3f;
}

.tier__block {
  position: relative;
  width: 100%;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  background: var(--bg-gradient-box);
  border-left: 1px solid #e8dcbc;
  border-top: 3px solid #e8dcbc;
  border-bottom: 1px solid #e8dcbc;
  overflow: hidden;
}

.tier__numeral {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -1px;
  color: rgba(181, 138, 32, 0.2);
  user-select: none;
}

/* Featured tier (Tier 05) */
.tier--featured { width: 100%; }

.tier__block--featured {
  min-height: 380px;
  padding: 33px 24px 24px;
  background: linear-gradient(180deg, #243363 0%, #1a2548 100%);
  border-left: 1px solid rgba(212, 175, 106, 0.9);
  border-top: 3px solid rgba(212, 175, 106, 0.9);
  color: var(--color-white);
  align-items: start;
  justify-content: flex-start;
}

.tier__numeral--featured {
  position: absolute;
  top: 16px;
  left: 16px;
  right: auto;
  bottom: auto;
  text-align: left;
  font-size: 3rem;
  line-height: 1;
  color: #081642;
  z-index: 0;
}

.tier__featured-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 227px;
  margin: 0 auto;
}

.tier__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 22px;
  height: 32px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    #9c7818 0%,
    #d7a93d 35%,
    #fce9a0 50%,
    #d7a93d 65%,
    #9c7818 100%
  );
  color: #211161;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier__featured-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  text-align: center;
}

.tier__label--featured {
  color: #eab333;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
}

.tier__amount--featured {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1.27;
  letter-spacing: -1px;
  background: var(--gradient-text-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.tier__sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 20px;
  color: #eab333;
}

.tier__divider {
  width: 153px;
  height: 1px;
  margin: 4px 0;
  border: 0;
  background: linear-gradient(
    90deg,
    rgba(234, 179, 51, 0) 0%,
    rgba(234, 179, 51, 0.65) 50%,
    rgba(234, 179, 51, 0) 100%
  );
}

.tier__featured-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.tier__lifetime {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 26px;
  color: #eab333;
}

.tier__access {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 24px;
  color: #eab333;
}

/* Bottom info cards */
.tiers__info {
  list-style: none;
  margin: var(--space-8) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-4);
  background: var(--color-white);
  border: 1px solid rgba(201, 168, 90, 0.6);
  border-radius: 1rem;
}

.info-card__top {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.info-card__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #211161;
}
.info-card__icon svg { width: 100%; height: 100%; }

.info-card__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.44;
  color: #211161;
}

.info-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: #6b5d3f;
}

/* =========================================================
   Accounts (MT5 eligibility)
   ========================================================= */
.accounts {
  padding: var(--space-12) 0 var(--space-16);
  background: var(--color-cream);
}

.accounts__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.accounts__header {
  max-width: 785px;
  margin-left: auto;
  margin-right: auto;
}

.accounts__desc {
  margin: var(--space-4) auto 0;
  font-size: var(--fs-body-lg);
  line-height: var(--lh-snug);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 56ch;
}

.accounts__grid {
  list-style: none;
  margin: 0;
  padding: 0 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.account-card {
  position: relative;
  display: block;
  padding: var(--space-5);
  border-radius: var(--radius-card);
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(78, 64, 165, 0.55) 0%, rgba(78, 64, 165, 0) 60%),
    var(--gradient-card, linear-gradient(135deg, #142450 0%, #0F1A38 100%));
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 200px;
}
.account-card:hover {
  transform: translateY(-2px);
}

.account-card__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 58%;
}

.account-card__heading {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.account-card__brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.account-card__brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(
    104deg,
    #e2d03b 0%,
    #ebe484 33.57%,
    #ebfcb8 51.82%,
    #b7e2a1 66.2%,
    #8fd078 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.account-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1e1e1e;
  background: linear-gradient(
    104deg,
    #e2d03b 0%,
    #ebe484 33.5735%,
    #ebfcb8 51.8216%,
    #b7e2a1 66.1974%,
    #8fd078 100%
  );
}

.account-card__desc {
  margin: 0;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-normal);
  color: rgba(255, 255, 255, 0.78);
  max-width: 32ch;
}

.account-card__chart-wrap {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-35%);
  width: 50%;
  max-width: 280px;
  padding: var(--space-5);
  box-sizing: border-box;
  pointer-events: none;
  z-index: 0;
}

.account-card__chart-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 528px;
  height: 560px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(226, 208, 59, 0.25) 0%,
    rgba(163, 208, 105, 0.08) 60%,
    rgba(163, 208, 105, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.account-card__chart {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  z-index: 1;
}

/* =========================================================
   Section description (reusable supporting paragraph)
   ========================================================= */
.section-description {
  margin: var(--space-4) auto 0;
  font-size: var(--fs-body-lg);
  line-height: var(--lh-snug);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 56ch;
}

/* =========================================================
   Qualify (permitted / prohibited rule lists)
   ========================================================= */
.qualify {
  padding: var(--space-12) 0 var(--space-16);
  background: var(--color-cream);
}

.qualify__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.rule-card {
  background: var(--color-white);
  border: 1px solid;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.rule-card--permitted { border-color: var(--color-success-border); }
.rule-card--prohibited { border-color: var(--color-danger-border); }

.rule-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
}

.rule-card--permitted .rule-card__header {
  background: var(--color-success-soft);
  color: var(--color-success);
}
.rule-card--prohibited .rule-card__header {
  background: var(--color-danger-soft);
  color: var(--color-danger);
}

.rule-card__icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.rule-card__icon svg { width: 100%; height: 100%; }

.rule-card__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.rule-list {
  list-style: none;
  margin: 0;
  padding: var(--space-2) var(--space-6);
}

.rule-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-normal);
  color: var(--color-text);
  border-bottom: 1px solid rgba(27, 30, 74, 0.06);
}
.rule-list__item:last-child { border-bottom: 0; }

.rule-list__icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}
.rule-list__icon svg { width: 100%; height: 100%; }

.rule-card--permitted .rule-list__icon { color: var(--color-success); }
.rule-card--prohibited .rule-list__icon { color: var(--color-danger); }

/* =========================================================
   Get in touch (CTA banner + contact cards)
   ========================================================= */
.getintouch {
  padding: var(--space-10) 0 var(--space-16);
  background: var(--color-cream);
}

.getintouch__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Gold banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  padding: var(--space-10) var(--space-6);
  color: var(--color-white);
  background: url('/wp-content/themes/wegolden/images/background-cta.png') center / cover no-repeat;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 32rem;
}

.cta-banner__title {
  margin: 0 0 var(--space-3);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: var(--lh-tight);
  font-weight: 700;
  color: var(--color-white);
}

.cta-banner__desc {
  margin: 0 0 var(--space-6);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-snug);
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}

.btn--cta {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-body);
}
.btn--cta:hover {
  background: #2a2d8a;
}

.cta-banner__person {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
}

/* Contact cards */
.contact-grid {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-6);
  background: var(--bg-gradient-box);
  border: 1px solid rgba(200, 150, 46, 0.22);
  border-radius: var(--radius-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.contact-card__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}
.contact-card__icon svg { width: 100%; height: 100%; }

.contact-card__title {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0;
}

.contact-card__detail {
  margin: 0;
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-snug);
}

/* =========================================================
   Breakpoint: ≥768px — tablet
   ========================================================= */
@media (min-width: 768px) {
  :root {
    --container-pad: var(--space-8);
  }

  .site-header__inner {
    padding-block: var(--space-4);
  }

  .menu-toggle { display: none; }

  .primary-nav {
    position: static;
    inset: auto;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
    box-shadow: none;
  }

  .primary-nav__list {
    flex-direction: row;
    align-items: center;
    gap: var(--space-5);
  }

  .primary-nav__link {
    padding: var(--space-2) 0;
    font-size: var(--fs-body-sm);
  }

  .btn--login { align-self: center; }

  .hero {
    padding: calc(var(--space-16) + 70px) 0 var(--space-20) !important;
  }

  .howto { padding: var(--space-16) 0; }
  

  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .accounts { padding: var(--space-16) 0 var(--space-20); }

  .account-card {
    padding: var(--space-6) var(--space-8);
    min-height: 220px;
  }
  .account-card__content { max-width: 55%; }
  .account-card__chart-wrap {
    right: -6%;
    width: 60%;
    max-width: 360px;
  }

  .qualify { padding: var(--space-16) 0 var(--space-20); }
  .rule-card__header { padding: var(--space-5) var(--space-8); }
  .rule-list { padding: var(--space-2) var(--space-8); }

  .getintouch { padding: var(--space-12) 0 var(--space-20); }

  .cta-banner {
    padding: var(--space-12) var(--space-10);
    min-height: 340px;
    display: flex;
    align-items: center;
  }
  .cta-banner__person {
    display: block;
    height: 110%;
    max-width: 45%;
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-8);
  }

  .tiers { padding: var(--space-16) 0; }

  .tiers__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-8);
  }

  .tiers__info {
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
  }
}

/* =========================================================
   Breakpoint: ≥1024px — desktop
   ========================================================= */
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: var(--space-16);
  }

  .hero__content {
    max-width: 540px;
  }

  .hero__headline {
    font-size: var(--fs-h1-desktop);
  }

  .hero {
    padding: calc(var(--space-20) + 85px) 0 var(--space-24);
  }

  /* Step grid — asymmetric desktop layout
     [01 01 | 02 | 03]
     [01 01 | 04 | 04]
     Exact Figma height: 356px (167 + 20 gap + 169) */
  .step-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 167px 169px;
    gap: 20px;
    height: 356px;
  }
  .step-card--feature {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    min-height: 0;
  }
  .step-card--pos-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
  .step-card--pos-3 { grid-column: 4 / 5; grid-row: 1 / 2; }
  .step-card--pos-4 { grid-column: 3 / 5; grid-row: 2 / 3; }

  .highlights__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .accounts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  .account-card { min-height: 240px; }
  .account-card__content { max-width: 52%; }
  .account-card__chart-wrap {
    right: -32px;
    width: 62%;
    max-width: 400px;
  }

  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .cta-banner {
    padding: var(--space-16) var(--space-12);
    min-height: 400px;
  }
  .cta-banner__title { font-size: clamp(2rem, 4vw, 2.75rem); }
  .cta-banner__desc { font-size: var(--fs-body); }
  .cta-banner__content { max-width: 36rem; }

  /* Tiers — full ascending staircase */
  .tiers { padding: 64px 0; }

  .tier-grid {
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
    padding-bottom: 0;
  }

  .tier {
    flex: 1 1 0;
    min-width: 0;
    gap: 26px;
  }

  /* Reserve space for tier__price floating above each non-featured block */
  .tier:not(.tier--featured) { padding-top: 106px; }

  .tier__block {
    min-height: 110px;
    overflow: visible;
    border-bottom: 0;
  }
  .tier--2 .tier__block { min-height: 191px; }
  .tier--3 .tier__block { min-height: 266px; }
  .tier--4 .tier__block { min-height: 347px; }

  .tier--featured .tier__block--featured {
    min-height: 432px;
    padding-top: 33px;
    overflow: hidden;
  }

  /* Lift tier__price out of the block visually to recreate the staircase look */
  .tier:not(.tier--featured) .tier__price {
    position: absolute;
    bottom: calc(100% + 26px);
    left: 50%;
    transform: translateX(-50%);
  }

  .tier__numeral {
    position: static;
    top: auto;
    left: auto;
  }
  .tier--1 .tier__numeral { font-size: 3rem; }
  .tier--2 .tier__numeral { font-size: 4rem; }
  .tier--3 .tier__numeral { font-size: 6rem; }
  .tier--4 .tier__numeral { font-size: 8rem; }
  .tier__numeral--featured {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 26px;
    left: 0;
    text-align: center;
    font-size: 8rem;
  }

  .tier__amount--featured { font-size: 3rem; line-height: 1.27; }
}

.terms-box{
  width:100%;
  background:#11224d;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.terms-header{
  padding:18px 24px;
  background:#162d63;
  border-bottom:1px solid rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}

.terms-header h2{
  color:#ffcc33;
  font-size:18px;
  font-weight:600;
}

.arrow{
  color:#ffcc33;
  font-size:18px;
  transition:0.3s;
}

.terms-content{
  padding:25px 30px;
  line-height:1.8;
}

.terms-content ol{
  padding-left:20px;
}

.terms-content li{
  margin-bottom:18px;
  color:#fff;
  font-size:14px;
}

.terms-content li::marker{
  color:#ffcc33;
  font-weight:bold;
}

.sub-list{
  margin-top:10px;
  padding-left:30px;
  list-style:disc;

}

.sub-list li{
      margin-bottom:8px;
      color:#fff;
    position: relative;
      z-index: 1;
}

.sub-list li::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    top: 9px;
    left: -20px;
    z-index: -1;
    background: #fff;
}

.footer-note{
  margin-top:25px;
  font-size:12px;
  color:#7f90c8;
  font-style:italic;
}

.collapsed .terms-content{
  display:none;
}

.collapsed .arrow{
  transform:rotate(-90deg);
  transition: 0.3s ease-in-out;
}

.accordion-button.open .arrow {
    transform: rotate(180deg);
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
