/* ============================================================
   EQUIFAX.PRESS — COMPLETE STYLESHEET
   Base design system + extended component styles
   ============================================================ */

:root {
  --bg: #06101a;
  --bg-2: #0b1623;
  --panel: rgba(10, 21, 35, 0.88);
  --panel-2: rgba(13, 26, 43, 0.96);
  --line: rgba(155, 186, 229, 0.16);
  --text: #edf4ff;
  --muted: #b9c8db;
  --accent: #96c6ff;
  --accent-2: #d7e8ff;
  --shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(92, 152, 255, 0.14), transparent 26%),
    radial-gradient(circle at right 10% top 12%, rgba(207, 226, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #060d15 0%, #091220 100%);
}

img { max-width: 100%; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 5vw, 5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.7rem, 3vw, 2.7rem); margin-bottom: .8rem; }
h3 { font-size: 1.1rem; margin-bottom: .45rem; }
p, li { color: var(--muted); font-size: 1.02rem; }

/* ── Buttons ─────────────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .82rem 1.18rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  transition: opacity .18s;
}
.button:hover { opacity: .88; text-decoration: none; }
.button.primary {
  color: #08111c;
  border-color: transparent;
  background: linear-gradient(180deg, #bedcff 0%, #91c0ff 100%);
}
.button.secondary {
  color: var(--text);
  background: rgba(255,255,255,.03);
}
.button.full { width: 100%; }
.button:disabled,
.button[disabled] {
  opacity: .38;
  cursor: not-allowed;
}

/* ── Eyebrow / Kickers ──────────────────────────────────── */

.eyebrow,
.panel-tag,
.splash-mark,
.stat-kicker {
  margin-bottom: .85rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  color: var(--accent);
}

/* ── Site Header ─────────────────────────────────────────── */

.site-header {
  padding: 1.4rem 0 4.5rem;
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}
.brand {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand:hover { text-decoration: none; }
.main-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--muted);
  font-weight: 600;
}

/* ── Grid Systems ────────────────────────────────────────── */

.hero-grid,
.status-grid,
.docs-layout,
.footer-row,
.card-grid,
.hero-panel {
  display: grid;
  gap: 1.15rem;
}
.hero-grid { grid-template-columns: 1.35fr .8fr; align-items: start; }
.hero-panel { grid-template-columns: 1fr; }
.hero-copy { max-width: 860px; font-size: 1.12rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.5rem; }

.hero-grid-wide {
  grid-template-columns: 1.2fr .95fr;
}
.two-col-panel {
  grid-template-columns: 1fr;
}

/* ── Panels / Cards / Items ──────────────────────────────── */

.panel,
.stat-card,
.timeline-item,
.doc-item,
.splash-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.panel,
.stat-card,
.splash-card { padding: 1.4rem; }
.panel.large { padding: 1.7rem; }
.stat-card strong,
.stat-card span { display: block; }
.stat-card strong { color: var(--text); font-size: 1.28rem; margin-bottom: .25rem; }

/* ── Sections ────────────────────────────────────────────── */

