:root {
  /* Option A — Editorial neutral */
  --bg-paper: #f6f3ee;
  --bg-ink: #171717;
  --bg-ink-soft: #1d1d1d;

  --surface: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.72);

  --text-main: #171717;
  --text-muted: rgba(23, 23, 23, 0.66);
  --text-on-dark: #f7f7f7;

  --border-light: rgba(23, 23, 23, 0.10);
  --border-dark: rgba(255, 255, 255, 0.14);

  --accent: #1f3a8a;        /* navy */
  --accent-deep: #16306f;
  --accent-warm: #d97706;

  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
  --container: 1180px;

  --radius: 10px;
  --radius-card: 12px;
  --radius-button: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background: var(--bg-paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.footer-cta:focus-visible {
  outline: 2px solid rgba(31, 58, 138, 0.9);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(31, 58, 138, 0.18);
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.button:focus:not(:focus-visible),
.footer-cta:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--surface);
  color: var(--text-main);
  border-radius: 0.75rem;
  z-index: 1000;
}

.shell {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  background: var(--bg-paper);
  color: var(--text-main);
}

.hero-grid {
  display: block;
  min-height: auto;
}

.hero-copy-panel {
  position: relative;
}

.hero-copy-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(31, 58, 138, 0.12), transparent 60%),
    radial-gradient(760px 460px at 85% 35%, rgba(217, 119, 6, 0.10), transparent 62%),
    linear-gradient(135deg, rgba(23, 23, 23, 0.035) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 5;
  display: block;
  padding-top: 2.75rem;
  padding-bottom: 1rem;
}

.brand {
  display: inline-block;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-tag {
  margin: 0.35rem 0 0;
  color: rgba(23, 23, 23, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.82rem;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.55rem;
  color: rgba(23, 23, 23, 0.86);
  font-weight: 600;
  position: relative;
}

.topbar-link span:first-child {
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
}

.topbar-link svg,
.button svg,
.contact-icon svg,
.icon-circle svg,
.footer-cta svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}



.hero-copy {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  width: min(100%, 46rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.35rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.94rem;
  font-weight: 800;
}

.hero-copy h1 {
  color: var(--text-main);

  margin: 0;
  font-size: clamp(3.8rem, 7vw, 6.25rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 10ch;
}

.accent-dot {
  color: var(--accent);
}

.divider {
  width: 4.1rem;
  height: 2px;
  background: rgba(23, 23, 23, 0.22);
  margin: 1.7rem 0 1.6rem;
}

.lead {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  color: rgba(23, 23, 23, 0.86);
  max-width: 28rem;
}

.seo-intro {
  margin: 1.25rem 0 0;
  max-width: 32rem;
  color: rgba(23, 23, 23, 0.62);
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.35rem;
}

.button,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.8rem;
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-button);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg,
.footer-cta svg {
  width: 1.15rem;
  height: 1.15rem;
}

.button-primary {
  color: #ffffff;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--text-main);
  background: transparent;
  border: 1px solid rgba(23, 23, 23, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(23, 23, 23, 0.34);
  background: rgba(23, 23, 23, 0.03);
  transform: translateY(-1px);
}

.section {
  padding: 4rem 0;
}

.section-light {
  background: var(--bg-paper);
}

.narrow-center {
  max-width: 54rem;
  text-align: center;
}

.section-kicker {
  color: var(--accent);
}

.intro-band {
  padding-bottom: 1.5rem;
}

.intro-band h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.cards-section {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.seo-support-section {
  padding-top: 0;
  padding-bottom: 2rem;
}

.seo-support-copy {
  margin: 0 auto;
  max-width: 46rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.info-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
}

.info-card {
  padding: 2rem 1.6rem;
  text-align: center;
}

.icon-circle,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  background: rgba(31, 58, 138, 0.10);
  color: var(--accent);
}

.icon-circle svg {
  width: 2rem;
  height: 2rem;
}

.info-card h2 {
  margin: 1.5rem 0 0.9rem;
  font-size: 1.85rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.info-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.card-status {
  display: inline-block;
  margin-top: 1.85rem;
  font-weight: 700;
}

.value-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: var(--surface-soft);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  border-radius: 0.9rem;
}

.value-lead {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}



.value-lead h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.value-copy {
  margin: 0;
  color: var(--text-muted);
}

.value-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.value-list li {
  min-width: 7rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(23, 23, 23, 0.10);
  color: rgba(23, 23, 23, 0.86);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 10ch;
}

.contact-copy p:last-child {
  max-width: 18rem;
  color: var(--text-muted);
  font-size: 1.06rem;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  padding: 2rem;
  align-items: center;
}

.contact-icon {
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 0.6rem;
  background: rgba(31, 58, 138, 0.10);
  color: var(--accent);
}

.contact-icon svg {
  width: 2.3rem;
  height: 2.3rem;
}

.contact-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

.contact-body p {
  margin: 0;
  color: var(--text-muted);
}

.button-dark {
  color: var(--text-on-dark);
  background: #111111;
  border: 1px solid #111111;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #1b1b1b;
  border-color: #1b1b1b;
}

.contact-email {
  color: var(--text-muted);
  font-weight: 700;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--text-main);
}

.site-footer {
  padding: 3rem 0;
  background: var(--bg-ink);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.7fr)) minmax(0, 1.05fr);
  gap: 2rem;
}

.site-footer h3,
.footer-brand {
  margin: 0 0 1rem;
  color: #ffffff;
}

.footer-brand {
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-note {
  margin-top: 1.5rem;
}

.footer-cta {
  justify-content: space-between;
  width: 100%;
  margin-top: 1.3rem;
  padding-left: 1rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  align-self: stretch;
  background: var(--accent);
  color: #ffffff;
  margin: -0.95rem -1.35rem -0.95rem 1rem;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}

@media (max-width: 1120px) {
  .hero-grid,
  .contact-grid,
  .footer-grid,
  .value-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 2rem;
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-list {
    flex-wrap: wrap;
  }

  .footer-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .topbar {
    padding-top: 1.5rem;
  }

  .hero-shell {
    background: var(--bg-paper);
  }

  .hero-copy {
    padding-top: 3rem;
  }

  .hero-copy h1,
  .intro-band h2,
  .contact-copy h2 {
    max-width: none;
  }

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

  .info-card,
  .contact-card,
  .value-strip {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .contact-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .value-lead {
    align-items: flex-start;
  }

  .value-list {
    gap: 0.75rem;
  }

  .value-list li {
    min-width: 0;
    padding-left: 0;
    border-left: 0;
  }

  .footer-cta span:last-child {
    width: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .footer-cta,
  .topbar-link {
    transition: none;
  }
}
