/* ============================================================
   SWATrade | JD Sokol
   style.css | IGNIS-C V1.4
   ============================================================ */

/* 1. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* 2. DESIGN SYSTEM
   ============================================================ */
:root {
  --bg:           #060D1A;
  --bg-2:         #0C1828;
  --bg-3:         #122036;
  --accent:       #C4933A;
  --accent-glow:  rgba(196, 147, 58, 0.08);
  --blue:         #1A4FA0;
  --blue-hover:   #153E84;
  --text:         #F2F0ED;
  --text-muted:   #8A8880;
  --text-subtle:  #4A5060;
  --border:       #162030;
  --font-d:       'Russo One', sans-serif;
  --font-b:       'Inter', sans-serif;
  --max-w:        1100px;
}

/* 3. BASE
   ============================================================ */
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* 4. UTILITIES
   ============================================================ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.sec { padding: 100px 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow-rule {
  width: 32px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* 5. TYPOGRAPHY
   ============================================================ */
.h1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  color: var(--text);
}
.h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  color: var(--text);
}
.h3 {
  font-family: var(--font-d);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  color: var(--text);
}
.prose p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.prose p:last-child { margin-bottom: 0; }
.prose p.highlight {
  color: var(--text);
  font-weight: 500;
}

/* 6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: rgba(196,147,58,0.08);
}
.btn-arrow::after { content: ' →'; }

/* 7. NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  padding: 0 32px;
}
.nav.scrolled {
  background: rgba(6,13,26,0.97);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo img { height: 42px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--text); }

/* 8. HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  background: linear-gradient(160deg, #060D1A 0%, #081020 50%, #0A1428 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%; right: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,147,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero__eyebrow-rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero__eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__headline {
  font-family: var(--font-d);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--text);
}
.hero__headline span {
  display: block;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 6px;
}
.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 48px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__filter {
  font-size: 13px;
  color: var(--text-subtle);
  font-style: italic;
}

/* 9. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: nowrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-bar__num {
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--accent);
}
.trust-bar__label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-bar__div {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* 10. PROBLEM
   ============================================================ */
.problem { background: var(--bg); border-top: 1px solid var(--border); }
.problem__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem__quote {
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  background: rgba(196,147,58,0.05);
  margin-top: 40px;
}
.problem__quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}
.problem__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.problem__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.problem__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.problem__list li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* 11. SOLUTION
   ============================================================ */
.solution { background: var(--bg-3); border-top: 1px solid var(--border); }
.solution__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.solution__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}
.solution__step {
  background: var(--bg-2);
  padding: 48px 36px;
  position: relative;
}
.solution__step-num {
  font-family: var(--font-d);
  font-size: 80px;
  color: rgba(196,147,58,0.10);
  position: absolute;
  top: 24px; right: 28px;
  line-height: 1;
  user-select: none;
}
.solution__step-rule {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}
.solution__step-title {
  font-family: var(--font-d);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 16px;
}
.solution__step-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.solution__promise {
  margin-top: 48px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(26,79,160,0.10), rgba(26,79,160,0.04));
  border: 1px solid rgba(196,147,58,0.25);
}
.solution__promise p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.solution__promise p + p { margin-top: 16px; }
.solution__promise strong { color: var(--text); font-weight: 500; }
.solution__promise em {
  font-size: 13px;
  color: var(--text-subtle);
  font-style: italic;
}

/* 12. PROOF
   ============================================================ */
