:root {
  --orange: #ff7700;
  --black: #0b0b0b;
  --panel: #111111;
  --panel-strong: #171717;
  --white: #ffffff;
  --muted: #c9c9c9;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 119, 0, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 119, 0, 0.08), transparent 38%),
    var(--black);
  background-size: 48px 48px, auto, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.landing {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(22px, 5vw, 40px);
  position: relative;
  overflow-x: hidden;
}

.landing::after {
  content: "";
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: var(--orange);
}

.hero {
  width: min(100%, 680px);
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  padding: 0;
}

.brand-lockup {
  display: grid;
  justify-items: center;
  gap: clamp(16px, 4vw, 28px);
}

.brand-mark {
  width: clamp(66px, 12vw, 86px);
  height: auto;
}

.brand-name {
  width: min(100%, 430px);
  height: auto;
}

.service-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--orange);
  font-size: clamp(0.78rem, 2.4vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.service-line span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--white);
}

.services {
  display: grid;
  gap: 12px;
  padding-block: clamp(16px, 2.5vw, 22px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services h2 {
  margin: 0;
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--white);
  font-size: clamp(0.88rem, 1.8vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.28;
}

.service-list li {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--orange);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.action {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.action.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.action:hover,
.action:focus-visible {
  border-color: var(--orange);
  transform: translateY(-2px);
  outline: none;
}

.action:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 119, 0, 0.24);
}

.action svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.label-short {
  display: none;
}

@media (max-width: 560px) {
  .landing {
    align-items: stretch;
    padding: clamp(22px, 7vw, 34px) clamp(22px, 7vw, 34px) calc(104px + env(safe-area-inset-bottom));
  }

  .hero {
    min-height: auto;
    width: 100%;
    align-content: start;
  }

  .brand-lockup {
    gap: 14px;
  }

  .service-line {
    gap: 8px;
  }

  .services {
    gap: 12px;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 7px;
    font-size: 0.9rem;
  }

  .service-list li {
    min-height: 40px;
    padding-block: 9px;
  }

  .contact-actions {
    position: fixed;
    right: clamp(14px, 5vw, 22px);
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: clamp(14px, 5vw, 22px);
    z-index: 10;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    background: rgba(11, 11, 11, 0.9);
    border: 1px solid var(--line);
    box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
  }

  .action {
    min-height: 56px;
    padding: 12px 10px;
    gap: 8px;
    font-size: 0.9rem;
  }

  .label-full {
    display: none;
  }

  .label-short {
    display: inline;
  }
}
