:root {
  --brand-blue: #143cf3;
  --brand-blue-hover: #2b52ff;
  --brand-blue-soft: rgba(20, 60, 243, 0.22);
  --brand-bg: #141415;
  --brand-panel: #18191b;
  --brand-panel-soft: #1d1f23;
  --brand-input: #111214;
  --brand-border: #30343b;
  --brand-text: #ffffff;
  --brand-muted: #a8b0bd;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(20, 60, 243, 0.11), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.045), transparent 24rem),
    var(--brand-bg);
  color: var(--brand-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 42px 0 72px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(48, 52, 59, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 186px;
  height: auto;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--brand-muted);
  font-size: 14px;
  font-weight: 600;
}

.header-links a {
  text-decoration: none;
  transition: color 160ms ease;
}

.header-links a:hover {
  color: var(--brand-text);
}

.hero {
  max-width: 680px;
  padding: 72px 0 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8ea1ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--brand-muted);
  font-size: 18px;
  line-height: 1.7;
}

.pop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 22px;
  padding-top: 32px;
}

.pop-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.92), rgba(24, 25, 27, 0.98));
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.pop-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% 42%;
  height: 260px;
  background: radial-gradient(circle, var(--brand-blue-soft), transparent 70%);
  pointer-events: none;
}

.card-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), transparent);
}

.card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.location-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--brand-input);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
}

.flag img {
  display: block;
  width: 28px;
  height: auto;
  border-radius: 3px;
}

h2 {
  margin: 0;
  color: var(--brand-text);
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 6px 10px;
  color: var(--brand-text);
  background: rgba(20, 60, 243, 0.16);
  border: 1px solid rgba(20, 60, 243, 0.45);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-top: 15px;
  background: var(--brand-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(20, 60, 243, 0.12);
}

.details {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 34px 0 28px;
}

.details div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(48, 52, 59, 0.72);
}

.details dt {
  color: var(--brand-muted);
  font-size: 13px;
  font-weight: 700;
}

.details dd {
  min-width: 0;
  margin: 0;
  color: var(--brand-text);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 14px 18px;
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(20, 60, 243, 0.24);
  color: var(--brand-text);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 32px, 1180px);
    padding-top: 28px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 164px;
  }

  .header-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .pop-card {
    min-height: 0;
    padding: 22px;
  }

  .location-line {
    align-items: flex-start;
  }

  h2 {
    font-size: 22px;
  }

  .details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .button {
    width: 100%;
  }
}
