/* ============================================================
   FutureU — Global Stylesheet
   style.css
   Linked by: index.html, survey.html, results.html,
              Login.html, dashboard.html, privacy.html, terms.html
   ============================================================ */

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

/* ── CSS Variables (brand colours + dark mode) ──────────────── */
:root {
  /* Brand */
  --brand:          #1D9E75;
  --brand-light:    #E1F5EE;
  --brand-dark:     #0F6E56;
  --brand-darker:   #085041;

  /* Backgrounds */
  --bg-primary:     #ffffff;
  --bg-secondary:   #f5f4ef;
  --bg-tertiary:    #eeedea;

  /* Text */
  --text-primary:   #1a1a18;
  --text-secondary: #5f5e5a;
  --text-tertiary:  #9c9a92;

  /* Borders */
  --border-subtle:  rgba(0, 0, 0, 0.12);
  --border-mid:     rgba(0, 0, 0, 0.22);
  --border-strong:  rgba(0, 0, 0, 0.32);

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-pill: 999px;

  /* Font */
  --font: system-ui, -apple-system, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary:     #1c1c1a;
    --bg-secondary:   #252522;
    --bg-tertiary:    #2c2c29;

    --text-primary:   #e8e6de;
    --text-secondary: #9c9a92;
    --text-tertiary:  #6b6a64;

    --border-subtle:  rgba(255, 255, 255, 0.10);
    --border-mid:     rgba(255, 255, 255, 0.18);
    --border-strong:  rgba(255, 255, 255, 0.28);
  }
}

