:root {
  --bg: #0b4fb9;
  --accent: #f4aa2a;
  --white: #ffffff;
  --muted: rgba(210, 235, 255, 0.65);
  --glass: rgba(185, 210, 255, 0.25);
  --glass-2: rgba(160, 190, 245, 0.22);
  --stroke: rgba(255, 255, 255, 0.16);
  --shadow: rgba(0, 18, 65, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", "Helvetica Neue", sans-serif;
  background: #0240bc;
  color: var(--white);
}

.screen {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 18px 0;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

/* subtle vignette like the image */
.screen::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0) 60%
  );
  pointer-events: none;
  transform: translateY(-6%);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  z-index: 1;
}

.brand__mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.brand__name {
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.brand__nameTop {
  font-weight: 800;
  font-size: clamp(48px, 7vw, 82px);
}

.brand__nameBottom {
  font-weight: 800;
  font-size: clamp(48px, 7vw, 82px);
  margin-top: -6px;
}

/* mimic the “tech” cuts by slightly squaring corners of letters via font weight + tracking */
@supports (font-variation-settings: normal) {
  .brand__nameTop,
  .brand__nameBottom {
    font-variation-settings: "wght" 850;
    letter-spacing: 0.04em;
  }
}

.brand__tagline {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.95;
}

.brand__subtitle {
  margin: 6px 0 0;
  font-weight: 500;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.15;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.links {
  width: min(520px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}

.pill {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  height: 74px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--white);

  background: linear-gradient(180deg, var(--glass), var(--glass-2));
  border: 1px solid var(--stroke);
  box-shadow:
    0 14px 34px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pill::after {
  content: "";
  position: absolute;
  inset: 10px 14px;
  border-radius: 999px;
  background: radial-gradient(
    120% 140% at 15% 20%,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0) 55%
  );
  pointer-events: none;
}

.pill__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--accent);
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.22));
}

.ico {
  width: 34px;
  height: 34px;
  display: block;
  color: var(--accent);
}

.pill__label {
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 30px;
  text-align: center;
  transform: translateX(-14px); /* centers text visually like in the reference */
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.pill:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

@media (hover: hover) {
  .pill:hover {
    transform: translateY(-1px);
    box-shadow:
      0 18px 44px rgba(0, 18, 65, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.26),
      inset 0 -1px 0 rgba(0, 0, 0, 0.14);
  }
}

.skyline {
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 0;
}

.skyline__strip {
  height: 18px;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.15);
}

.skyline__art {
  width: 100%;
  height: min(220px, 26vh);
  display: block;
}

/* Smaller screens: match tighter spacing like the image */
@media (max-width: 420px) {
  .screen {
    padding-top: 46px;
    gap: 18px;
  }

  .links {
    gap: 16px;
  }

  .pill {
    height: 70px;
  }

  .pill__label {
    font-size: 28px;
  }
}


