:root {
  color-scheme: light;
  --ink: #102033;
  --muted: #5e7188;
  --card: rgba(247, 252, 255, .84);
  --card-strong: rgba(255, 255, 255, .92);
  --line: rgba(65, 103, 130, .18);
  --line-strong: rgba(42, 91, 125, .28);
  --fjord: #123852;
  --deep: #071927;
  --ice: #e8f7ff;
  --blue: #3b82c4;
  --teal: #0f9f9a;
  --aurora-green: #66d19e;
  --aurora-violet: #9b8cff;
  --sunset: #f2a65a;
  --snow: #f8fcff;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(130, 222, 255, .38) 0, transparent 26rem),
    radial-gradient(circle at 88% 5%, rgba(111, 209, 158, .26) 0, transparent 25rem),
    linear-gradient(180deg, #dff4ff 0%, #f8fcff 42%, #edf7fc 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: auto -8vw 0 -8vw;
  height: 30vh;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(165deg, transparent 0 58%, rgba(148, 179, 197, .46) 58.2% 66%, transparent 66.2%),
    linear-gradient(194deg, transparent 0 50%, rgba(197, 222, 235, .78) 50.2% 62%, transparent 62.2%),
    linear-gradient(176deg, transparent 0 42%, rgba(255,255,255,.9) 42.2% 51%, transparent 51.2%),
    linear-gradient(180deg, transparent 0%, rgba(198, 226, 238, .8) 52%, rgba(244, 250, 253, .98) 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .35;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.96) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(148, 190, 211, .55) 0 1px, transparent 1.6px);
  background-size: 44px 44px, 72px 72px;
  background-position: 0 0, 18px 12px;
}

.aurora {
  position: fixed;
  inset: -24rem -16vw auto -18vw;
  height: 42rem;
  pointer-events: none;
  opacity: .74;
  background:
    linear-gradient(104deg,
      transparent 0 12%,
      rgba(94, 215, 153, .50) 24%,
      rgba(61, 184, 193, .24) 38%,
      rgba(135, 112, 255, .28) 55%,
      rgba(237, 125, 184, .20) 70%,
      transparent 86%);
  filter: blur(46px) saturate(1.15);
  transform: rotate(-7deg) skewY(-4deg);
  z-index: -1;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1fr minmax(250px, 350px);
  gap: 1.5rem;
  align-items: end;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 .75rem;
  color: #075c61;
  background: rgba(225, 249, 252, .78);
  border: 1px solid rgba(37, 150, 157, .20);
  border-radius: 999px;
  padding: .42rem .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  font-size: .74rem;
  box-shadow: 0 10px 28px rgba(15, 81, 105, .08);
}

h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2.45rem, 6.4vw, 5.8rem);
  line-height: .90;
  letter-spacing: -.065em;
  color: var(--deep);
  text-shadow: 0 2px 0 rgba(255,255,255,.9), 0 20px 42px rgba(27, 74, 104, .16);
}

h1::after {
  content: "Arctic coast • Ice, harbour, aurora";
  display: block;
  margin-top: .85rem;
  font-size: clamp(.75rem, 1.5vw, .95rem);
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #41677f;
  font-weight: 800;
}

.coverage {
  max-width: 760px;
  color: #29465d;
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 1rem 0 0;
}

.status-card, .section-card, .note-card, .highlight-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top-color: rgba(255,255,255,.92);
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(21, 72, 105, .13), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
}

.status-card {
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.status-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--aurora-green), #58c7d8, var(--aurora-violet), var(--sunset));
}

.label, .item-topline {
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .115em;
  font-weight: 900;
}

.updated {
  font-size: 1.3rem;
  color: var(--fjord);
  font-weight: 900;
  margin: .25rem 0 .6rem;
}

.status { color: #45647b; line-height: 1.48; }

main { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem 3.5rem; }

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.highlight-card {
  padding: 1.05rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.highlight-card::after {
  content: "";
  position: absolute;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 999px;
  right: -4rem;
  top: -5rem;
  background: radial-gradient(circle, rgba(111, 209, 158, .25), transparent 68%);
}

.highlight-card strong {
  display:block;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--fjord);
}
.highlight-card span { color: var(--muted); font-weight: 800; }

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

.section-card { padding: 1rem; }

.section-card:nth-child(5), .section-card:nth-child(6) { border-color: rgba(15, 159, 154, .24); }

.section-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .9rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(65, 103, 130, .12);
}

.icon {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, #ffffff, #dff5ff 54%, #c9edf5);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 8px 20px rgba(24, 89, 119, .12);
  font-size: 1.22rem;
}

h2 { margin: 0; font-size: 1.13rem; letter-spacing: -.025em; color: var(--fjord); }
.items { display: grid; gap: .85rem; }

.empty {
  color: var(--muted);
  padding: .9rem;
  background: rgba(240, 248, 252, .72);
  border-radius: 19px;
  border: 1px dashed rgba(80, 132, 160, .27);
}

.item-card {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: .95rem;
  padding: .78rem;
  border: 1px solid rgba(65, 103, 130, .14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(243,250,253,.68));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

.thumb {
  width: 136px;
  height: 136px;
  object-fit: cover;
  border-radius: 19px;
  background: linear-gradient(135deg, #dff5ff, #f4fbff 46%, #c7e5ef);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 12px 26px rgba(25, 78, 107, .16);
}

.thumb[hidden] { display: none; }
.item-card.no-image { grid-template-columns: 1fr; }

h3 { margin: .18rem 0 .35rem; font-size: 1rem; color: #132a3c; }
.summary { margin: 0; color: #304c63; line-height: 1.48; }
ul.details { margin: .55rem 0 0; padding-left: 1.05rem; color: #4f6880; }
.meta { margin-top: .7rem; display: flex; flex-wrap: wrap; gap: .42rem; }

.badge {
  color: #24485e;
  background: rgba(226, 244, 250, .86);
  border: 1px solid rgba(71, 134, 160, .18);
  padding: .24rem .54rem;
  border-radius: 999px;
  font-size: .77rem;
  font-weight: 850;
}

.note-card { margin-top: 1rem; padding: 1.15rem; }
.note-card h2::before { content: "Public bulletin • "; color: var(--teal); }
.muted { color: var(--muted); }

::selection { background: rgba(102, 209, 158, .35); }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding-top: 2.5rem; }
  .grid, .highlights { grid-template-columns: 1fr; }
  h1::after { letter-spacing: .08em; }
}

@media (max-width: 520px) {
  .hero { padding-left: 1rem; padding-right: 1rem; }
  main { padding-left: 1rem; padding-right: 1rem; }
  .item-card { grid-template-columns: 1fr; }
  .thumb { width: 100%; height: 205px; }
  h1 { font-size: clamp(2.25rem, 14vw, 3.7rem); }
}

.item-card.highlight-item {
  border-color: rgba(15, 159, 154, .42);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(226, 248, 247, .74));
  box-shadow: 0 14px 34px rgba(15, 104, 113, .14), inset 0 1px 0 rgba(255,255,255,.9);
}

.badge-highlight {
  color: #064e52;
  background: linear-gradient(135deg, rgba(102, 209, 158, .36), rgba(88, 199, 216, .30));
  border-color: rgba(15, 159, 154, .38);
}