/* ── Base ───────────────────────────────────────────────────── */
body {
  font-family: var(--font);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-wrapper {
  background: var(--bg-primary);
  max-width: 1100px;
  margin: 0 auto;
  min-height: 100vh;
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 0.5px solid var(--border-subtle);
  background: var(--bg-primary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.nav-logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.nav-logo span {
  color: var(--brand);
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

/* ── ALL nav links green ────────────────────────────────────── */
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-md);
  transition: background 0.15s, color 0.15s;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.nav-link:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
  text-decoration: none;
}

.nav-link.active {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.15s;
  margin-left: 4px;
}

.nav-cta:hover {
  opacity: 0.88;
  text-decoration: none;
}

/* Mobile hamburger (hidden by default) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  font-size: 13px;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  border: none;
  transition: opacity 0.18s, transform 0.18s, box-shadow 0.18s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 158, 117, 0.35);
  text-decoration: none;
}

.btn-secondary {
  font-size: 13px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  border: 0.5px solid var(--border-mid);
  transition: border-color 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  display: inline-block;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.btn-blue:hover {
  box-shadow: 0 6px 20px rgba(24, 95, 165, 0.38) !important;
}

/* ── BADGES / CHIPS ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 6px;
}

.section-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 20px;
}

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.card-secondary {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 16px;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 56px 24px 48px;
  text-align: center;
  border-bottom: 0.5px solid var(--border-subtle);
}

.hero-h1 {
  font-size: 36px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.hero-h1 span {
  color: var(--brand);
}

.hero-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 14px;
}

/* ── SOCIAL PROOF BAR ───────────────────────────────────────── */
.social-proof {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 20px 24px;
  border-bottom: 0.5px solid var(--border-subtle);
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-num {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
}

.proof-lbl {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* ── TOOLS SECTION ──────────────────────────────────────────── */
.tools-section {
  padding: 36px 24px;
  border-bottom: 0.5px solid var(--border-subtle);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

.tool-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 0.5px solid transparent;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}

@media (hover: hover) {
  .tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
    border-color: var(--border-subtle);
  }
}

.tool-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.tool-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.tool-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.tool-tag {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: var(--radius-md);
  margin-top: 10px;
  font-weight: 500;
}

.tool-tag-live {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.tool-tag-soon {
  background: #EEEDFE;
  color: #3C3489;
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-section {
  padding: 36px 24px;
  border-bottom: 0.5px solid var(--border-subtle);
}

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

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border-subtle);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.step-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── RESULT PREVIEW ─────────────────────────────────────────── */
.result-preview {
  padding: 24px;
  border-bottom: 0.5px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.result-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.result-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-card {
  background: var(--bg-primary);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.result-rank {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-rank-1 { background: #E1F5EE; color: #0F6E56; }
.result-rank-2 { background: #E6F1FB; color: #185FA5; }
.result-rank-locked { background: var(--bg-secondary); color: var(--text-tertiary); }

.result-uni {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.result-prog {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.result-reason {
  font-size: 11px;
  color: var(--text-tertiary);
  line-height: 1.45;
}

.result-card-locked {
  opacity: 0.5;
}

.result-card-locked .result-uni,
.result-card-locked .result-prog,
.result-card-locked .result-reason {
  filter: blur(4px);
  user-select: none;
}

.match-pill {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: var(--radius-md);
  font-weight: 500;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.match-pill-1 { background: #E1F5EE; color: #0F6E56; }
.match-pill-2 { background: #E6F1FB; color: #185FA5; }
.match-pill-locked { background: var(--bg-secondary); color: var(--text-tertiary); }

.unlock-cta {
  text-align: center;
  margin-top: 14px;
}

.unlock-note {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-section {
  padding: 36px 24px;
  border-bottom: 0.5px solid var(--border-subtle);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.price-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 0.5px solid var(--border-subtle);
}

.price-card.featured {
  border: 2px solid var(--brand);
  background: var(--bg-primary);
}

.price-popular {
  font-size: 10px;
  font-weight: 500;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.price-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-amount {
  font-size: 26px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-tertiary);
}

.price-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.55;
}

.price-feature {
  font-size: 12px;
  color: var(--text-secondary);
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check::after {
  content: '';
  display: block;
  width: 3px;
  height: 6px;
  border: 1.5px solid var(--brand-dark);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.price-btn {
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}

.price-btn:hover {
  opacity: 0.88;
}

.price-btn-free {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 0.5px solid var(--border-mid);
}

.price-btn-paid {
  background: var(--brand);
  color: #fff;
}

/* ── REVEAL SECTION ─────────────────────────────────────────── */
.reveal-section {
  background: var(--bg-secondary);
  padding: 110px 24px;
  text-align: center;
  border-bottom: 0.5px solid var(--border-subtle);
  overflow: hidden;
}

.reveal-inner {
  max-width: 820px;
  margin: 0 auto;
}

.reveal-line {
  font-size: 76px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 3px;
}

.reveal-line-1 {
  color: var(--text-primary);
  margin-bottom: 4px;
}

.reveal-line-2 {
  color: var(--brand);
}

.reveal-char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.reveal-section.in-view .reveal-char {
  opacity: 1;
}

.reveal-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 32px;
  opacity: 0;
  transition: opacity 0.8s ease;
  font-weight: 400;
}

.reveal-section.in-view .reveal-sub {
  opacity: 1;
}

@media (max-width: 600px) {
  .reveal-section {
    padding: 80px 24px;
  }
  .reveal-line {
    font-size: 46px;
    letter-spacing: -1.5px;
  }
  .reveal-sub {
    font-size: 14px;
    margin-top: 24px;
  }
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.trust-section {
  padding: 36px 24px;
  border-bottom: 0.5px solid var(--border-subtle);
}

.quote-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin-bottom: 10px;
}

.quote-card:last-child {
  margin-bottom: 0;
}

.quote-text {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 10px;
}

.quote-author {
  font-size: 11px;
  color: var(--text-tertiary);
}

/* ── UNLOCK TEASER ──────────────────────────────────────────── */
.unlock-teaser {
  padding: 48px 24px;
  border-bottom: 0.5px solid var(--border-subtle);
  text-align: center;
}

.unlock-teaser-h {
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.unlock-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: left;
  padding: 16px 8px 24px;
}

.unlock-teaser-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  transition: transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.26s ease, border-color 0.26s ease;
}

@media (hover: hover) {
  .unlock-teaser-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
    z-index: 2;
  }
}

.unlock-teaser-featured {
  border: 1.5px solid var(--brand);
  background: var(--bg-primary);
}

/* ── Non-pro cards — subtle green shimmer border on hover ────── */
.unlock-teaser-card:not(.unlock-teaser-featured)::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, #1D9E75, #0a4f39, #2DD4A0, #185FA5, #1D9E75);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: hpGreenFlow 5s ease infinite paused;
}

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

@media (hover: hover) {
  .unlock-teaser-card:not(.unlock-teaser-featured):hover::before {
    opacity: 0.55;
    animation-play-state: running;
  }

  .unlock-teaser-card:not(.unlock-teaser-featured):hover .unlock-teaser-name,
  .unlock-teaser-card:not(.unlock-teaser-featured):hover .unlock-teaser-price,
  .unlock-teaser-card:not(.unlock-teaser-featured):hover .unlock-teaser-price span,
  .unlock-teaser-card:not(.unlock-teaser-featured):hover .unlock-teaser-desc,
  .unlock-teaser-card:not(.unlock-teaser-featured):hover .price-feature {
    color: rgba(255, 255, 255, 0.92) !important;
  }
}

/* ── Pro card — animated purple gradient border on hover ─────── */
.unlock-teaser-featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, #8B5CF6, #EC4899, #7C3AED, #A78BFA, #8B5CF6);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: unlockProGradient 3s ease infinite paused;
}

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

@media (hover: hover) {
  .unlock-teaser-featured:hover {
    border-color: transparent;
    box-shadow: 0 22px 56px rgba(139, 92, 246, 0.35);
  }

  .unlock-teaser-featured:hover::after {
    opacity: 1;
    animation-play-state: running;
  }

  .unlock-teaser-featured:hover .unlock-teaser-name,
  .unlock-teaser-featured:hover .unlock-teaser-price,
  .unlock-teaser-featured:hover .unlock-teaser-price span,
  .unlock-teaser-featured:hover .unlock-teaser-desc,
  .unlock-teaser-featured:hover .unlock-teaser-badge,
  .unlock-teaser-featured:hover .price-feature,
  .unlock-teaser-featured:hover #hp-price-note,
  .unlock-teaser-featured:hover #hp-label-monthly,
  .unlock-teaser-featured:hover #hp-label-annual {
    color: rgba(255, 255, 255, 0.92) !important;
  }
}

.unlock-teaser-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.unlock-teaser-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.unlock-teaser-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.unlock-teaser-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-tertiary);
}

.unlock-teaser-desc {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.unlock-teaser-card-btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--border-mid);
  background: var(--bg-primary);
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 16px;
  transition: opacity 0.15s, border-color 0.15s;
}

.unlock-teaser-card-btn:hover {
  opacity: 0.85;
  text-decoration: none;
}

.unlock-teaser-card-btn-pro {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.check-pro {
  background: #E1F5EE;
}

.check-pro::after {
  border-color: var(--brand-dark);
}

.unlock-teaser-btn {
  font-size: 14px;
  padding: 12px 32px;
}

.unlock-teaser-anchor {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 12px;
  font-style: italic;
}

@media (max-width: 600px) {
  .unlock-teaser-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FOOTER CTA ─────────────────────────────────────────────── */
.footer-cta {
  padding: 48px 24px;
  text-align: center;
}

.footer-h {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.footer-note {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 10px;
}

/* ── Email copied toast ─────────────────────────────────────── */
.email-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 99px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  z-index: 99999;
  white-space: nowrap;
}

.email-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── SITE FOOTER ────────────────────────────────────────────── */
.site-footer {
  padding: 18px 24px;
  border-top: 0.5px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-logo {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
}

.footer-logo span {
  color: var(--brand);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 11px;
  color: var(--brand);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover {
  color: var(--brand-dark);
}

/* ── FORMS (used on survey + Login) ─────────────────────────── */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.12);
}

/* ── UTILITY CLASSES ────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--text-secondary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ── REPORT TOAST ───────────────────────────────────────────── */
.report-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--bg-primary);
  border: 1px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  max-width: 340px;
  animation: toastIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.report-toast-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.report-toast-body { flex: 1; min-width: 0; }

.report-toast-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.report-toast-sub {
  font-size: 11px;
  color: var(--text-secondary);
}

.report-toast-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.report-toast-link:hover { text-decoration: underline; }

.report-toast-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  flex-shrink: 0;
}

.report-toast-close:hover { color: var(--text-primary); }

@media (max-width: 600px) {
  .report-toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

/* ── MOBILE RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 600px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 20px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 10px 0 6px;
    gap: 2px;
    border-top: 0.5px solid var(--border-subtle);
    margin-top: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 10px 12px;
    font-size: 14px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin: 6px 0 0;
    padding: 11px;
  }

  .hero-h1 {
    font-size: 26px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .social-proof {
    gap: 20px;
  }

  /* ── Layout & spacing ─── */
  .container { padding: 0 16px; }
  .hero { padding: 36px 0 40px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { width: 100%; text-align: center; justify-content: center; }
  .section-title { font-size: 19px; }

  /* ── Pricing page ─── */
  .price-card { padding: 24px 20px; }

  /* ── Footer ─── */
  .site-footer { flex-direction: column; gap: 14px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 10px 18px; }

  /* ── Proof numbers ─── */
  .proof-num { font-size: 24px; }
}

/* ══════════════════════════════════════════════
   POLISH ADDITIONS — engagement & trust layer
   ══════════════════════════════════════════════ */

.hero {
  position: relative;
}

.hero > * { position: relative; z-index: 1; }

/* ── Canada badge ────────────────────────────── */
.canada-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 10px;
  padding: 4px 12px;
  background: var(--bg-secondary);
  border: 0.5px solid var(--border-subtle);
  border-radius: 99px;
}

/* ── Result card rank accents ────────────────── */
.match-card[data-rank="1"],
.saved-result-card:first-child:not(.locked) {
  border-left: 3px solid #D4AF37;
}
.match-card[data-rank="2"],
.saved-result-card:nth-child(2):not(.locked) {
  border-left: 3px solid #A8A9AD;
}
.match-card[data-rank="3"],
.saved-result-card:nth-child(3):not(.locked) {
  border-left: 3px solid #CD7F32;
}

/* ── "How did we do" rating widget ──────────── */
.feedback-widget {
  margin: 32px 0 8px;
  padding: 20px 24px;
  background: var(--bg-secondary);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
}

.feedback-widget-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feedback-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.feedback-star {
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.1s ease, filter 0.1s ease;
  filter: grayscale(1) opacity(0.35);
  user-select: none;
  line-height: 1;
}

.feedback-star:hover,
.feedback-star.active {
  filter: grayscale(0) opacity(1);
  transform: scale(1.15);
}

.feedback-thanks {
  font-size: 12px;
  color: var(--brand);
  font-weight: 500;
  display: none;
}

/* ── Milestone message in survey ────────────── */
.step-milestone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-secondary);
  border: 0.5px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--text-secondary);
  font-style: italic;
  animation: milestoneIn 0.35s cubic-bezier(.4,0,.2,1) both;
}

@keyframes milestoneIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Career mood board ───────────────────────── */
.mood-board {
  background: linear-gradient(135deg, #E6F1FB 0%, #EEF5FF 100%);
  border: 0.5px solid rgba(24,95,165,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 20px;
}

.mood-board-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0C447C;
  margin-bottom: 8px;
}

.mood-board-headline {
  font-size: 16px;
  font-weight: 600;
  color: #0C447C;
  line-height: 1.45;
  margin-bottom: 12px;
}

.mood-board-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mood-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(24,95,165,0.1);
  color: #0C447C;
  border: 0.5px solid rgba(24,95,165,0.2);
}
