:root {
  --background: #09040e;
  --background-raised: #13071f;
  --panel: #180b24;
  --panel-soft: #210e2d;
  --control: #150820;
  --hover: #291135;
  --accent: #ff8000;
  --accent-bright: #ff9d3d;
  --text: #efe6f5;
  --muted: #b39ebf;
  --border: #54405c;
  --border-soft: rgba(84, 64, 92, 0.58);
  --success: #66d6a2;
  --display: "Arial Narrow", "Roboto Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--body);
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 8%, rgba(93, 40, 145, 0.24), transparent 31rem),
    radial-gradient(circle at 12% 46%, rgba(255, 128, 0, 0.055), transparent 24rem),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14) 0 0.5px, transparent 0.8px),
    radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.09) 0 0.5px, transparent 0.9px);
  background-size: 5px 5px, 7px 7px;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

::selection {
  color: #0e0812;
  background: var(--accent);
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 200;
  padding: 12px 18px;
  color: #0d0712;
  background: var(--accent);
  border-radius: 0 0 6px 6px;
  font-weight: 800;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 0;
}

.site-shell {
  width: 100%;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, calc(100% - 32px));
  min-height: 72px;
  margin: 12px auto 0;
  padding: 0 18px 0 22px;
  background: rgba(18, 7, 31, 0.9);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 12px 15px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  background: var(--hover);
  border-color: var(--accent);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--control);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
}

.section-pad {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.86fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding-top: clamp(72px, 10vh, 120px);
  padding-bottom: clamp(72px, 10vh, 120px);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.about-copy > .section-kicker {
  font-size: 24px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 128, 0, 0.85);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.42; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1); }
}

.hero h1,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin-top: 25px;
  font-size: clamp(64px, 7.2vw, 116px);
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-lede {
  max-width: 630px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 690px;
  margin-top: 62px;
  border-top: 1px solid var(--border-soft);
}

.hero-trust div {
  display: flex;
  gap: 12px;
  padding: 18px 14px 0 0;
}

.hero-trust strong {
  color: var(--accent);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.hero-trust span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  align-self: center;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(49, 19, 67, 0.82), rgba(11, 4, 18, 0.96)),
    var(--panel);
  border: 3px solid #a855f7;
  border-radius: 6px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4), 0 0 26px rgba(168, 85, 247, 0.22);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.services,
.about,
.contact {
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(100px, 12vw, 180px);
}

.about-copy h2,
.contact-copy h2 {
  margin-top: 17px;
  font-size: clamp(42px, 5vw, 76px);
}

.about-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: clamp(26px, 4vw, 44px);
  text-align: left;
  background: linear-gradient(145deg, rgba(31, 14, 45, 0.94), rgba(18, 7, 26, 0.98));
  border: 2px solid var(--border);
  border-radius: 6px;
}

.service-code {
  color: var(--accent);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
}

.service-title-row strong {
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 34px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.service-description {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-modalities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.service-modalities > div {
  position: relative;
  min-height: 180px;
  padding: 22px 20px;
  background: var(--control);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
}

.service-modalities h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 27px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-modalities p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
}

.service-pricing div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 12px 16px;
  background: var(--control);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
}

.service-pricing span,
.service-pricing strong {
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-pricing span {
  color: var(--muted);
  font-size: 11px;
}

.service-pricing strong {
  color: var(--accent);
  font-size: 22px;
}

.about-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  padding: clamp(30px, 5vw, 66px);
  background: linear-gradient(145deg, rgba(31, 14, 45, 0.96), rgba(16, 6, 25, 0.98));
  border: 3px solid #a855f7;
  border-radius: 6px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4), 0 0 26px rgba(168, 85, 247, 0.22);
}

.about-portrait {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 3px solid #a855f7;
  border-radius: 6px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4), 0 0 26px rgba(168, 85, 247, 0.22);
}

.portrait-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.about-identity {
  width: fit-content;
  text-align: center;
}

.about-copy .about-role {
  margin: 17px 0 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(44px, 2.8vw, 64px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy .about-lede {
  margin: 31px 0 20px;
  color: var(--text);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
}

.about-copy > p:not(.about-lede) {
  max-width: 680px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.credentials span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: var(--muted);
  background: var(--control);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  font-size: 11px;
}

.credentials i {
  color: var(--accent);
  font-style: normal;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  padding: clamp(30px, 5vw, 66px);
  background: linear-gradient(145deg, rgba(31, 14, 45, 0.96), rgba(16, 6, 25, 0.98));
  border: 2px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.contact-copy h2 {
  margin-top: 17px;
  font-size: clamp(42px, 5vw, 76px);
}

.contact-copy p {
  max-width: 520px;
  margin-top: 27px;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 78px;
  padding: 18px 20px;
  background: var(--control);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  font-style: normal;
}

.contact-item span {
  color: var(--muted);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact-item strong {
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: 0.035em;
  line-height: 1.5;
}

.contact-item i {
  color: var(--accent);
  font-size: 22px;
  font-style: normal;
}

a.contact-item {
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  background: var(--hover);
  border-color: var(--accent);
  transform: translateY(-2px);
  outline: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 27px 26px;
  color: var(--muted);
  background: rgba(18, 7, 31, 0.9);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
}

.footer-brand {
  width: max-content;
}

.footer-brand .brand-logo {
  height: 64px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
  outline: none;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.14em;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 840px;
  }

  .hero-visual {
    width: min(680px, 100%);
    margin: 0 auto;
  }

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

  .service-card {
    min-height: 310px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    margin-top: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(18, 7, 31, 0.98);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .service-modalities {
    grid-template-columns: 1fr;
  }

  .service-modalities > div {
    min-height: 0;
  }

  .about-portrait {
    width: min(520px, 100%);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .section-pad {
    width: min(100% - 28px, 1320px);
  }

  .site-header,
  .site-footer {
    width: calc(100% - 16px);
  }

  .brand-logo,
  .footer-brand .brand-logo {
    height: 44px;
  }

  .hero {
    gap: 54px;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 76px);
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-trust div {
    border-bottom: 1px solid var(--border-soft);
    padding: 13px 0;
  }

  .service-pricing {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    min-height: 440px;
  }

  .about-panel {
    gap: 36px;
    padding: 28px 18px;
  }

  .contact-panel {
    gap: 34px;
    padding: 28px 18px;
  }

  .contact-item {
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
  }

  .contact-item strong {
    grid-column: 1 / -1;
  }

  .contact-item i {
    grid-column: 2;
    grid-row: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .footer-links {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
