:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.2);
  --red: #cc071e;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  min-height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 48px 18px;
  text-align: center;
}

.content {
  width: min(760px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: min(300px, 74vw);
  height: auto;
  display: block;
  margin: 0 auto 30px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.82rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6.5vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.intro {
  width: min(620px, 100%);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  line-height: 1.62;
}

.intro p {
  margin: 0;
}

.intro p + p {
  margin-top: 14px;
}

.divider {
  width: min(340px, 72vw);
  height: 1px;
  margin: 34px auto 28px;
  background: var(--line);
}

.services-section {
  width: 100%;
}

h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(1.08rem, 3vw, 1.42rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.services {
  margin: 0 auto;
  padding: 0;
  width: min(680px, 100%);
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 10px;
  color: var(--text);
  font-size: clamp(0.94rem, 2.3vw, 1.06rem);
  line-height: 1.35;
}

.services li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.contact {
  display: grid;
  gap: 10px;
  margin: 0;
  font-style: normal;
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  line-height: 1.45;
}

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

a:hover,
a:focus-visible {
  color: var(--red);
  outline: none;
}

@media (max-width: 520px) {
  .page {
    padding: 34px 16px;
  }

  .logo {
    width: min(250px, 76vw);
    margin-bottom: 26px;
  }

  .intro {
    margin-top: 24px;
  }

  .services {
    display: grid;
    gap: 8px;
  }

  .services li {
    width: 100%;
    border-radius: 16px;
  }
}
