/* =========================================================
   Veritas Resource Group — Landing Page
   Editorial / institutional design built on tokens.css
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--vrg-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--vrg-ink);
  background: var(--vrg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--vrg-teal);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--vrg-navy);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--vrg-navy);
  color: var(--vrg-white);
  padding: 12px 18px;
  z-index: 1000;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Shared type ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--vrg-font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vrg-teal);
  margin-bottom: 22px;
  position: relative;
  padding-left: 34px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 24px;
  height: 1px;
  background: var(--vrg-gold);
}
.eyebrow-gold {
  color: var(--vrg-gold);
}
.eyebrow-gold::before {
  background: var(--vrg-gold);
}
.eyebrow-light {
  color: var(--vrg-gold);
}
.eyebrow-light::before {
  background: var(--vrg-gold);
}

.display {
  font-family: var(--vrg-font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.6vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--vrg-white);
  margin: 0 0 28px;
}
.display-accent {
  color: var(--vrg-gold);
}

.h1 {
  font-family: var(--vrg-font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: var(--vrg-navy);
  margin: 0 0 20px;
}
.h1.light {
  color: var(--vrg-white);
}

.h2 {
  font-family: var(--vrg-font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--vrg-navy);
  margin: 0 0 16px;
}

.h3 {
  font-family: var(--vrg-font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--vrg-navy);
  margin: 0 0 10px;
}

.lede {
  font-size: 1.18rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 34px;
  max-width: 34em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--vrg-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--vrg-teal);
  color: var(--vrg-white);
  border-color: var(--vrg-teal);
}
.btn-primary:hover {
  background: var(--vrg-navy);
  border-color: var(--vrg-navy);
  color: var(--vrg-white);
}

.btn-ghost-light {
  background: transparent;
  color: var(--vrg-white);
  border-color: rgba(255, 255, 255, 0.32);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--vrg-gold);
  color: var(--vrg-white);
}

/* Inline arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--vrg-teal);
  letter-spacing: 0.01em;
}
.link-arrow::after {
  content: '\2192';
  transition: transform 0.2s ease;
}
.link-arrow:hover {
  color: var(--vrg-navy);
}
.link-arrow:hover::after {
  transform: translateX(4px);
}
.link-arrow-gold {
  color: #9a7d3c;
}
.link-arrow-gold:hover {
  color: var(--vrg-navy);
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--vrg-navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
}
.topbar-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--vrg-border);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 12px rgba(11, 37, 64, 0.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 56px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 36px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--vrg-navy);
  position: relative;
  padding: 8px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--vrg-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vrg-navy);
  transition: all 0.2s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 32px 28px;
  background: var(--vrg-white);
  border-top: 1px solid var(--vrg-border);
}
.mobile-nav a {
  padding: 15px 4px;
  font-weight: 500;
  color: var(--vrg-navy);
  border-bottom: 1px solid var(--vrg-border);
}
.mobile-nav a.btn {
  margin-top: 18px;
  border-bottom: none;
  color: var(--vrg-white);
  padding: 15px 24px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--vrg-navy);
  color: var(--vrg-white);
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
}
/* subtle imaging-slice motif, barely-there */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.022) 0px,
      rgba(255, 255, 255, 0.022) 1px,
      transparent 1px,
      transparent 64px
    );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--vrg-gold);
  opacity: 0.85;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.hero-copy {
  max-width: 660px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Engagement brief card (replaces SaaS dashboard) */
.brief {
  background: var(--vrg-white);
  color: var(--vrg-ink);
  border-top: 3px solid var(--vrg-gold);
  padding: 34px 34px 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.brief-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.brief-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vrg-navy);
}
.brief-rule {
  height: 1px;
  background: var(--vrg-border);
  width: 100%;
}
.brief-list {
  margin: 0;
}
.brief-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--vrg-border);
  align-items: baseline;
}
.brief-row dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vrg-graphite);
}
.brief-row dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--vrg-navy);
  font-weight: 500;
}
.brief-foot {
  margin: 18px 0 0;
  font-family: var(--vrg-font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
  color: var(--vrg-teal);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--vrg-mist);
  border-bottom: 1px solid var(--vrg-border);
  padding: 34px 0;
}
.trust-inner {
  text-align: center;
}
.trust-label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vrg-graphite);
  font-weight: 600;
  margin: 0 0 18px;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-list li {
  font-family: var(--vrg-font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--vrg-navy);
  padding: 4px 28px;
  position: relative;
}
.trust-list li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: var(--vrg-border);
}

/* ---------- Sections ---------- */
.section {
  padding: 104px 0;
  background: var(--vrg-white);
}
.section-mist {
  background: var(--vrg-mist);
}
.section-head {
  max-width: 760px;
  margin: 0 0 64px;
}
.section-lede {
  font-size: 1.15rem;
  color: var(--vrg-graphite);
  margin: 0;
  line-height: 1.65;
  max-width: 40em;
}

