:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #061321;
  color: #f7fbff;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 75% 25%, #0c3146 0, transparent 32%),
    linear-gradient(135deg, #061321, #081827 55%, #04101b);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
  padding: 70px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #18c9ef;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 650px;
  margin: 28px 0;
  color: #b8c8d7;
  font-size: 1.15rem;
  line-height: 1.7;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.services span {
  padding: 9px 14px;
  border: 1px solid #1b6179;
  border-radius: 999px;
  color: #d8f7ff;
  background: rgb(12 53 72 / 45%);
  font-size: 0.9rem;
}

.contact {
  margin-bottom: 30px;
  color: #d7e6f5;
}

.contact p {
  margin: 8px 0;
  font-size: 1rem;
}

.contact a {
  color: #8ee9fb;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 6px;
  background: #11c7eb;
  color: #03111c;
  font-weight: 800;
  text-decoration: none;
}

.button:hover { background: #62ddf6; }

.card-panel img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgb(0 0 0 / 45%);
}

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0;
  }

  .content { text-align: center; }

  .intro {
    margin-right: auto;
    margin-left: auto;
  }

  .services { justify-content: center; }
}
