:root {
  --xl-bg: #f5f5f4;
  --xl-panel: #ffffff;
  --xl-ink: #0f0f0f;
  --xl-muted: #5f5f5f;
  --xl-line: #d9d9d6;
  --xl-clear: #13805f;
  --xl-alert: #c43f4f;
  --xl-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: inherit;
}

.xl-landing {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    var(--xl-bg);
  background-size:
    34px 34px,
    34px 34px,
    auto;
}

.xl-nav {
  position: fixed;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  min-height: 58px;
  padding: 0.45rem 0.55rem;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(11, 11, 11, 0.72);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.xl-wordmark,
.xl-nav-links,
.xl-nav-links a {
  display: inline-flex;
  align-items: center;
}

.xl-wordmark {
  gap: 0.65rem;
  min-width: 0;
  font-weight: 820;
  text-decoration: none;
}

.xl-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #111111;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.xl-nav svg,
.xl-capability-grid svg,
.xl-check-list svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 2.2;
}

.xl-nav-links {
  gap: 0.18rem;
}

.xl-nav-links a {
  min-height: 40px;
  padding: 0.48rem 0.7rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
}

.xl-nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.xl-nav-links .xl-login {
  margin-left: 0.2rem;
  background: #ffffff;
  color: #111111;
}

.xl-hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  padding: 120px 24px 80px;
  overflow: hidden;
  place-items: end start;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45) 44%, rgba(0, 0, 0, 0.2)),
    var(--hero-bg) center / cover no-repeat;
  color: #ffffff;
}

.xl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.76));
}

.xl-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.xl-kicker {
  margin: 0 0 0.9rem;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.xl-hero .xl-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.xl-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(4rem, 11vw, 9.4rem);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 0.86;
}

.xl-hero-copy {
  max-width: 710px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  line-height: 1.45;
}

.xl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.xl-hero-actions .btn,
.xl-contact-card .btn {
  border-radius: 8px;
  font-weight: 780;
}

.xl-hero-stats {
  display: grid;
  max-width: 860px;
  margin: 2rem 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.xl-hero-stats div {
  min-height: 88px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.xl-hero-stats dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.xl-hero-stats dd {
  margin: 0.32rem 0 0;
  font-size: 0.98rem;
  font-weight: 760;
}

.xl-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.xl-section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.xl-section-head h2,
.xl-two-up h2,
.xl-contact-panel h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.98;
}

.xl-section-head p,
.xl-two-up p,
.xl-contact-panel p,
.xl-contact-card p {
  color: var(--xl-muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.xl-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 1rem;
  align-items: stretch;
}

.xl-screen {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--xl-line);
  border-radius: 10px;
  background: var(--xl-panel);
  box-shadow: var(--xl-shadow);
}

.xl-screen img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top center;
}

.xl-screen figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 740;
  backdrop-filter: blur(12px);
}

.xl-capability-grid {
  display: grid;
  gap: 0.75rem;
}

.xl-capability-grid article,
.xl-fit-grid article,
.xl-contact-card {
  border: 1px solid var(--xl-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.xl-capability-grid article {
  padding: 1.05rem;
}

.xl-capability-grid svg {
  color: var(--xl-clear);
}

.xl-capability-grid h3,
.xl-fit-grid h3,
.xl-contact-card h3 {
  margin: 0.65rem 0 0.35rem;
  font-size: 1rem;
  font-weight: 820;
  letter-spacing: 0;
}

.xl-capability-grid p,
.xl-fit-grid p {
  margin: 0;
  color: var(--xl-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.xl-ops {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  background: #111111;
  color: #ffffff;
}

.xl-two-up {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.xl-ops .xl-kicker {
  color: rgba(255, 255, 255, 0.64);
}

.xl-ops p {
  color: rgba(255, 255, 255, 0.72);
}

.xl-check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.xl-check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.xl-check-list svg {
  margin-top: 0.12rem;
  color: var(--xl-clear);
}

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

.xl-fit-grid article {
  min-height: 230px;
  padding: 1.25rem;
}

.xl-fit-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--xl-alert);
  font-size: 0.74rem;
  font-weight: 840;
}

.xl-contact {
  padding-top: 2rem;
}

.xl-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 1rem;
  align-items: stretch;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid #191919;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--xl-shadow);
}

.xl-contact-card {
  padding: 1.1rem;
  background: #f8f8f8;
}

.xl-email-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 0.85rem;
  color: var(--xl-ink);
  font-weight: 820;
  overflow-wrap: anywhere;
}

.xl-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  padding: 1.4rem 0 2rem;
  margin: 0 auto;
  border-top: 1px solid var(--xl-line);
  color: var(--xl-muted);
  font-size: 0.92rem;
  font-weight: 680;
}

.xl-footer a {
  color: var(--xl-ink);
  font-weight: 820;
  text-decoration: none;
}

.xl-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .xl-nav {
    position: absolute;
  }

  .xl-nav-links a:not(.xl-login) {
    display: none;
  }

  .xl-hero {
    min-height: 86svh;
  }

  .xl-hero-stats,
  .xl-showcase,
  .xl-two-up,
  .xl-fit-grid,
  .xl-contact-panel {
    grid-template-columns: 1fr;
  }

  .xl-showcase {
    gap: 1.2rem;
  }
}

@media (max-width: 576px) {
  .xl-nav {
    top: 10px;
    right: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }

  .xl-wordmark span:last-child {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .xl-hero {
    min-height: 88svh;
    padding: 98px 18px 42px;
  }

  .xl-hero h1 {
    font-size: clamp(3.1rem, 18vw, 4.4rem);
  }

  .xl-hero-copy {
    font-size: 1rem;
  }

  .xl-hero-stats {
    grid-template-columns: 1fr;
    margin-top: 1.2rem;
  }

  .xl-hero-stats div {
    min-height: 70px;
  }

  .xl-section {
    width: min(100% - 24px, 1180px);
  }

  .xl-section-head h2,
  .xl-two-up h2,
  .xl-contact-panel h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .xl-screen img {
    min-height: 260px;
  }

  .xl-footer {
    width: min(100% - 24px, 1180px);
  }
}
