:root {
  --surface: #0b1326;
  --surface-dim: #060e20;
  --surface-container: rgba(23, 31, 51, 0.62);
  --surface-container-high: rgba(45, 52, 73, 0.72);
  --surface-border: rgba(143, 188, 225, 0.2);
  --surface-border-strong: rgba(143, 188, 225, 0.38);
  --text-main: #dae2fd;
  --text-muted: #c1c7ce;
  --text-faint: #8b9198;
  --frost: #aad8fe;
  --frost-strong: #8fbce1;
  --red-team: #ff8f97;
  --green-team: #8cd9b2;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

html {
  font-size: 16px;
  min-height: 100%;
}

body.glacial-app {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
  font-family: "Geist", "Segoe UI", sans-serif;
  background-color: var(--surface);
  background-image:
    radial-gradient(circle at 18% -10%, rgba(143, 188, 225, 0.22) 0%, rgba(143, 188, 225, 0) 46%),
    radial-gradient(circle at 84% 24%, rgba(170, 216, 254, 0.14) 0%, rgba(170, 216, 254, 0) 42%),
    linear-gradient(rgba(143, 188, 225, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 188, 225, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #060e20 0%, #0b1326 42%, #060e20 100%);
  background-size: 100% 100%, 100% 100%, 36px 36px, 36px 36px, 100% 100%;
  background-attachment: fixed;
}

a {
  color: var(--frost);
  text-decoration: none;
}

a:hover {
  color: #cae6ff;
  text-decoration: underline;
}

.glacial-shell {
  flex: 1;
  width: 100%;
  padding-top: 5.75rem;
  padding-bottom: 2.5rem;
}

.announcement-banner {
  margin-bottom: 1.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 143, 151, 0.38);
  border-left: 4px solid var(--red-team);
  border-radius: var(--radius-md);
  background:rgba(147, 0, 10, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 220, 224, 0.08), 0 14px 32px -26px rgba(0, 0, 0, 0.9);
}

.announcement-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.announcement-banner__label {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #ffdcd8;
  font-family: "Space Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announcement-banner__copy {
  margin: 0;
  color: #fff4f4;
  font-size: 0.98rem;
  line-height: 1.45;
}

.announcement-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.announcement-banner__actions .btn {
  min-width: 12rem;
}

.glacial-main {
  padding-top: 1.5rem;
}

.glacial-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1100;
  background: rgba(6, 14, 32, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(143, 188, 225, 0.15);
}

.glacial-nav {
  min-height: 4.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.glacial-brand-wrap {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.glacial-brand {
  font-family: "Space Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
  color: #f0f9ff;
  padding-right: 1rem;
  border-right: 1px solid rgba(143, 188, 225, 0.2);
}

.glacial-brand:hover {
  text-decoration: none;
}

.glacial-status {
  font-family: "Space Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--frost);
  border: 1px solid rgba(143, 188, 225, 0.28);
  background: rgba(143, 188, 225, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.65rem;
}

.glacial-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  justify-self: center;
}

.glacial-links .nav-link {
  color: var(--text-muted);
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.glacial-links .nav-link:hover {
  color: #f0f9ff;
  text-decoration: none;
  background: rgba(143, 188, 225, 0.1);
}

.page-hero {
  margin-bottom: 2rem;
  text-align: center;
}

.page-hero h1,
.page-hero h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #f0f9ff;
}

.page-hero p {
  margin: 1rem auto 0;
  max-width: 46rem;
  color: var(--text-muted);
}

.glacial-hero {
  position: relative;
  display: block;
  padding: 1.8rem;
  border: 1px solid rgba(143, 188, 225, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(23, 31, 51, 0.78), rgba(10, 18, 38, 0.92)),
    radial-gradient(circle at 84% 16%, rgba(143, 188, 225, 0.08), rgba(143, 188, 225, 0));
  box-shadow: inset 0 1px 0 rgba(202, 230, 255, 0.07), 0 18px 40px -30px rgba(0, 0, 0, 0.85);
  text-align: left;
  overflow: hidden;
}

.glacial-hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
  right: -1.8rem;
  bottom: -1.1rem;
  width: clamp(420px, 62vw, 860px);
  height: clamp(110px, 20vw, 260px);
  background-image: url("../iseage-iceberg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  opacity: 0.24;
  filter: saturate(0.75) brightness(0.9);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: min(100%, 43rem);
}

.page-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--text-faint);
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.glacial-hero h1 {
  margin: 0;
}

.glacial-hero p {
  margin: 1rem 0 0;
  max-width: 40rem;
}

.glacial-summary-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.glacial-summary-list li + li {
  margin-top: 0.45rem;
}

.hero-divider {
  height: 1px;
  width: min(560px, 100%);
  margin: 1rem auto 0;
  background: linear-gradient(90deg, rgba(143, 188, 225, 0), rgba(143, 188, 225, 0.48), rgba(143, 188, 225, 0));
}

.glacial-card {
  position: relative;
  background: var(--surface-container);
  backdrop-filter: blur(16px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(202, 230, 255, 0.08), 0 16px 36px -28px rgba(0, 0, 0, 0.86);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.glacial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(202, 230, 255, 0.08), rgba(202, 230, 255, 0) 52%);
  pointer-events: none;
}

.jobs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(143, 188, 225, 0.22);
  background: rgba(143, 188, 225, 0.06);
  color: var(--text-muted);
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

.jobs-badge--closed {
  color: var(--red-team);
  border-color: rgba(255, 143, 151, 0.3);
  background: rgba(255, 143, 151, 0.08);
}


.glacial-card-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.glacial-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
}

.glacial-card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.glacial-card-actions .btn {
  min-width: 13rem;
  justify-content: center;
}

.glacial-grid {
  align-items: stretch;
  display: grid;
  gap: 1.25rem;
}

.glacial-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.btn {
  border-radius: var(--radius-sm);
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  padding: 0.72rem 1.1rem;
  border-width: 1px;
}

.btn-info {
  color: #02263e;
  border-color: #8fbce1;
  background: linear-gradient(135deg, #aad8fe, #8fbce1);
}

.btn:hover {
  filter: brightness(1.06);
}

.btn:focus {
  box-shadow: 0 0 0 0.18rem rgba(170, 216, 254, 0.2);
}


hr {
  border-color: rgba(143, 188, 225, 0.2);
}

.glacial-footer {
  margin-top: auto;
  border-top: 1px solid rgba(143, 188, 225, 0.14);
  background: rgba(6, 14, 32, 0.84);
  backdrop-filter: blur(14px);
}

.glacial-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.glacial-footer-brand {
  display: block;
  color: var(--frost);
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.glacial-footer-copy {
  margin: 0.2rem 0 0;
  color: var(--text-faint);
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glacial-footer-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.glacial-footer-links a {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.glacial-footer-links a:hover {
  color: #f0f9ff;
  text-decoration: none;
}


@media (max-width: 991.98px) {
  .glacial-hero {
    padding: 1.4rem;
  }

  .hero-copy {
    width: min(100%, 34rem);
  }

  .glacial-hero::before {
    right: -2rem;
    bottom: -0.8rem;
    width: clamp(340px, 70vw, 700px);
    height: clamp(90px, 20vw, 220px);
    opacity: 0.22;
  }

  .glacial-grid-2 {
    grid-template-columns: 1fr;
  }

  .glacial-nav {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .glacial-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .glacial-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .glacial-shell {
    padding-top: 6.6rem;
  }

  .glacial-hero {
    padding: 1.2rem;
  }

  .glacial-hero::before {
    left: auto;
    right: -1.2rem;
    bottom: -0.6rem;
    width: min(120vw, 620px);
    height: 130px;
    opacity: 0.24;
  }

  .glacial-nav {
    grid-template-columns: 1fr;
    justify-items: stretch;
    row-gap: 0.7rem;
  }

  .glacial-brand-wrap,
  .glacial-links {
    width: 100%;
  }

  .glacial-brand-wrap {
    justify-content: space-between;
  }

  .glacial-card-header,
  .glacial-card-actions {
    justify-content: flex-start;
  }

  .glacial-card-actions .btn {
    min-width: 100%;
  }
}