/* ---------- The Model: editorial steps ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--vrg-border);
}
.step {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--vrg-border);
  align-items: baseline;
}
.step-num {
  font-family: var(--vrg-font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--vrg-mist);
  -webkit-text-stroke: 1px var(--vrg-gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step-title {
  font-family: var(--vrg-font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--vrg-navy);
  margin: 0 0 10px;
}
.step-body p {
  margin: 0;
  color: var(--vrg-ink);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52em;
}

/* ---------- Audiences ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.audience {
  padding: 8px 56px;
}
.audience:first-child {
  padding-left: 0;
  border-right: 1px solid var(--vrg-border);
}
.audience:last-child {
  padding-right: 0;
}
.audience-lede {
  font-size: 1.08rem;
  color: var(--vrg-ink);
  margin: 0 0 26px;
  line-height: 1.65;
}
.ledger {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.ledger li {
  position: relative;
  padding: 14px 0 14px 26px;
  border-top: 1px solid var(--vrg-border);
  color: var(--vrg-ink);
  font-size: 1rem;
  line-height: 1.5;
}
.ledger li:last-child {
  border-bottom: 1px solid var(--vrg-border);
}
.ledger li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 21px;
  width: 12px;
  height: 1px;
  background: var(--vrg-teal);
}
.ledger-gold li::before {
  background: var(--vrg-gold);
}

/* ---------- Principles ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.principle {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid var(--vrg-navy);
}
.principle-index {
  display: block;
  font-family: var(--vrg-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--vrg-gold);
  margin-bottom: 16px;
}
.principle-title {
  font-family: var(--vrg-font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--vrg-navy);
  margin: 0 0 14px;
}
.principle p {
  margin: 0;
  color: var(--vrg-ink);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ---------- Statement ---------- */
.statement {
  background: var(--vrg-navy);
  color: var(--vrg-white);
  padding: 104px 0;
  position: relative;
}
.statement::before,
.statement::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vrg-gold);
  opacity: 0.7;
}
.statement::before { top: 0; }
.statement::after { bottom: 0; }

.statement-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.statement-quote p {
  font-family: var(--vrg-font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.7vw, 2.1rem);
  line-height: 1.42;
  color: var(--vrg-white);
  margin: 0 0 32px;
  letter-spacing: -0.005em;
}
.statement-cite {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--vrg-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.statement-rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--vrg-gold);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--vrg-mist);
  padding: 104px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact .h1.light {
  color: var(--vrg-navy);
}
.contact-lede {
  font-size: 1.12rem;
  color: var(--vrg-ink);
  margin: 0 0 28px;
  line-height: 1.65;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.contact-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-top: 1px solid var(--vrg-border);
  color: var(--vrg-navy);
  font-weight: 500;
}
.contact-list li:last-child {
  border-bottom: 1px solid var(--vrg-border);
}
.contact-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 14px;
  height: 1px;
  background: var(--vrg-gold);
}
.contact-direct {
  font-size: 0.98rem;
  color: var(--vrg-graphite);
  margin: 0;
}

/* Form */
.contact-form {
  background: var(--vrg-white);
  border: 1px solid var(--vrg-border);
  border-top: 3px solid var(--vrg-gold);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(11, 37, 64, 0.1);
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--vrg-navy);
  text-transform: uppercase;
}
.form-field input,
.form-field textarea {
  font-family: var(--vrg-font-body);
  font-size: 1rem;
  color: var(--vrg-ink);
  padding: 13px 15px;
  border: 1px solid var(--vrg-border);
  border-radius: 2px;
  background: var(--vrg-white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--vrg-graphite);
  opacity: 0.7;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--vrg-teal);
  box-shadow: 0 0 0 3px rgba(26, 107, 124, 0.12);
}
.form-note {
  font-size: 0.85rem;
  color: var(--vrg-graphite);
  margin: 2px 0 0;
  text-align: center;
}
.form-error {
  font-size: 0.9rem;
  color: #b42318;
  margin: 8px 0 0;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 28px 8px;
}
.form-success-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--vrg-teal);
  color: var(--vrg-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 18px;
}
.form-success p {
  color: var(--vrg-graphite);
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--vrg-navy);
  color: rgba(255, 255, 255, 0.68);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 56px;
  padding-bottom: 52px;
}
.footer-brand {
  max-width: 280px;
}
.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 18px;
}
.footer-tagline {
  font-family: var(--vrg-font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--vrg-gold);
  font-size: 1.05rem;
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--vrg-font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vrg-gold);
  margin: 0 0 18px;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}
.footer-col a:hover {
  color: var(--vrg-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}
.footer-legal {
  font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero {
    padding: 72px 0 84px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .brief {
    max-width: 520px;
  }
  .hero::before {
    display: none;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .audience-grid,
  .contact-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .audience {
    padding: 0;
  }
  .audience:first-child {
    border-right: none;
    border-bottom: 1px solid var(--vrg-border);
    padding-bottom: 48px;
  }
  .section {
    padding: 80px 0;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 22px;
  }
  .topbar-tag {
    display: none;
  }
  .topbar-inner {
    justify-content: center;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .site-header.is-open .mobile-nav {
    display: flex;
  }
  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    height: 74px;
  }
  .brand-logo {
    height: 42px;
  }
  .step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }
  .step-num {
    font-size: 2rem;
  }
  .trust-list li {
    padding: 4px 14px;
    font-size: 0.92rem;
  }
  .trust-list li + li::before {
    display: none;
  }
  .contact-form {
    padding: 28px 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .statement,
  .contact,
  .section {
    padding: 64px 0;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 460px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .brief {
    padding: 28px 22px 24px;
  }
  .brief-row {
    grid-template-columns: 84px 1fr;
    gap: 10px;
  }
}

/* ---------- Print ---------- */
@media print {
  .topbar,
  .site-header,
  .contact,
  .site-footer {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
  }
}
