

:root {
  --ink: #111315;
  --graphite: #1b1e21;
  --paper: #f4f1eb;
  --muted: #a8aaad;
  --line: #3b3e40;
  --blue: #1976ff;
  --blue-dark: #0c56c9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1440px, calc(100% - 96px)); margin-inline: auto; }

.utility-bar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--blue);
  background: #0c0e0f;
  color: #dedede;
  font-size: 14px;
}
.utility-inner { min-height: 46px; display: flex; align-items: center; justify-content: space-between; }
.utility-inner a { display: flex; align-items: center; gap: 10px; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 46px;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(8, 10, 11, .95), rgba(8, 10, 11, .45), transparent);
}
.header-inner { min-height: 116px; display: flex; align-items: center; gap: 48px; }
.logo { font-size: clamp(25px, 2.8vw, 45px); font-weight: 900; letter-spacing: -2px; white-space: nowrap; }
.logo span { color: var(--blue); }
.desktop-nav { display: flex; gap: clamp(28px, 4vw, 64px); margin-left: auto; }
.desktop-nav a, .mobile-menu a {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -10px;
  height: 2px; background: var(--blue);
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.desktop-nav a.active::after { right: 0; }

.button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 34px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-dark); }
.button-small { min-height: 54px; padding-inline: 28px; white-space: nowrap; }
.button-outline { border-color: #7c7e80; background: rgba(10, 12, 13, .54); }
.button-outline:hover { border-color: var(--blue); background: rgba(25, 118, 255, .12); }
.mobile-menu { display: none; margin-left: auto; }
.mobile-menu summary { cursor: pointer; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #101315;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}
.hero-shade {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 9, 10, .98) 0%, rgba(7, 9, 10, .88) 33%, rgba(7, 9, 10, .28) 68%, rgba(7, 9, 10, .08));
}
.hero-content { position: relative; z-index: 2; padding-top: 130px; padding-bottom: 60px; }
.eyebrow { margin: 0 0 20px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 {
  max-width: 760px; margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(64px, 6.3vw, 104px);
  font-weight: 900; line-height: .98; letter-spacing: -.025em;
  text-transform: none;
}
.hero h1 span { color: var(--blue); }
.hero h1.hero-title-long { font-size: clamp(54px, 5vw, 82px); }
.hero-copy { max-width: 600px; margin: 28px 0 0; color: #b6b7b8; font-size: 20px; font-weight: 600; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; }

.trust-strip { border-top: 1px solid #2a2d2f; background: linear-gradient(100deg, #1c1e1f, #131516); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid article { display: flex; align-items: center; gap: 24px; min-height: 150px; padding: 28px 42px; border-right: 1px solid #4a4c4e; }
.trust-grid article:last-child { border-right: 0; }
.trust-icon { color: var(--blue); font-size: 56px; line-height: 1; }
.trust-grid h2 { margin: 0 0 10px; font-size: 20px; }
.trust-grid p { margin: 0; color: var(--muted); line-height: 1.5; }

.section { padding-block: 110px; }
.section-heading { max-width: 760px; }
.section h2, .service-section h2 { margin: 0; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(42px, 5vw, 72px); line-height: 1; letter-spacing: -.015em; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; line-height: 1.7; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.card { position: relative; min-height: 270px; padding: 38px; border: 1px solid #343739; background: var(--graphite); transition: border-color .2s, transform .2s; }
.card:hover { transform: translateY(-4px); border-color: var(--blue); }
.card > span { color: var(--blue); font-weight: 900; }
.card h3 { margin: 60px 0 14px; font-size: 24px; }
.card p { margin: 0; color: var(--muted); line-height: 1.7; }

.service-section { padding-block: 96px; background: var(--paper); color: var(--ink); }
.service-grid, .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-copy > p, .about-grid > p { color: #5a5c5e; font-size: 19px; line-height: 1.75; }
.text-link { align-self: center; color: var(--ink); font-size: 20px; font-weight: 900; border-bottom: 2px solid var(--blue); }
.about-grid > p { color: var(--muted); }

.subpage-header { position: relative; top: 0; background: #0d0f10; border-bottom: 1px solid #292c2e; }
.subpage-hero { padding: 112px 0 104px; background: radial-gradient(circle at 80% 30%, #252b31 0, #111315 42%, #0b0d0e 80%); }
.subpage-hero h1 { max-width: 960px; margin: 0; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(62px, 7vw, 112px); line-height: .95; letter-spacing: -.02em; }
.subpage-hero h1 span { color: var(--blue); }
.subpage-hero > .shell > p:last-child { max-width: 720px; margin: 32px 0 0; color: var(--muted); font-size: 20px; line-height: 1.7; }
.company-story, .company-strengths { padding: 112px 0; }
.company-story { background: var(--paper); color: var(--ink); }
.story-grid, .strengths-grid { display: grid; grid-template-columns: .72fr 1.4fr; gap: 100px; align-items: start; }
.story-year { padding-top: 8px; border-top: 3px solid var(--blue); }
.story-year span { display: block; margin-top: 24px; color: var(--blue); font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(74px, 8vw, 120px); line-height: 1; }
.story-year p { font-size: 18px; font-weight: 700; line-height: 1.5; }
.prose p { margin: 0 0 25px; font-size: 18px; line-height: 1.85; }
.company-story .prose p { color: #474a4d; }
.company-strengths { background: var(--graphite); }
.company-strengths h2, .company-cta h2 { margin: 0; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(48px, 5vw, 76px); line-height: 1; }
.company-strengths .prose p { color: var(--muted); }
.company-strengths strong { color: #fff; }
.philosophy { padding-block: 112px; }
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.pillar { min-height: 290px; padding: 38px; border: 1px solid #343739; background: var(--graphite); }
.pillar > span { color: var(--blue); font-weight: 900; }
.pillar h3 { margin: 54px 0 16px; font-size: 25px; }
.pillar p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.company-cta { padding: 100px 0; border-top: 1px solid #303335; background: linear-gradient(120deg, #0b0d0e, #1a2025); }
.legal-hero { padding: 94px 0 82px; border-bottom: 1px solid #2d3032; background: radial-gradient(circle at 80% 30%, #252b31 0, #111315 45%, #0b0d0e 82%); }
.legal-hero h1 { margin: 0; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(68px, 8vw, 120px); line-height: .95; }
.legal-hero h1 span { color: var(--blue); }
.legal-hero > .shell > p:last-child { max-width: 680px; margin: 28px 0 0; color: var(--muted); font-size: 19px; line-height: 1.7; }
.legal-page { padding: 92px 24px 120px; background: var(--paper); color: var(--ink); }
.legal-copy { width: min(880px, 100%); margin: 0 auto; }
.legal-copy h2 { margin: 76px 0 28px; padding-top: 28px; border-top: 3px solid var(--blue); font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(38px, 5vw, 58px); line-height: 1.05; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin: 44px 0 16px; font-size: 24px; line-height: 1.3; }
.legal-copy h4 { margin: 28px 0 10px; font-size: 18px; line-height: 1.45; }
.legal-copy p { margin: 0 0 17px; color: #484b4e; font-size: 16px; line-height: 1.8; overflow-wrap: anywhere; }

footer { padding: 72px 0 26px; border-top: 1px solid #323537; background: #0b0d0e; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
.footer-grid .logo { display: inline-block; margin-bottom: 16px; font-size: 28px; }
.footer-grid h2 { margin: 6px 0 14px; color: var(--blue); font-size: 13px; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid p { margin: 0; color: var(--muted); line-height: 1.8; }
.footer-grid a:hover, .legal a:hover { color: #fff; }
.legal { display: flex; justify-content: space-between; margin-top: 58px; padding-top: 24px; border-top: 1px solid #272a2c; color: #747679; font-size: 13px; }

@media (max-width: 1050px) {
  .shell { width: min(100% - 48px, 960px); }
  .desktop-nav, .header-inner > .button-small { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu[open] nav { position: absolute; right: 0; top: 34px; display: flex; width: 220px; flex-direction: column; gap: 24px; padding: 28px; background: #111315; border: 1px solid #383b3d; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid #3a3d3f; }
  .card-grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card h3 { margin-top: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid, .strengths-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 700px) {
  .shell { width: calc(100% - 32px); }
  .utility-inner a:nth-child(1), .utility-inner a:nth-child(3) { display: none; }
  .utility-inner { justify-content: center; }
  .header-inner { min-height: 88px; }
  .logo { font-size: 27px; letter-spacing: -1px; }
  .hero { min-height: 700px; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7, 9, 10, .97), rgba(7, 9, 10, .78)); }
  .hero-content { padding-top: 110px; }
  .hero h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero h1.hero-title-long { font-size: clamp(43px, 12vw, 60px); }
  .hero-copy { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .trust-grid article { padding: 25px 16px; }
  .trust-icon { font-size: 42px; }
  .section { padding-block: 76px; }
  .card-grid { margin-top: 38px; }
  .service-grid, .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal { flex-direction: column; gap: 12px; }
  .subpage-hero { padding: 76px 0; }
  .subpage-hero h1 { font-size: clamp(52px, 16vw, 72px); }
  .company-story, .company-strengths, .philosophy { padding-block: 76px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { min-height: auto; }
  .pillar h3 { margin-top: 30px; }
  .legal-hero { padding: 68px 0 62px; }
  .legal-page { padding: 64px 16px 80px; }
  .legal-copy h2 { margin-top: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