.proof { background: var(--bg-3); border-top: 1px solid var(--border); }
.proof__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.proof__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.6fr);
  gap: 80px;
  align-items: start;
}
.proof__photo-wrap {
  position: relative;
  margin-bottom: 24px;
}
.proof__photo-border {
  position: absolute;
  top: -8px; left: -8px;
  right: -8px; bottom: -8px;
  border: 2px solid var(--accent);
  z-index: 0;
}
.proof__photo-box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.proof__photo-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: grayscale(15%);
}
.proof__nameplate {
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.proof__nameplate-name {
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 4px;
}
.proof__nameplate-title {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.proof__award {
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.proof__award img {
  width: 56px; height: 56px;
  object-fit: contain;
}
.proof__award-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.proof__award-year {
  font-size: 12px;
  color: var(--text-muted);
}
.proof__bio h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.1;
}
.proof__creds { margin-top: 48px; }
.proof__creds-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 20px;
}
.proof__creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.proof__cred {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.proof__cred-dash {
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.proof__cred-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* 13. THREE DOORS
   ============================================================ */
.doors { background: var(--bg-2); border-top: 1px solid var(--border); }
.doors__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.doors__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.doors__header .eyebrow { justify-content: center; }
.doors__header h2 { margin-bottom: 20px; }
.doors__header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}
.doors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.door {
  background: var(--bg-2);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  transition: background 0.2s;
}
.door:hover { background: var(--bg-3); }
.door--primary {
  background: rgba(26,79,160,0.10);
  border-top-color: var(--accent);
}
.door--primary:hover { background: rgba(26,79,160,0.15); }
.door__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 12px;
}
.door--primary .door__label { color: var(--accent); }
.door__title {
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}
.door__body {
  font-size: 15px;
  color: #A8A39C;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 40px;
}
.door__refer {
  font-size: 13px;
  color: var(--text-subtle);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* 14. CLOSING
   ============================================================ */
.closing {
  padding: 120px 0;
  background: linear-gradient(160deg, #060D1A 0%, #08101E 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(196,147,58,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.closing__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.closing__headline {
  font-family: var(--font-d);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.closing__sub {
  font-size: 22px;
  color: var(--accent);
  font-family: var(--font-d);
  margin-bottom: 24px;
}
.closing__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}
.closing__filter {
  font-size: 13px;
  color: var(--text-subtle);
  font-style: italic;
  margin-top: 24px;
  letter-spacing: 0.02em;
}
.closing__latin {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.closing__latin-main {
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.closing__latin-trans {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* 15. FOOTER
   ============================================================ */
.footer {
  background: #040A14;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__brand img { height: 38px; width: auto; margin-bottom: 12px; }
.footer__brand p {
  font-size: 13px;
  color: var(--text-subtle);
  max-width: 200px;
  line-height: 1.6;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.footer__nav a {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--text); }
.footer__disclaimer {
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  margin-bottom: 36px;
}
.footer__disclaimer p {
  font-size: 11px;
  color: var(--text-subtle);
  line-height: 1.7;
  font-style: italic;
}
.footer__disclaimer strong {
  color: var(--text-muted);
  font-style: normal;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 12px;
  color: var(--text-subtle);
}

/* 16. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .problem__inner { grid-template-columns: 1fr; gap: 48px; }
  .solution__steps { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr; gap: 48px; }
  .doors__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { align-items: flex-start; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .sec { padding: 72px 0; }
  .hero { padding: 100px 0 72px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .trust-bar__inner { gap: 24px; }
  .trust-bar__div { display: none; }
  .door { padding: 40px 28px; }
}
@media (max-width: 480px) {
  .wrap,
  .hero__inner,
  .solution__inner,
  .proof__inner,
  .doors__inner,
  .closing__inner,
  .footer__inner,
  .problem__inner,
  .trust-bar__inner { padding: 0 20px; }
}

/* ============================================================
   TESTIMONIALS LIST — tlist
   ============================================================ */
.tlist { padding: 80px 0; border-top: 1px solid var(--border); }
.tlist__header { text-align: center; margin-bottom: 56px; }
.tlist__eyebrow { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; }
.tlist__eyebrow-rule { width: 32px; height: 2px; background: var(--accent); flex-shrink: 0; }
.tlist__eyebrow-text { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.tlist h2 { font-family: var(--font-d); font-size: clamp(22px, 3vw, 32px); color: var(--text); }

.tlist__grid { display: flex; flex-direction: column; gap: 0; max-width: 800px; }

.tlist__item {
  padding: 36px 0 36px 28px;
  border-left: 3px solid var(--accent);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.tlist__item:last-of-type { border-bottom: none; }

.tlist__quote {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 14px;
}
.tlist__cite {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.tlist__disclaimer {
  font-size: 11px;
  color: var(--text-subtle);
  margin-top: 48px;
  line-height: 1.7;
  max-width: 600px;
}

/* Footer motto line */
.footer__motto {
  text-align: center;
  padding: 20px 0 16px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}
.footer__motto p {
  font-family: var(--font-d);
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.footer__cross {
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

/* Testimonials standalone page hero */
.tlist-hero { padding: 100px 0 60px; }
.tlist-hero h1 { font-family: var(--font-d); font-size: clamp(28px, 4vw, 48px); color: var(--text); margin-bottom: 14px; line-height: 1.1; }
.tlist-hero p { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 600px; }
