:root {
  color-scheme: dark;
  --red: #E60012;
  --black: #000000;
  --white: #FFFFFF;
  --surface: #0A0A0A;
  --surface-raised: #111111;
  --ink: #FFFFFF;
  --muted: rgba(255, 255, 255, .72);
  --line: rgba(255, 255, 255, .16);
  --soft: rgba(255, 255, 255, .055);
  --max: 1200px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--black); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
::selection { color: var(--white); background: var(--red); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }

.skip-link { position: absolute; z-index: 20; top: 10px; left: 10px; padding: 10px 14px; color: var(--white); background: var(--red); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.section-wrap { width: min(var(--max), calc(100% - 64px)); margin-inline: auto; }
.section-pad { padding-block: 100px; }

.site-header { position: relative; z-index: 5; background: var(--black); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { width: 150px; flex: 0 0 auto; }
.brand img, .footer-brand img { width: 100%; height: auto; }
.site-header nav { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 2.6vw, 38px); margin-left: auto; }
.site-header nav a { color: rgba(255, 255, 255, .76); font-size: 12px; font-weight: 650; transition: color .2s ease; }
.site-header nav a:hover { color: var(--red); }

.button { min-height: 54px; padding: 0 22px; display: inline-flex; justify-content: center; align-items: center; gap: 12px; border: 1px solid transparent; border-radius: 4px; font-size: 14px; font-weight: 750; line-height: 1.2; text-align: center; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button span { flex: 0 0 auto; font-size: 18px; }
.button-red { color: var(--white); background: var(--red); box-shadow: 0 8px 26px rgba(230, 0, 18, .18); }
.button-red:hover { background: #C90010; box-shadow: 0 10px 30px rgba(230, 0, 18, .3); }
.button-small { min-height: 44px; padding: 8px 13px; font-size: 11px; }
.header-cta { max-width: 248px; }

.hero { position: relative; isolation: isolate; min-height: min(780px, calc(100svh - 84px)); padding-block: clamp(70px, 9vw, 118px) clamp(72px, 8vw, 108px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.hero::before { position: absolute; z-index: -1; inset: 18% 8% 12%; content: ""; pointer-events: none; background: radial-gradient(ellipse at center, rgba(230, 0, 18, .095), transparent 66%); }
.eyebrow { margin: 0 0 17px; color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; }
.hero-eyebrow { display: flex; align-items: center; justify-content: center; gap: 9px; margin-bottom: 13px; }
.eyebrow-dot { width: 7px; height: 7px; flex: 0 0 7px; background: var(--red); border-radius: 50%; box-shadow: 0 0 14px rgba(230, 0, 18, .8); }
.hero-logo { width: min(100%, 960px); height: auto; margin: 0 auto 3px; filter: drop-shadow(0 0 28px rgba(230, 0, 18, .08)); }
h1, h2, h3, p { margin-top: 0; }
.hero h1 { max-width: 950px; margin: 0 0 17px; font-size: clamp(38px, 6.2vw, 72px); font-weight: 850; letter-spacing: -.065em; line-height: 1.02; }
.hero h1 span { color: var(--red); }
.hero-lede { max-width: 770px; margin: 0; color: var(--muted); font-size: clamp(15px, 1.55vw, 18px); line-height: 1.75; }
.hero-actions { margin-top: 29px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px; }
.text-link { color: var(--white); font-size: 13px; font-weight: 700; transition: color .2s ease; }
.text-link:hover, .card-link:hover { color: var(--red); }
.text-link span { margin-left: 7px; color: var(--red); }
.hero-note { margin: 27px 0 0; color: rgba(255, 255, 255, .56); font-size: 11px; }
.hero-note span { margin-right: 7px; color: var(--red); }

.intro-band { background: #080808; border-block: 1px solid var(--line); }
.intro-band-inner { min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.intro-mark { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border: 1px solid rgba(230, 0, 18, .7); color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.intro-band p { margin: 0; color: rgba(255, 255, 255, .68); font-size: clamp(15px, 2vw, 20px); letter-spacing: -.025em; }
.intro-band strong { color: var(--white); font-weight: 800; }
.intro-arrow { color: var(--red); font-size: 27px; }

.section-heading { margin-bottom: 48px; }
.section-heading .eyebrow { margin-bottom: 17px; }
.section-heading-row { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(260px, .72fr); align-items: end; gap: 48px; }
h2 { margin-bottom: 0; font-size: clamp(32px, 4.2vw, 54px); font-weight: 820; letter-spacing: -.06em; line-height: 1.06; }
h2 span { color: var(--red); }
.section-heading-row > p { max-width: 440px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.about { background: var(--black); }
.about-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(190px, .58fr) minmax(0, 1.42fr); align-items: center; gap: 44px; padding: clamp(28px, 4.2vw, 52px); border: 1px solid var(--line); background: linear-gradient(120deg, rgba(230, 0, 18, .075), transparent 52%), var(--surface); }
.about-panel::after { position: absolute; top: -118px; right: -68px; width: 270px; height: 270px; border: 1px solid rgba(230, 0, 18, .2); border-radius: 50%; box-shadow: 0 0 0 18px rgba(230, 0, 18, .035), 0 0 0 42px rgba(230, 0, 18, .025); content: ""; pointer-events: none; }
.about-lead { position: relative; z-index: 1; min-height: 86px; display: flex; flex-direction: column; justify-content: center; gap: 3px; padding-right: 28px; border-right: 1px solid var(--line); }
.about-role { color: var(--red); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.about-name { color: var(--white); font-size: clamp(40px, 5vw, 60px); font-weight: 850; letter-spacing: -.07em; line-height: 1; }
.about-panel > p { position: relative; z-index: 1; max-width: 660px; margin: 0; color: var(--muted); font-size: clamp(16px, 1.7vw, 20px); line-height: 1.75; }

.services { background: #050505; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service-card { min-height: 300px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--surface); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(230, 0, 18, .64); background: var(--surface-raised); }
.service-card-featured { border-color: rgba(230, 0, 18, .52); box-shadow: inset 0 2px 0 var(--red); }
.service-card-top { margin-bottom: 28px; display: flex; align-items: center; justify-content: space-between; }
.service-number { color: var(--red); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.service-icon { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(230, 0, 18, .55); color: var(--white); font-size: 20px; }
.service-card h3 { margin-bottom: 10px; color: var(--white); font-size: 21px; font-weight: 760; letter-spacing: -.04em; line-height: 1.2; }
.service-card p { margin-bottom: 25px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.card-link { margin-top: auto; color: var(--white); font-size: 11px; font-weight: 800; transition: color .2s ease; }
.card-link span { margin-left: 6px; color: var(--red); font-size: 16px; }

.process { color: var(--white); background: #080808; border-block: 1px solid var(--line); }
.process h2 { color: var(--white); }
.process-heading { margin-bottom: 56px; }
.process-heading .section-heading-row > p { color: var(--muted); }
.process-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 25px; list-style: none; }
.process-step { position: relative; padding-top: 2px; }
.step-number { display: inline-block; margin-bottom: 24px; color: var(--red); font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.step-line { position: absolute; top: 12px; left: 40px; right: -25px; height: 1px; background: rgba(255, 255, 255, .22); }
.process-step:last-child .step-line { display: none; }
.process-step h3 { min-height: 54px; margin-bottom: 10px; color: var(--white); font-size: 17px; letter-spacing: -.03em; line-height: 1.28; }
.process-step p { max-width: 235px; margin-bottom: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.contact { display: grid; grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr); align-items: start; gap: clamp(42px, 8vw, 100px); background: var(--black); }
.contact-copy { padding-top: 12px; }
.contact-copy .eyebrow { margin-bottom: 20px; }
.contact-copy h2 { max-width: 530px; margin-bottom: 20px; }
.contact-copy > p:not(.eyebrow) { max-width: 440px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.contact-note { margin-top: 34px; display: flex; align-items: center; gap: 14px; }
.contact-note-icon { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; color: var(--white); background: var(--red); font-size: 20px; font-weight: 800; }
.contact-note p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.contact-note strong { color: var(--white); font-size: 13px; }
.contact-services { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 7px; }
.contact-services span { padding: 7px 10px; border: 1px solid var(--line); color: rgba(255, 255, 255, .76); font-size: 10px; font-weight: 700; }
.lead-form { min-width: 0; padding: clamp(22px, 3.3vw, 38px); border: 1px solid var(--line); background: var(--surface); box-shadow: 0 18px 50px rgba(0, 0, 0, .32); }
.form-heading { margin-bottom: 25px; }
.form-heading h3 { margin-bottom: 3px; color: var(--white); font-size: 23px; letter-spacing: -.045em; }
.form-heading p { margin: 0; color: var(--muted); font-size: 11px; }
.form-heading p span, .form-field label > span:not(.optional), .consent-row label span { color: var(--red); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px 14px; }
.form-field { min-width: 0; display: flex; flex-direction: column; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { margin-bottom: 6px; color: var(--white); font-size: 12px; font-weight: 750; }
.optional { color: var(--muted); font-size: 10px; font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 47px; padding: 11px 12px; color: var(--white); background: #030303; border: 1px solid rgba(255, 255, 255, .23); border-radius: 3px; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea { min-height: 108px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--red); outline: none; box-shadow: 0 0 0 3px rgba(230, 0, 18, .18); }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255, 255, 255, .48); }
.form-field option { color: var(--white); background: #030303; }
.field-hint { margin-top: 5px; color: var(--muted); font-size: 10px; }
.consent-row { margin-top: 20px; display: flex; align-items: flex-start; gap: 10px; }
.consent-row input { width: 17px; height: 17px; flex: 0 0 17px; margin: 2px 0 0; accent-color: var(--red); }
.consent-row label { color: rgba(255, 255, 255, .77); font-size: 11px; line-height: 1.55; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.form-status { min-height: 0; margin: 0; color: var(--white); font-size: 12px; }
.form-status:not(:empty) { margin-top: 15px; padding: 11px 12px; border-left: 3px solid var(--red); color: var(--white); background: var(--soft); }
.form-status.is-error { border-color: #FF5965; }
.form-submit { width: 100%; margin-top: 18px; }
.form-submit[disabled] { opacity: .7; cursor: wait; transform: none; }
.form-privacy { margin: 11px 0 0; color: rgba(255, 255, 255, .56); text-align: center; font-size: 10px; }

.site-footer { color: var(--white); background: #050505; border-top: 1px solid var(--line); }
.footer-inner { min-height: 130px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-brand { width: 132px; flex: 0 0 auto; }
.footer-inner > p { max-width: 330px; margin: 0; color: rgba(255, 255, 255, .68); font-size: 12px; }
.footer-copy { color: rgba(255, 255, 255, .58); font-size: 11px; }

@media (max-width: 1000px) {
  .section-heading-row { grid-template-columns: minmax(0, 1fr) minmax(220px, .78fr); gap: 34px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 36px; }
  .step-line { display: none; }
  .contact { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 42px; }
}

@media (max-width: 760px) {
  .section-wrap { width: min(var(--max), calc(100% - 40px)); }
  .section-pad { padding-block: 76px; }
  .header-inner { min-height: 78px; flex-wrap: wrap; justify-content: space-between; gap: 0 14px; padding-block: 12px 10px; }
  .brand { width: 130px; }
  .header-cta { max-width: 200px; min-height: 42px; padding-inline: 11px; font-size: 10px; }
  .site-header nav { order: 3; width: 100%; margin: 7px 0 0; justify-content: space-between; gap: 10px; }
  .site-header nav a { font-size: 11px; }
  .hero { min-height: auto; padding-block: 65px 70px; }
  .hero::before { inset: 18% 0 10%; }
  .hero-logo { width: min(100%, 650px); }
  .hero h1 { max-width: 650px; font-size: clamp(38px, 9vw, 58px); }
  .hero-lede { max-width: 590px; font-size: 15px; }
  .intro-band-inner { min-height: 90px; gap: 15px; }
  .intro-mark { width: 40px; height: 40px; flex-basis: 40px; font-size: 9px; }
  .intro-arrow { font-size: 22px; }
  .section-heading { margin-bottom: 35px; }
  .section-heading-row { display: block; }
  .section-heading-row > p { max-width: 540px; margin: 17px 0 0; font-size: 14px; }
  .about-panel { grid-template-columns: 1fr; gap: 22px; }
  .about-lead { min-height: auto; padding: 0 0 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { min-height: 255px; padding: 24px; }
  .service-card-top { margin-bottom: 23px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; column-gap: 24px; }
  .process-step h3 { min-height: 0; }
  .process-step p { font-size: 12px; }
  .contact { grid-template-columns: 1fr; gap: 35px; }
  .contact-copy { padding-top: 0; }
  .contact-copy h2 { max-width: 600px; }
  .contact-note { margin-top: 24px; }
  .contact-services { margin-top: 22px; }
  .lead-form { padding: 24px 20px; }
  .footer-inner { min-height: auto; padding-block: 32px; display: grid; grid-template-columns: 1fr auto; gap: 12px 20px; }
  .footer-brand { width: 118px; }
  .footer-inner > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-copy { grid-column: 2; grid-row: 1; }
}

@media (max-width: 420px) {
  .section-wrap { width: calc(100% - 32px); }
  .header-inner { column-gap: 9px; }
  .brand { width: 108px; }
  .header-cta { max-width: 178px; min-height: 40px; padding: 7px 8px; gap: 6px; font-size: 9px; }
  .site-header nav { gap: 8px; }
  .site-header nav a { font-size: 10px; }
  .hero { padding-top: 53px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: .13em; }
  .hero h1 { font-size: clamp(35px, 10.2vw, 46px); }
  .hero-lede { font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .intro-band-inner { gap: 11px; }
  .intro-band p { font-size: 14px; }
  .process-grid { gap: 28px 17px; }
  .process-step h3 { font-size: 15px; }
  .contact-services { gap: 5px; }
  .contact-services span { padding: 6px 8px; font-size: 9px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .lead-form { padding-inline: 17px; }
}

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