/* ===== EARNINGS CALCULATOR ===== */
.calc {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  background: var(--navy-900); border-radius: 24px; overflow: hidden;
  box-shadow: 0 50px 100px -50px oklch(0 0 0 / 0.5);
}
.calc-left { padding: clamp(30px, 4vw, 52px); color: var(--on-navy); }
.calc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.calc-label { font-size: 14px; font-weight: 600; color: var(--on-navy-soft); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); font-size: 12px; }
.calc-aum { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -0.03em; color: var(--accent); }

.calc-slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px;
  background: linear-gradient(90deg, var(--accent) var(--pct), var(--navy-700) var(--pct));
  outline: none; cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); cursor: grab; box-shadow: 0 0 0 6px var(--accent-glow), 0 4px 12px oklch(0 0 0 / 0.4);
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.12); }
.calc-slider::-moz-range-thumb { width: 26px; height: 26px; border: none; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px var(--accent-glow); }
.calc-scale { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--on-navy-faint); margin-top: 12px; }
.calc-presets { display: flex; gap: 10px; margin-top: 26px; }
.preset {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--on-navy-soft);
  background: transparent; box-shadow: inset 0 0 0 1px var(--navy-line); border: none; cursor: pointer;
  border-radius: 100px; padding: 9px 18px; transition: all 0.2s;
}
.preset:hover { color: var(--on-navy); box-shadow: inset 0 0 0 1px var(--on-navy-faint); }
.preset.on { background: var(--accent); color: var(--navy-950); box-shadow: none; }
.calc-assume {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 30px; padding-top: 24px;
  border-top: 1px solid var(--navy-line); font-size: 13.5px; color: var(--on-navy-faint);
}
.calc-assume b { color: var(--on-navy); font-family: var(--font-display); }
.calc-assume .sep { width: 1px; height: 14px; background: var(--navy-line); }

.calc-right {
  padding: clamp(30px, 4vw, 52px); background: var(--navy-850);
  box-shadow: inset 1px 0 0 var(--navy-line);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
.calc-out-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-navy-faint); }
.calc-out-big { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5.4vw, 60px); letter-spacing: -0.035em; color: var(--on-navy); margin-top: 10px; line-height: 1; }
.calc-out-big .per { font-size: 0.42em; color: var(--on-navy-faint); font-weight: 400; margin-left: 4px; }
.calc-out-year { font-size: 15px; color: var(--accent); margin-top: 10px; font-weight: 600; }
.calc-bar { height: 6px; border-radius: 100px; background: var(--navy-700); width: 100%; margin: 22px 0; overflow: hidden; }
.calc-bar-fill { height: 100%; background: var(--accent); border-radius: 100px; transition: width 0.5s var(--ease); }
.calc-note { font-size: 14px; line-height: 1.55; color: var(--on-navy-soft); margin-bottom: 24px; }
.calc-note strong { color: var(--on-navy); }
@media (max-width: 820px) {
  .calc { grid-template-columns: 1fr; }
  .calc-right { box-shadow: inset 0 1px 0 var(--navy-line); }
}

/* ===== WHO IT'S FOR ===== */
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.who-card {
  display: flex; align-items: center; gap: 22px; padding: 30px 32px;
  background: var(--navy-900); border-radius: 16px; box-shadow: inset 0 0 0 1px var(--navy-line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.who-card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--accent); }
.who-glyph { font-size: 26px; color: var(--accent); flex: none; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; background: oklch(0.84 0.165 152 / 0.1); }
.who-t { font-size: 21px; color: var(--on-navy); }
.who-d { font-size: 14px; color: var(--on-navy-faint); margin-top: 4px; }
.who-foot { text-align: center; max-width: 50ch; margin: 48px auto 0; font-size: clamp(18px, 2vw, 24px); line-height: 1.5; color: var(--on-navy-soft); font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; }
.who-foot strong { color: var(--accent); font-weight: 700; }
@media (max-width: 700px) { .who-grid { grid-template-columns: 1fr; } }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-h2 { font-size: clamp(30px, 4.4vw, 52px); margin-top: 22px; }
.about-p { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.65; color: var(--ink-soft); margin-top: 24px; max-width: 48ch; }
.about-p b { color: var(--ink); }
.about-cred { display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap; }
.acv { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -0.03em; color: var(--accent-deep); }
.acl { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.about-team { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.team-slot {}
.team-ph { aspect-ratio: 4/5; margin-bottom: 14px; }
.team-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); }
.team-role { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.faq-head { position: sticky; top: 110px; }
.faq-h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 22px; }
.faq-sub { font-size: 16px; color: var(--ink-soft); margin-top: 18px; line-height: 1.6; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(17px, 1.8vw, 21px);
  color: var(--ink); letter-spacing: -0.01em; transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-ink); }
.faq-icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-icon span { position: absolute; background: var(--accent-deep); border-radius: 2px; transition: transform 0.35s var(--ease); }
.faq-icon span:first-child { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon span:last-child { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item.open .faq-icon span:last-child { transform: scaleY(0); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-a { font-size: 16px; line-height: 1.65; color: var(--ink-soft); max-width: 60ch; }
.faq-item.open .faq-a { padding-bottom: 28px; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } .faq-head { position: static; } }

/* ===== FINAL CTA ===== */
.final { text-align: center; overflow: hidden; }
.final-wrap { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.final-h2 { font-size: clamp(38px, 6vw, 76px); margin-top: 24px; }
.final-hl { color: var(--accent); }
.final-p { font-size: clamp(17px, 1.7vw, 21px); line-height: 1.6; color: var(--on-navy-soft); margin-top: 26px; max-width: 56ch; }
.final-cta { margin-top: 40px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-950); color: var(--on-navy-soft); padding: clamp(56px, 7vw, 88px) 0 40px; box-shadow: inset 0 1px 0 var(--navy-line); }
.footer-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid var(--navy-line); }
.footer-tag { font-size: 14.5px; color: var(--on-navy-faint); margin-top: 18px; max-width: 30ch; line-height: 1.5; }
.footer-nav { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-h { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-navy-faint); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--on-navy-soft); text-decoration: none; font-size: 14.5px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-disc { margin: 32px 0; max-width: none; }
.footer-base { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--on-navy-faint); font-family: var(--font-mono); }
.footer-base-links { display: flex; gap: 24px; }
.footer-base-links a { color: var(--on-navy-faint); text-decoration: none; }
.footer-base-links a:hover { color: var(--accent); }
