:root {
  --bg: #ffffff;
  --bg-deep: #ffffff;
  --text-main: #0f1b2e;
  --text-subtle: #3a4a63;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff !important;
}

body {
  background: #ffffff !important;
  color: var(--text-main);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, #16d47d 0%, #14d7b5 45%, #1ea7ff 100%) top / 100% 6px no-repeat,
    linear-gradient(90deg, #16d47d 0%, #14d7b5 45%, #1ea7ff 100%) bottom / 100% 6px no-repeat;
  pointer-events: none;
  z-index: 1000;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(16, 55, 41, 0.035) 0,
    rgba(16, 55, 41, 0.035) 1px,
    transparent 1px,
    transparent 44px
  );
  z-index: 0;
}

.hero {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.logo {
  display: block;
  width: min(94vw, 1320px);
  max-height: 62vh;
  object-fit: contain;
  filter: brightness(1.07);
}

.description {
  margin: clamp(14px, 2.2vh, 28px) 0 0;
  max-width: 900px;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.34;
  color: #1c3258;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(236, 243, 252, 0.88));
  box-shadow: 0 10px 28px rgba(17, 54, 101, 0.12);
  text-wrap: balance;
}

.contact-link {
  margin-top: 14px;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  color: #0b66d1;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 102, 209, 0.35);
  padding-bottom: 2px;
}

.contact-link:hover {
  color: #084fa5;
  border-bottom-color: rgba(8, 79, 165, 0.55);
}