.section { padding: 4.1rem 0; }
.section-soft {
  background: rgba(255,255,255,.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading { margin-bottom: 1.4rem; }
.section-heading.left { margin-bottom: 1.1rem; }

/* ── Status Grid ─────────────────────────────────────────── */

.status-grid { grid-template-columns: 1.45fr .8fr; }
.clean-list {
  margin: .2rem 0 0 1.15rem;
  padding: 0;
}
.clean-list li { margin-bottom: .52rem; }
.clean-list.compact li { margin-bottom: .38rem; }

/* ── Timeline ────────────────────────────────────────────── */

.timeline { display: grid; gap: 1rem; }
.timeline-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: 1.25rem;
}
.timeline-date {
  color: var(--accent);
  font-weight: 800;
  font-size: .98rem;
}

/* Critical timeline items — red highlight */
.timeline-critical {
  border-color: rgba(255, 90, 90, 0.35);
  background: linear-gradient(180deg, rgba(40, 12, 12, 0.7) 0%, var(--panel-2) 100%);
}
.timeline-critical .timeline-date {
  color: #ff8a8a;
}

/* ── Card Grid ───────────────────────────────────────────── */

.card-grid.three-up { grid-template-columns: repeat(3, 1fr); }
.feature-card p { margin-bottom: 0; }

/* Card link — subtle link at bottom of feature cards */
.card-link {
  display: inline-block;
  margin-top: .9rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── Docs Layout ─────────────────────────────────────────── */

.docs-layout { grid-template-columns: 1.25fr .78fr; }
.doc-list { display: grid; gap: .9rem; }
.doc-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
}
.doc-label {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #08111c;
  font-weight: 800;
  background: linear-gradient(180deg, #c8e1ff 0%, #97c4ff 100%);
}
.docs-panel { align-self: start; }
.divider {
  height: 1px;
  background: var(--line);
  margin: 1rem 0 1.1rem;
}

/* ── Footer ──────────────────────────────────────────────── */

.site-footer {
  padding: 2.5rem 0 3.6rem;
  border-top: 1px solid var(--line);
}
.footer-row {
  grid-template-columns: 1fr auto;
  align-items: end;
}
.footer-note { margin: .65rem 0 0; }
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a { color: var(--muted); }

/* Footer disclaimer text */
.footer-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
  opacity: .7;
}

/* ── Splash / Index ──────────────────────────────────────── */

.splash-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.splash-wrap { width: min(760px, calc(100% - 2rem)); }
.splash-card {
  padding: 2.3rem;
  text-align: center;
}
.splash-copy {
  max-width: 590px;
  margin: 0 auto .75rem;
}
.splash-muted { color: #dce7f6; }
.splash-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.loader-ring {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 1.5rem;
}
.loader-ring span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  margin: -5.5px;
  border-radius: 50%;
  background: #8fc0ff;
  box-shadow: 0 0 12px rgba(143,192,255,.82);
  animation: pulseDots 1.1s linear infinite;
}
.loader-ring span:nth-child(1)  { transform: rotate(0deg) translateY(-44px);   animation-delay: -1.00s; }
.loader-ring span:nth-child(2)  { transform: rotate(30deg) translateY(-44px);  animation-delay: -0.91s; }
.loader-ring span:nth-child(3)  { transform: rotate(60deg) translateY(-44px);  animation-delay: -0.82s; }
.loader-ring span:nth-child(4)  { transform: rotate(90deg) translateY(-44px);  animation-delay: -0.73s; }
.loader-ring span:nth-child(5)  { transform: rotate(120deg) translateY(-44px); animation-delay: -0.64s; }
.loader-ring span:nth-child(6)  { transform: rotate(150deg) translateY(-44px); animation-delay: -0.55s; }
.loader-ring span:nth-child(7)  { transform: rotate(180deg) translateY(-44px); animation-delay: -0.46s; }
.loader-ring span:nth-child(8)  { transform: rotate(210deg) translateY(-44px); animation-delay: -0.37s; }
.loader-ring span:nth-child(9)  { transform: rotate(240deg) translateY(-44px); animation-delay: -0.28s; }
.loader-ring span:nth-child(10) { transform: rotate(270deg) translateY(-44px); animation-delay: -0.19s; }
.loader-ring span:nth-child(11) { transform: rotate(300deg) translateY(-44px); animation-delay: -0.10s; }
.loader-ring span:nth-child(12) { transform: rotate(330deg) translateY(-44px); animation-delay: -0.01s; }

@keyframes pulseDots {
  0% { opacity: .12; }
  50% { opacity: 1; }
  100% { opacity: .12; }
}

/* ── Inline Disclaimer Box (hero sections) ───────────────── */

.disclaimer-inline {
  margin-top: 1.2rem;
  padding: .9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 200, 120, 0.18);
  background: rgba(255, 200, 120, 0.06);
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.55;
}
.disclaimer-inline strong {
  color: var(--text);
}

