:root {
  --ink: #070708;
  --paper: #09090a;
  --white: #f7f4f2;
  --surface: #151516;
  --blue: #ff334b;
  --button-red: #d41426;
  --blue-dark: #a90d1d;
  --aqua: #2ee681;
  --muted: #b9b2b2;
  --line: #3a3032;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; color-scheme: dark; }

body {
  margin: 0;
  color: var(--white);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--aqua);
  border-radius: .5rem;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 27, 45, .28);
  background: rgba(9, 9, 10, .94);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.hero,
.section,
.legal-main,
.contact-main,
.footer-inner {
  width: min(1240px, calc(100% - 4rem));
  margin-inline: auto;
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 780;
  letter-spacing: -.025em;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--aqua);
  border-radius: 9px 2px 9px 2px;
  font-size: .9rem;
  letter-spacing: -.08em;
}

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { color: #d8d2d2; font-size: .94rem; font-weight: 650; text-decoration: none; }
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--blue); }
.site-nav .nav-contact { padding-bottom: .22rem; color: var(--white); border-bottom: 1px solid var(--blue); }

.hero {
  min-height: 720px;
  padding-block: clamp(4rem, 8vw, 7rem) 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.045em; text-wrap: balance; }
h1 { margin-bottom: 1.5rem; font-size: clamp(3rem, 7vw, 6.4rem); max-width: 11ch; }
h2 { margin-bottom: 1.2rem; font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.25rem; letter-spacing: -.02em; }

.hero-copy { max-width: 740px; min-width: 0; }
.hero h1 { max-width: 12ch; font-size: clamp(3.2rem, 4.7vw, 5rem); font-weight: 650; letter-spacing: -.055em; line-height: 1.03; }
.hero h1 span { color: var(--blue); }
.hero-copy .lead { max-width: 530px; margin: 1.8rem 0 0; color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.2rem); line-height: 1.7; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.2rem;
  border: 1px solid var(--button-red);
  border-radius: .3rem;
  background: var(--button-red);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  text-align: center;
}
.button span { margin-left: 1rem; font-size: 1.15rem; }
.button:hover { transform: translateY(-2px); background: var(--blue-dark); border-color: var(--blue-dark); }
.button.secondary { color: var(--white); background: transparent; border-color: #66575a; }
.button.secondary:hover { color: var(--white); background: #251114; border-color: var(--blue); }
.button:focus-visible, a:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }
.button:disabled { cursor: wait; opacity: .68; transform: none; }

.signal-panel {
  position: relative;
  min-height: 480px;
  padding: 2rem;
  overflow: hidden;
  background: #0e0e10;
  border: 1px solid #302429;
  border-radius: .3rem;
  display: flex;
  align-items: flex-end;
}

.signal-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px);
  background-size: 48px 48px;
}

