:root {
  color-scheme: dark;
  --bg: #07090d;
  --ink: #f7f5ed;
  --muted: rgba(247, 245, 237, 0.68);
  --soft: rgba(247, 245, 237, 0.1);
  --line: rgba(247, 245, 237, 0.14);
  --cyan: #74d8ff;
  --mint: #78efc8;
  --panel: #101722;
  --warm: #efe6d5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--bg);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(116, 216, 255, 0.24), transparent 30rem),
    linear-gradient(135deg, #06080c, #0c121a 62%, #06080c);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.98) 0%, rgba(7, 9, 13, 0.88) 34%, rgba(7, 9, 13, 0.36) 72%, rgba(7, 9, 13, 0.78) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.2), rgba(7, 9, 13, 0.98));
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.7;
  filter: saturate(0.95) contrast(1.05);
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.1rem 0;
}

.brand,
.main-nav,
.hero-actions,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.15rem;
  aspect-ratio: 1;
  border: 1px solid rgba(247, 245, 237, 0.18);
  background:
    linear-gradient(135deg, rgba(247, 245, 237, 0.16), transparent 44%),
    #0d151f;
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 950;
}

.brand-name,
.brand-subline {
  display: block;
}

.brand-name {
  font-size: 1rem;
  font-weight: 900;
}

.brand-subline {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.main-nav {
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid rgba(247, 245, 237, 0.12);
  background: rgba(7, 9, 13, 0.46);
  backdrop-filter: blur(16px);
}

.main-nav a {
  padding: 0.72rem 0.9rem;
  color: rgba(247, 245, 237, 0.72);
  font-size: 0.92rem;
  font-weight: 780;
}

.main-nav a:hover {
  background: rgba(247, 245, 237, 0.08);
  color: var(--ink);
}

.header-phone {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(247, 245, 237, 0.16);
  background: rgba(247, 245, 237, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100svh - 6rem);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(3.1rem, 7.8vw, 6.75rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.lead {
  max-width: 39rem;
  color: rgba(247, 245, 237, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(247, 245, 237, 0.16);
  font-weight: 850;
}

.button-primary {
  background: var(--ink);
  color: var(--bg);
}

.button-secondary {
  background: rgba(7, 9, 13, 0.38);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.hero-note {
  max-width: 21rem;
  padding: 1.2rem;
  border-left: 2px solid var(--mint);
  background: rgba(7, 9, 13, 0.48);
  backdrop-filter: blur(16px);
}

.hero-note span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--mint);
  font-weight: 950;
}

.hero-note p {
  margin-bottom: 0;
  color: rgba(247, 245, 237, 0.78);
  font-weight: 750;
}

.section,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.intro {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.intro p {
  max-width: 58rem;
  margin-bottom: 0;
  color: rgba(247, 245, 237, 0.8);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.35;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 2rem;
}

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

.service-card {
  min-height: 16.5rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(247, 245, 237, 0.07), rgba(247, 245, 237, 0.025));
}

.service-card p,
.steps span,
.proof p,
.contact-copy p,
.contact-box {
  color: var(--muted);
}

.service-number {
  display: inline-block;
  margin-bottom: 3rem;
  color: var(--cyan);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.steps {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 1.2rem;
  border-left: 2px solid var(--cyan);
  background: rgba(247, 245, 237, 0.04);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 0.35rem;
}

.proof,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.proof {
  padding: 2.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(116, 216, 255, 0.12), rgba(247, 245, 237, 0.04));
}

.proof p {
  margin-bottom: 0;
}

.contact-box {
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: rgba(247, 245, 237, 0.055);
}

.contact-box p {
  margin-bottom: 0.65rem;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.contact-label {
  color: var(--mint);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  gap: 1.3rem;
}

.legal-page h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-note {
    max-width: 34rem;
  }
}

@media (max-width: 820px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-section,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 1.8rem;
  }

  .proof {
    padding: 1.2rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr;
    width: min(100% - 1rem, 1180px);
  }

  .main-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .header-phone {
    width: fit-content;
  }

  .hero-inner,
  .section,
  .site-footer {
    width: min(100% - 1.25rem, 1120px);
  }

  .button {
    width: 100%;
  }
}