/* ── Data Table (legal actions, etc.) ────────────────────── */

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  box-shadow: var(--shadow);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
}
.data-table thead {
  border-bottom: 1px solid var(--line);
}
.data-table th {
  text-align: left;
  padding: 1rem 1.1rem;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  white-space: nowrap;
}
.data-table td {
  padding: .85rem 1.1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  vertical-align: top;
}
.data-table tbody tr:hover {
  background: rgba(150, 198, 255, 0.04);
}

/* ── Tags / Badges ───────────────────────────────────────── */

.tag {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.tag-green {
  color: #0c2e1a;
  background: linear-gradient(180deg, #a8f0c8 0%, #6ee6a0 100%);
}
.tag-blue {
  color: #0a1a30;
  background: linear-gradient(180deg, #bedcff 0%, #91c0ff 100%);
}
.tag-amber {
  color: #2e1e05;
  background: linear-gradient(180deg, #ffd89e 0%, #f0b860 100%);
}
.tag-red {
  color: #2e0a0a;
  background: linear-gradient(180deg, #ffaaaa 0%, #f07070 100%);
}

/* ── Contact Form ────────────────────────────────────────── */

.contact-form {
  display: grid;
  gap: 1.1rem;
  max-width: 680px;
}
.form-row {
  display: grid;
  gap: .4rem;
}
.form-row label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: .78rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-family: inherit;
  font-size: .98rem;
  outline: none;
  transition: border-color .18s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
}
.form-row textarea {
  min-height: 140px;
  resize: vertical;
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2396c6ff' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-row select option {
  background: var(--bg-2);
  color: var(--text);
}

.form-check {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: .15rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form-check label {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-block {
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  box-shadow: var(--shadow);
}

/* ── News List (home page updates) ───────────────────────── */

.news-list {
  display: grid;
  gap: .65rem;
}
.news-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: .85rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  transition: background .18s;
}
.news-row:hover {
  background: rgba(150, 198, 255, 0.04);
}
.news-date-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  white-space: nowrap;
}
.news-row p {
  margin: 0;
}

/* ── FAQ ─────────────────────────────────────────────────── */

.faq-list {
  display: grid;
  gap: .8rem;
}
.faq-item {
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  box-shadow: var(--shadow);
}
.faq-item h3 {
  color: var(--text);
  margin-bottom: .35rem;
}
.faq-item p {
  margin-bottom: 0;
  font-size: .94rem;
}

/* ── Portal (hidden client login) ────────────────────────── */

.portal-body {
  min-height: 100vh;
}
.portal-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.portal-card {
  max-width: 520px;
  width: 100%;
}
.portal-form {
  text-align: left;
}
.portal-label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  margin-bottom: .4rem;
}
.portal-input {
  width: 100%;
  padding: .78rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-family: inherit;
  font-size: .98rem;
  outline: none;
  transition: border-color .18s;
}
.portal-input:focus {
  border-color: var(--accent);
}
.portal-error {
  margin-top: 1rem;
  padding: .65rem 1rem;
  border-radius: 10px;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ffaaaa;
  font-size: .88rem;
  text-align: center;
}

/* ── Success Message (contact form) ──────────────────────── */

.form-success {
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(110, 230, 160, 0.3);
  background: rgba(110, 230, 160, 0.08);
  color: #a8f0c8;
  text-align: center;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE — 980px
   ============================================================ */

@media (max-width: 980px) {
  .hero-grid,
  .hero-grid-wide,
  .status-grid,
  .docs-layout,
  .card-grid.three-up,
  .timeline-item,
  .footer-row,
  .two-col-panel {
    grid-template-columns: 1fr;
  }
  .site-header { padding: 1rem 0 3rem; }
  .hero-copy { max-width: 100%; }
  .hero-actions .button { flex: 1 1 220px; }
  .panel, .stat-card, .splash-card { padding: 1.2rem; }
  .section { padding: 3.2rem 0; }
  .news-row { grid-template-columns: 100px 1fr; }
}

/* ============================================================
   RESPONSIVE — 740px
   ============================================================ */

@media (max-width: 740px) {
  :root { --radius: 18px; }
  .wrap,
  .splash-wrap { width: min(var(--max), calc(100% - 1.1rem)); }
  h1 { font-size: clamp(2rem, 10vw, 3rem); }
  h2 { font-size: clamp(1.45rem, 7vw, 2rem); }
  h3 { font-size: 1.02rem; }
  p, li { font-size: 0.98rem; }
  .site-header { padding: .8rem 0 2.4rem; }

  .nav-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 1.6rem;
    position: sticky;
    top: 0;
    z-index: 20;
    padding: .95rem;
    margin: 0 -.15rem 1.6rem;
    border-radius: 18px;
    background: rgba(6, 13, 21, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(155, 186, 229, 0.12);
  }
  .brand { font-size: 1rem; }
  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
  }
  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .8rem .7rem;
    text-align: center;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(155, 186, 229, 0.10);
  }

  .hero-actions,
  .splash-actions,
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .button {
    width: 100%;
    min-height: 50px;
    padding: .9rem 1rem;
  }
  .hero-panel,
  .card-grid.three-up,
  .timeline,
  .doc-list {
    gap: .85rem;
  }
  .timeline-item {
    gap: .55rem;
    padding: 1rem;
  }
  .timeline-date {
    font-size: .85rem;
    letter-spacing: .04em;
  }
  .doc-item {
    grid-template-columns: 1fr;
    gap: .8rem;
    padding: 1rem;
  }
  .doc-label {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }
  .footer-row {
    gap: 1rem;
    align-items: start;
  }
  .footer-links {
    justify-content: stretch;
  }
  .footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(155, 186, 229, 0.10);
  }
  .splash-card {
    padding: 1.55rem 1rem;
  }
  .loader-ring {
    width: 92px;
    height: 92px;
    margin-bottom: 1.2rem;
  }
  .loader-ring span {
    width: 9px;
    height: 9px;
    margin: -4.5px;
  }
  .loader-ring span:nth-child(1)  { transform: rotate(0deg) translateY(-36px); }
  .loader-ring span:nth-child(2)  { transform: rotate(30deg) translateY(-36px); }
  .loader-ring span:nth-child(3)  { transform: rotate(60deg) translateY(-36px); }
  .loader-ring span:nth-child(4)  { transform: rotate(90deg) translateY(-36px); }
  .loader-ring span:nth-child(5)  { transform: rotate(120deg) translateY(-36px); }
  .loader-ring span:nth-child(6)  { transform: rotate(150deg) translateY(-36px); }
  .loader-ring span:nth-child(7)  { transform: rotate(180deg) translateY(-36px); }
  .loader-ring span:nth-child(8)  { transform: rotate(210deg) translateY(-36px); }
  .loader-ring span:nth-child(9)  { transform: rotate(240deg) translateY(-36px); }
  .loader-ring span:nth-child(10) { transform: rotate(270deg) translateY(-36px); }
  .loader-ring span:nth-child(11) { transform: rotate(300deg) translateY(-36px); }
  .loader-ring span:nth-child(12) { transform: rotate(330deg) translateY(-36px); }

  .news-row {
    grid-template-columns: 1fr;
    gap: .3rem;
  }
  .data-table { font-size: .86rem; }
  .data-table th,
  .data-table td { padding: .7rem .8rem; }
}

/* ============================================================
   RESPONSIVE — 420px
   ============================================================ */

@media (max-width: 420px) {
  .wrap,
  .splash-wrap { width: min(var(--max), calc(100% - .8rem)); }
  .main-nav {
    grid-template-columns: 1fr;
  }
  .stat-card strong { font-size: 1.15rem; }
  .panel.large { padding: 1.2rem; }
  .clean-list { margin-left: 1rem; }
}

/* ── Overflow prevention ─────────────────────────────────── */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  -webkit-text-size-adjust: 100%;
}
.button,
.main-nav a,
.footer-links a {
  -webkit-tap-highlight-color: transparent;
}