.signal-line {
  position: absolute;
  z-index: 0;
  inset: -15% -20% auto auto;
  width: 85%;
  height: 76%;
  border: 1px solid var(--blue);
  transform: rotate(-28deg);
}
.signal-line-inner { inset: -9% -28% auto auto; width: 85%; height: 76%; opacity: .4; }
.signal-caption {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  padding: .9rem 1rem;
  color: var(--white);
  background: rgba(14, 14, 16, .9);
  border: 1px solid rgba(255,255,255,.09);
}
.signal-caption small { display: block; color: var(--muted); font-size: .75rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.signal-step { display: grid; grid-template-columns: 2rem minmax(0, 1fr); column-gap: .8rem; align-items: baseline; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.signal-step:first-of-type { margin-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.16); }
.signal-step > span { grid-row: 1 / span 2; color: var(--blue); font-size: .8rem; font-weight: 750; }
.signal-step strong { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; letter-spacing: -.025em; line-height: 1.2; }
.signal-step em { color: var(--muted); font-size: .82rem; font-style: normal; }

.section { padding-block: clamp(4.5rem, 8vw, 7rem); }
.section-heading { display: grid; grid-template-columns: 1.35fr .85fr; align-items: end; gap: 3rem; margin-bottom: 3rem; }
.section-heading > p { max-width: 410px; margin: 0 0 1.2rem; color: var(--muted); font-size: 1.08rem; }
.section-heading h2 { font-weight: 550; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.service-card { display: flex; flex-direction: column; min-height: 340px; padding: 1.8rem 0; border-top: 2px solid var(--blue); }
.service-number { display: block; margin-bottom: 2.5rem; color: var(--blue); font-size: 1.8rem; font-weight: 450; letter-spacing: -.045em; }
.service-card h3 { font-size: clamp(1.4rem, 2.1vw, 1.8rem); font-weight: 600; }
.service-card p { max-width: 34ch; margin: .3rem 0 2rem; color: var(--muted); }
.service-card small { margin-top: auto; color: #b9b2b2; font-size: .875rem; }
.company-section { padding-top: 0; }

.company-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: .3rem;
}
.company-strip p { max-width: 46ch; color: var(--muted); }
.company-strip h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 550; }
.legal-name { display: block; margin-top: .75rem; color: var(--muted); font-size: 1rem; font-weight: 600; letter-spacing: .12em; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.fact { padding: 1rem 0; border-top: 1px solid #534348; }
.fact small { display: block; color: var(--muted); }
.fact strong { display: block; margin-top: .2rem; }

.site-footer { color: #bcb5b5; background: #050506; border-top: 1px solid #321217; }
.footer-inner { padding-block: 3rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-links a { color: var(--white); text-decoration: none; }
.footer-links a:hover { color: #ff5a67; }
.footer-meta { margin: .8rem 0 0; font-size: .9rem; }

.legal-main { max-width: 860px; padding-block: 5rem 7rem; }
.legal-main .lead { color: var(--muted); font-size: 1.1rem; }
.legal-main section { margin-top: 3rem; }
.legal-main h2 { margin-bottom: .8rem; font-size: 1.65rem; letter-spacing: -.02em; }
.legal-main li + li { margin-top: .5rem; }
.legal-main a { color: #ff6673; }
.legal-main address { font-style: normal; }
.notice { padding: 1.2rem 1.3rem; background: #241013; border-left: 4px solid var(--blue); }

.contact-main { padding-block: clamp(3.5rem, 7vw, 6rem); }
.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.contact-intro h1 { max-width: 11ch; margin-bottom: 0; font-size: clamp(3.1rem, 5.3vw, 5rem); font-weight: 650; letter-spacing: -.055em; }
.contact-intro > p { max-width: 430px; margin: 0 0 .8rem; color: var(--muted); font-size: 1.12rem; }
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(1.4rem, 3vw, 2rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: 0;
}
.contact-aside, .contact-form { min-width: 0; padding: clamp(1.8rem, 4vw, 3rem); background: var(--surface); border: 1px solid var(--line); border-radius: .3rem; }
.contact-aside { border-top: 3px solid var(--blue); }
.contact-number { display: block; margin-bottom: 2.2rem; color: var(--blue); font-size: .82rem; font-weight: 750; letter-spacing: .12em; line-height: 1; }
.contact-aside h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 550; }
.contact-aside p { max-width: 31ch; color: var(--muted); }
.contact-aside .contact-note { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid #534348; font-size: .9rem; }
.contact-form { position: relative; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; margin-bottom: .45rem; color: #ded9d7; font-size: .9rem; font-weight: 700; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: .8rem .9rem;
  color: var(--white);
  background: #0d0d0e;
  border: 1px solid #66575a;
  border-radius: .25rem;
  font: inherit;
}
.field textarea { min-height: 190px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9b8388; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--aqua); outline-offset: 2px; border-color: transparent; }
.field input:valid:not(:placeholder-shown), .field textarea:valid:not(:placeholder-shown) { border-color: #46715a; }
.field textarea::placeholder { color: #92898b; opacity: 1; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-top: .4rem; }
.contact-actions .button { cursor: pointer; font: inherit; }
.contact-privacy { margin: 1.2rem 0 0; color: var(--muted); font-size: .88rem; }
.contact-privacy a { color: var(--white); }
.contact-status { min-height: 1.7rem; margin: 1rem 0 0; color: var(--muted); font-weight: 650; }
.contact-status.is-success { color: var(--aqua); }
.contact-status.is-error { color: #ff8490; }
.contact-trap, .contact-trap[hidden] { display: none !important; }

@media (max-width: 820px) {
  .site-nav a:not(.nav-contact) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 4.5rem; }
  .signal-panel { min-height: 360px; }
  .hero h1 { font-size: clamp(3rem, 8.5vw, 4.8rem); }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-number { margin-bottom: 1.5rem; }
  .company-strip, .footer-inner { grid-template-columns: 1fr; }
  .contact-intro, .contact-shell { grid-template-columns: 1fr; }
  .contact-intro { align-items: start; }
  .contact-intro h1 { max-width: 11ch; }
}

@media (max-width: 520px) {
  .nav-wrap, .hero, .section, .legal-main, .contact-main, .footer-inner { width: calc(100% - 2.5rem); }
  .nav-wrap { min-height: 76px; gap: .7rem; }
  .brand { gap: .5rem; }
  .brand-mark { width: 33px; height: 33px; }
  .brand-text { font-size: .9rem; }
  .site-nav { gap: .5rem; }
  .site-nav a { font-size: .875rem; }
  .eyebrow { font-size: .75rem; letter-spacing: .1em; }
  .hero { padding-top: 3rem; }
  .hero h1 { font-size: clamp(2.8rem, 10.8vw, 3.4rem); }
  .hero-actions { gap: .75rem; }
  .hero-actions .button { width: 100%; }
  .signal-panel { min-height: 330px; padding: 1.5rem; }
  .company-strip { gap: 1.5rem; }
  .facts { grid-template-columns: 1fr; }
  .contact-main { padding-top: 3rem; }
  .contact-intro h1 { font-size: clamp(2.8rem, 10.8vw, 3.4rem); }
  .contact-shell { gap: 1rem; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-actions .button { width: 100%; }
}

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