/* ============================================================
   Weertje — marketing site styles
   Light theme only. Sky-blue background with drifting clouds.
   ============================================================ */

:root {
  --knmi-blue:        #003E7E;
  --knmi-blue-light:  #1565C0;
  --knmi-blue-ink:    #002B57;
  --sky-top:          #4FA3E3;
  --sky-mid:          #88C1EE;
  --sky-bottom:       #B7DCF7;
  --sky-fade:         #E8F1FA;

  --surface:          #FFFFFF;
  --surface-frost:    rgba(255, 255, 255, 0.72);
  --surface-soft:     #F4F7FB;

  --accent-yellow:    #FFB300;
  --rain-blue:        #3D8BFD;
  --ok-green:         #2BB36A;
  --danger:           #E53935;

  --ink:              #0E1726;
  --ink-2:            #2A3B55;
  --ink-3:            #5A6B85;
  --ink-4:            #8497AE;

  --hairline:         rgba(0, 62, 126, 0.08);
  --hairline-strong:  rgba(0, 62, 126, 0.14);

  --shadow-xs:        0 1px 2px rgba(0, 62, 126, 0.06);
  --shadow-sm:        0 2px 6px rgba(0, 62, 126, 0.08);
  --shadow-md:        0 1px 2px rgba(0, 62, 126, 0.06), 0 10px 30px rgba(0, 62, 126, 0.10);
  --shadow-lg:        0 2px 4px rgba(0, 62, 126, 0.06), 0 30px 60px rgba(0, 62, 126, 0.16);
  --shadow-phone:     0 4px 6px rgba(0, 62, 126, 0.08), 0 40px 80px rgba(0, 62, 126, 0.28);

  --radius-xs:  8px;
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  28px;
  --radius-xl:  36px;
  --radius-pill: 999px;

  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ------- Reset ------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background:
    linear-gradient(
      180deg,
      var(--sky-top) 0%,
      var(--sky-mid) 22%,
      var(--sky-bottom) 42%,
      #DDEAF5 60%,
      var(--surface-soft) 100%
    ) fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; color: var(--knmi-blue-ink); }
h1 { font-weight: 600; }
h2 { font-weight: 600; }
h3 { font-weight: 600; }
p { margin: 0; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ------- Layout ------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

/* ------- Sky / Clouds ------- */
.sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.sky .sun {
  position: absolute;
  top: 8vh;
  right: 6vw;
  width: clamp(140px, 16vw, 220px);
  height: clamp(140px, 16vw, 220px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(255, 235, 190, 0.95) 0%,
    rgba(255, 200, 120, 0.55) 40%,
    rgba(255, 179, 0, 0) 70%);
  filter: blur(0.5px);
  opacity: 0.7;
}
.sky .cloud {
  position: absolute;
  width: 220px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 10px 24px rgba(0, 62, 126, 0.06));
  animation: drift linear infinite;
  will-change: transform;
}
.sky .cloud.c1 { top:  6vh;  left: -25vw; width: 240px; animation-duration: 90s;  animation-delay:  -10s; }
.sky .cloud.c2 { top: 14vh;  left: -25vw; width: 160px; animation-duration: 140s; animation-delay:  -60s; opacity: 0.75; }
.sky .cloud.c3 { top: 28vh;  left: -25vw; width: 320px; animation-duration: 180s; animation-delay:  -30s; opacity: 0.85; }
.sky .cloud.c4 { top: 44vh;  left: -25vw; width: 200px; animation-duration: 120s; animation-delay:  -90s; opacity: 0.7; }
.sky .cloud.c5 { top: 60vh;  left: -25vw; width: 280px; animation-duration: 160s; animation-delay: -120s; opacity: 0.6; }
.sky .cloud.c6 { top: 76vh;  left: -25vw; width: 180px; animation-duration: 110s; animation-delay:  -45s; opacity: 0.5; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(150vw, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .sky .cloud { animation: none; }
}

/* ------- Nav ------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px 10px 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--knmi-blue);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  background: url('/assets/favicon.svg') center/contain no-repeat;
  filter: drop-shadow(0 2px 4px rgba(0,62,126,0.25));
  flex-shrink: 0;
}
.brand-name { font-size: 17px; }

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s var(--ease-out), background .2s var(--ease-out);
}
.nav-links a:hover { color: var(--knmi-blue); background: rgba(0, 62, 126, 0.06); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--knmi-blue) !important;
  color: #fff !important;
  padding: 9px 16px !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 6px 18px rgba(0,62,126,0.30);
}
.nav-cta:hover { background: var(--knmi-blue-light) !important; }

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ------- Hero ------- */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 7vw, 88px) 0 clamp(60px, 8vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--knmi-blue);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xs);
}
.dot.live {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok-green);
  box-shadow: 0 0 0 4px rgba(43, 179, 106, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(43, 179, 106, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(43, 179, 106, 0.06); }
}

.display {
  margin-top: 22px;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--knmi-blue-ink);
  max-width: 14ch;
}
.display em {
  font-style: normal;
  background: linear-gradient(180deg, var(--knmi-blue-light), var(--knmi-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.lede {
  margin-top: 22px;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 52ch;
  text-wrap: pretty;
}

.cta-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 8px 20px rgba(14, 23, 38, 0.25);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.store-badge:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 14px 30px rgba(14, 23, 38, 0.32); }
.store-badge .glyph { width: 26px; height: 26px; }
.store-badge .lbl { display: inline-flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store-badge .lbl .small { font-size: 11px; font-weight: 400; opacity: 0.78; letter-spacing: 0.01em; }
.store-badge .lbl .big   { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }

.hero-meta {
  margin-top: 28px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--ink-3);
}
.hero-meta strong { color: var(--knmi-blue-ink); font-weight: 600; }
.hero-meta .sep { width: 1px; height: 14px; background: var(--hairline-strong); }

/* ------- Phone mockup ------- */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.phone-stage::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  inset: -10%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  filter: blur(20px);
}
.phone {
  position: relative;
  width: clamp(260px, 28vw, 330px);
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(180deg, #1a232f 0%, #0a121f 100%);
  border-radius: 48px;
  padding: 10px;
  box-shadow: var(--shadow-phone), 0 0 0 1px rgba(0,0,0,0.4);
  transform: rotate(-1.5deg);
  transition: transform .6s var(--ease-out);
}
.phone:hover { transform: rotate(0deg) translateY(-4px); }

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-top) 0%, #5DAEEC 28%, #82C0EF 58%, var(--sky-bottom) 100%);
  color: #fff;
}
.phone-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.dyn-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.phone-status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.phone-status .right { display: inline-flex; gap: 6px; align-items: center; }
.phone-status .bars { display: inline-flex; gap: 2px; align-items: end; }
.phone-status .bars i { display: block; width: 3px; background: #fff; border-radius: 1px; }
.phone-status .bars i:nth-child(1) { height: 4px; }
.phone-status .bars i:nth-child(2) { height: 6px; }
.phone-status .bars i:nth-child(3) { height: 8px; }
.phone-status .bars i:nth-child(4) { height: 10px; }
.phone-status .wifi {
  width: 15px; height: 11px;
  background:
    radial-gradient(circle at 50% 100%, #fff 0 2px, transparent 2.5px),
    radial-gradient(circle at 50% 100%, transparent 4.5px, #fff 4.5px 5.5px, transparent 6px),
    radial-gradient(circle at 50% 100%, transparent 7.5px, #fff 7.5px 8.5px, transparent 9px);
}
.phone-status .batt {
  width: 24px; height: 11px;
  border: 1.2px solid rgba(255,255,255,0.85);
  border-radius: 3px;
  padding: 1px;
  position: relative;
}
.phone-status .batt::after {
  content: '';
  position: absolute;
  right: -3px; top: 3px;
  width: 2px; height: 5px;
  background: rgba(255,255,255,0.85);
  border-radius: 0 1px 1px 0;
}
.phone-status .batt span {
  display: block;
  height: 100%;
  width: 78%;
  background: #fff;
  border-radius: 1.5px;
}

.ws {
  padding: 36px 22px 22px;
  height: calc(100% - 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ws-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  align-self: center;
}
.ws-loc::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.35);
}
.ws-temp {
  text-align: center;
  font-size: 88px;
  font-weight: 200;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: -4px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ws-temp sup { font-size: 32px; font-weight: 200; vertical-align: top; margin-left: 2px; opacity: 0.75; }
.ws-cond { text-align: center; font-size: 16px; font-weight: 500; opacity: 0.98; }
.ws-range { text-align: center; font-size: 12.5px; opacity: 0.78; }

.ws-card {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 12px 14px;
}
.ws-card h4 {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin: 0 0 10px;
}
.ws-hours { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.ws-hour {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.92);
}
.ws-hour .t { font-weight: 600; font-size: 13px; }
.ws-hour .ic {
  width: 18px; height: 18px; border-radius: 50%;
}
.ws-hour.sun .ic   { background: var(--accent-yellow); box-shadow: 0 0 10px rgba(255,179,0,0.55); }
.ws-hour.cloud .ic { background: #fff; opacity: 0.9; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
.ws-hour.rain .ic  { background: var(--rain-blue); box-shadow: 0 0 8px rgba(61,139,253,0.4); }
.ws-hour.mix .ic   { background: linear-gradient(135deg, var(--accent-yellow) 0 50%, #fff 50% 100%); }

.ws-radar {
  position: relative;
  margin-top: 2px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  height: 92px;
  overflow: hidden;
}
.ws-radar .map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(circle at 75% 30%, rgba(255,255,255,0.08), transparent 50%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.06));
}
.ws-radar .blob {
  position: absolute;
  top: 30%; left: 38%;
  width: 70px; height: 50px;
  background: radial-gradient(ellipse at center, rgba(61,139,253,0.85) 0%, rgba(61,139,253,0.3) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(2px);
  animation: blob-drift 12s ease-in-out infinite alternate;
}
.ws-radar .pin {
  position: absolute;
  top: 50%; left: 56%;
  width: 10px; height: 10px;
  background: #fff;
  border: 2.5px solid var(--knmi-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.35);
}
.ws-radar .label {
  position: absolute;
  top: 10px; left: 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(14px, -6px) scale(1.05); }
}

.ws-bottom {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-top: 10px;
}
.ws-stat {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 8px 6px;
  text-align: center;
}
.ws-stat .k { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.ws-stat .v { font-size: 13px; font-weight: 600; margin-top: 2px; }

/* ------- Live strip ------- */
.live-strip-section {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(40px, 6vw, 64px);
}
.live-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.live-strip .label {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding-right: 22px;
  border-right: 1px solid var(--hairline);
}
.live-strip .label .top {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.live-strip .label .clock {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  color: var(--knmi-blue-ink);
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.live-strip .cities {
  display: flex;
  gap: 24px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.live-strip .cities::-webkit-scrollbar { display: none; }
.city {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
  font-size: 14px;
}
.city .name { color: var(--ink-2); font-weight: 500; }
.city .val { display: inline-flex; align-items: center; gap: 4px; color: var(--knmi-blue-ink); font-weight: 600; }
.city .val .deg { font-weight: 400; opacity: 0.7; margin-left: -1px; }
.city .ic { width: 10px; height: 10px; border-radius: 50%; }
.city.sun .ic   { background: var(--accent-yellow); box-shadow: 0 0 8px rgba(255,179,0,0.5); }
.city.cloud .ic { background: #cfd9e6; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
.city.rain .ic  { background: var(--rain-blue); }
.city.mix .ic   { background: linear-gradient(135deg, var(--accent-yellow) 0 50%, #cfd9e6 50% 100%); }

@media (max-width: 720px) {
  .live-strip { flex-direction: column; align-items: stretch; gap: 12px; }
  .live-strip .label { border-right: 0; border-bottom: 1px solid var(--hairline); padding: 0 0 12px; flex-direction: row; align-items: baseline; justify-content: space-between; }
}

/* ------- Section heads ------- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(36px, 4vw, 56px);
}
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; gap: 18px; align-items: start; } }
.section-kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--knmi-blue-light);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-weight: 600;
  color: var(--knmi-blue-ink);
  text-wrap: balance;
  max-width: 22ch;
}
.section-head p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 42ch;
  text-wrap: pretty;
}

/* ------- Features bento ------- */
.features { position: relative; z-index: 1; padding: clamp(40px, 6vw, 88px) 0; }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.feature {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-md);
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.feature.span-3 { grid-column: span 3; }
.feature.span-4 { grid-column: span 4; }
@media (max-width: 960px) { .feature, .feature.span-3, .feature.span-4 { grid-column: span 3; } .bento { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 640px) { .feature, .feature.span-3, .feature.span-4 { grid-column: span 6; } }

.feature .icon {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  background: rgba(0, 62, 126, 0.06);
  color: var(--knmi-blue);
  border-radius: 11px;
}
.feature h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--knmi-blue-ink);
}
.feature p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
  text-wrap: pretty;
}
.feature .card-foot {
  margin-top: auto;
  padding-top: 14px;
}

/* Mini visual elements inside feature cards */
.minichart { display: flex; align-items: end; gap: 6px; height: 60px; }
.minichart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--sky-top), var(--knmi-blue-light));
  border-radius: 4px 4px 0 0;
  opacity: 0.55;
}
.minichart .bar.today { background: linear-gradient(180deg, var(--accent-yellow), #FF8A00); opacity: 1; }
.minichart-x { display: flex; gap: 6px; margin-top: 6px; font-size: 10.5px; color: var(--ink-4); letter-spacing: 0.04em; }
.minichart-x span { flex: 1; text-align: center; }
.minichart-x .today { color: var(--knmi-blue); font-weight: 600; }

.stat-list { display: grid; gap: 6px; }
.stat-list .row { display: flex; align-items: baseline; gap: 10px; }
.stat-list .n { font-size: 26px; font-weight: 600; color: var(--knmi-blue); letter-spacing: -0.02em; min-width: 28px; }
.stat-list .lbl { font-size: 13px; color: var(--ink-3); }

.mini-radar {
  position: relative;
  background:
    radial-gradient(circle at 30% 60%, rgba(61,139,253,0.08), transparent 50%),
    linear-gradient(135deg, #EAF2FB, #DDE9F5);
  border-radius: 14px;
  height: 110px;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.mini-radar .time {
  position: absolute; top: 8px; left: 12px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  color: var(--knmi-blue-ink);
  background: rgba(255,255,255,0.85);
  padding: 2px 8px;
  border-radius: 999px;
}
.mini-radar .rain-blob {
  position: absolute; top: 38%; left: 28%;
  width: 90px; height: 60px;
  background: radial-gradient(ellipse, rgba(61,139,253,0.7), rgba(61,139,253,0) 70%);
  filter: blur(2px);
  animation: radar-drift 14s ease-in-out infinite alternate;
}
.mini-radar .rain-blob.b {
  top: 20%; left: 58%;
  width: 60px; height: 40px;
  background: radial-gradient(ellipse, rgba(255,179,0,0.5), rgba(255,179,0,0) 70%);
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}
.mini-radar .pin {
  position: absolute; top: 55%; left: 52%;
  width: 12px; height: 12px;
  background: #fff;
  border: 3px solid var(--knmi-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,62,126,0.12);
}
@keyframes radar-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(18px, -8px); }
}

.loc-list { display: grid; gap: 6px; }
.loc-list .row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--surface-soft);
  border-radius: 10px;
  font-size: 13.5px;
}
.loc-list .dot { width: 8px; height: 8px; border-radius: 50%; }
.loc-list .row.sun .dot { background: var(--accent-yellow); }
.loc-list .row.mix .dot { background: linear-gradient(135deg, var(--accent-yellow) 0 50%, #cfd9e6 50% 100%); }
.loc-list .row.rain .dot { background: var(--rain-blue); }
.loc-list .name { color: var(--ink-2); font-weight: 500; }
.loc-list .temp { color: var(--knmi-blue-ink); font-weight: 600; }

.tf-row {
  display: flex;
  gap: 4px;
  background: var(--surface-soft);
  padding: 4px;
  border-radius: 10px;
}
.tf {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 4px;
  border-radius: 7px;
  color: var(--ink-3);
}
.tf.on {
  background: var(--surface);
  color: var(--knmi-blue);
  box-shadow: var(--shadow-xs);
}

.notif { display: grid; gap: 8px; }
.notif .row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  background: var(--surface-soft);
  border-radius: 11px;
  font-size: 13px;
}
.notif .row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rain-blue); box-shadow: 0 0 0 3px rgba(61,139,253,0.15); }
.notif .row.off .dot { background: #c8d2e0; box-shadow: none; }
.notif .row.off { color: var(--ink-4); }
.notif .when { font-size: 12px; color: var(--ink-3); font-weight: 500; }

/* Dark feature card variant */
.feature.dark {
  background: linear-gradient(160deg, var(--knmi-blue-ink), var(--knmi-blue) 70%);
  color: #fff;
}
.feature.dark h3 { color: #fff; }
.feature.dark p { color: rgba(255,255,255,0.78); }
.feature.dark .icon { background: rgba(255,255,255,0.10); color: #fff; }

/* ------- Why section ------- */
.why { position: relative; z-index: 1; padding: clamp(40px, 6vw, 88px) 0; }
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }
.why h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-weight: 600;
  color: var(--knmi-blue-ink);
  text-wrap: balance;
}
.lede2 {
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
  text-wrap: pretty;
  max-width: 56ch;
}

.why-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.why-points li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  align-items: start;
}
.why-points .num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--knmi-blue-light);
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.why-points h4 { font-size: 16px; font-weight: 600; color: var(--knmi-blue-ink); }
.why-points p { margin-top: 6px; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

/* ------- Screenshots tour ------- */
.tour { position: relative; z-index: 1; padding: clamp(40px, 6vw, 88px) 0; }
.shots-wrap {
  position: relative;
  margin-top: 32px;
  padding: 24px 0 0;
}
.shots-track {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 16px;
  -webkit-overflow-scrolling: touch;
}
.shots-track::-webkit-scrollbar { display: none; }
.shots {
  display: flex;
  gap: 24px;
  padding: 0 32px;
  min-width: max-content;
  align-items: flex-end;
}
.shots-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--knmi-blue-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px -8px rgba(0,40,90,0.35);
  transition: transform .2s var(--ease-out), opacity .2s var(--ease-out), background .2s;
}
.shots-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.shots-nav:active { transform: translateY(-50%) scale(0.96); }
.shots-nav:disabled { opacity: 0.35; cursor: default; }
.shots-nav.prev { left: -6px; }
.shots-nav.next { right: -6px; }
@media (max-width: 720px) {
  .shots-nav { display: none; }
}
.shots-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 8px;
}
.shots-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,62,126,0.18);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s var(--ease-out), width .2s var(--ease-out);
}
.shots-dots .dot:hover { background: rgba(0,62,126,0.35); }
.shots-dots .dot.active {
  background: var(--knmi-blue);
  width: 22px;
  border-radius: 4px;
}
.shot {
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(180deg, #1a232f 0%, #0a121f 100%);
  border-radius: 36px;
  padding: 7px;
  box-shadow: var(--shadow-lg);
  scroll-snap-align: center;
  position: relative;
  transform: translateY(0);
  transition: transform .4s var(--ease-out);
}
.shot:nth-child(odd) { transform: translateY(8px); }
.shot:hover { transform: translateY(-4px); }
.shot-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #0b1220;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.shot-screen > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.shot-caption-overlay {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  background: rgba(10, 14, 22, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}
.shot-caption {
  text-align: center;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin: 4px 0 8px;
}
.shot-title { font-size: 13px; font-weight: 600; letter-spacing: -0.005em; text-align: center; opacity: 0.95; }
.shot-bignum { font-size: 56px; font-weight: 200; letter-spacing: -0.04em; text-align: center; line-height: 1; margin: 8px 0 2px; }
.shot-bignum sup { font-size: 22px; font-weight: 200; opacity: 0.75; vertical-align: top; }
.shot-sub { text-align: center; font-size: 11px; opacity: 0.78; }
.shot-card {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 8px 10px;
  margin-top: 10px;
}
.shot-hours { display: grid; grid-template-columns: repeat(5,1fr); gap: 3px; }
.shot-hours .h { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 9px; }
.shot-hours .h .ic { width: 12px; height: 12px; border-radius: 50%; }
.shot-hours .h .t { font-size: 10px; font-weight: 600; }
.shot-hours .h.sun .ic { background: var(--accent-yellow); }
.shot-hours .h.cloud .ic { background: rgba(255,255,255,0.85); }
.shot-hours .h.rain .ic { background: var(--rain-blue); }
.shot-hours .h.mix .ic { background: linear-gradient(135deg, var(--accent-yellow) 0 50%, rgba(255,255,255,0.85) 50% 100%); }

.shot-rows { display: grid; gap: 6px; }
.shot-row {
  display: grid;
  grid-template-columns: auto 12px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 5px 8px;
  background: rgba(255,255,255,0.14);
  border-radius: 8px;
  font-size: 10.5px;
}
.shot-row .day { font-weight: 600; min-width: 22px; opacity: 0.9; }
.shot-row .ic { width: 12px; height: 12px; border-radius: 50%; }
.shot-row .ic.sun { background: var(--accent-yellow); }
.shot-row .ic.cloud { background: rgba(255,255,255,0.85); }
.shot-row .ic.rain { background: var(--rain-blue); }
.shot-row .ic.mix { background: linear-gradient(135deg, var(--accent-yellow) 0 50%, rgba(255,255,255,0.85) 50% 100%); }
.shot-row .bar { position: relative; height: 4px; background: rgba(255,255,255,0.18); border-radius: 2px; }
.shot-row .bar span {
  position: absolute;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-yellow), #FF7A00);
  border-radius: 2px;
}
.shot-row .temps { font-weight: 600; font-size: 10.5px; }

.shot-radar {
  position: relative;
  flex: 1;
  margin-top: 8px;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.12), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,0.08), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.18);
}
.shot-radar .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}
.shot-radar .b1 { top: 30%; left: 25%; width: 60px; height: 50px; background: radial-gradient(circle, rgba(61,139,253,0.85), rgba(61,139,253,0) 70%); }
.shot-radar .b2 { top: 50%; left: 55%; width: 45px; height: 35px; background: radial-gradient(circle, rgba(255,179,0,0.55), rgba(255,179,0,0) 70%); }
.shot-radar .pin {
  position: absolute;
  top: 50%; left: 52%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--knmi-blue);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
}

.shot-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.16);
  border-radius: 10px;
  font-size: 10.5px;
}
.shot-loc .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.shot-loc.sun .dot { background: var(--accent-yellow); }
.shot-loc.cloud .dot { background: rgba(255,255,255,0.85); }
.shot-loc.rain .dot { background: var(--rain-blue); }
.shot-loc.mix .dot { background: linear-gradient(135deg, var(--accent-yellow) 0 50%, rgba(255,255,255,0.85) 50% 100%); }
.shot-loc .name { font-weight: 500; flex: 1; }
.shot-loc .t { font-weight: 600; }
.shot-loc.active { background: rgba(255,255,255,0.28); outline: 1px solid rgba(255,255,255,0.32); }

.shot-spacer { flex: 1; min-height: 8px; }

/* ------- FAQ ------- */
.faq { position: relative; z-index: 1; padding: clamp(40px, 6vw, 88px) 0; }
.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--knmi-blue-ink);
  letter-spacing: -0.01em;
  transition: background .2s var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(0,62,126,0.025); }
.faq-item summary .plus {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
  color: var(--knmi-blue-light);
  transition: transform .3s var(--ease-out);
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.faq-item summary .plus::before { width: 12px; height: 1.8px; }
.faq-item summary .plus::after  { width: 1.8px; height: 12px; transition: transform .3s var(--ease-out); }
.faq-item[open] summary .plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item .body {
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 70ch;
}

/* ------- Footer ------- */
footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(60px, 8vw, 120px);
  background: linear-gradient(180deg, #001E47, #00102A);
  color: rgba(255,255,255,0.78);
  padding: clamp(48px, 6vw, 80px) 0 28px;
}
footer .brand { color: #fff; }
footer .brand-name { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-about p { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,0.65); max-width: 32ch; line-height: 1.55; }
footer h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 14px;
}
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
footer ul a { color: rgba(255,255,255,0.82); font-size: 14.5px; transition: color .15s var(--ease-out); }
footer ul a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ------- Reveal animation ------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------- Legal page layout ------- */
.legal {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}
.legal-shell {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 56px);
  max-width: 880px;
  margin: 0 auto;
}
.legal-shell h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--knmi-blue-ink);
}
.legal-meta {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-3);
}
.legal-shell h2 {
  margin-top: 40px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--knmi-blue-ink);
  scroll-margin-top: 100px;
}
.legal-shell h3 {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--knmi-blue-ink);
}
.legal-shell p, .legal-shell ul, .legal-shell ol {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 68ch;
}
.legal-shell ul, .legal-shell ol { padding-left: 22px; }
.legal-shell li { margin-top: 6px; }
.legal-shell a {
  color: var(--knmi-blue-light);
  text-decoration: underline;
  text-decoration-color: rgba(21, 101, 192, 0.3);
  text-underline-offset: 3px;
}
.legal-shell a:hover { text-decoration-color: var(--knmi-blue-light); }

.legal-toc {
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 28px;
  font-size: 14.5px;
}
.legal-toc strong { display: block; color: var(--knmi-blue-ink); margin-bottom: 8px; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.legal-toc ol { margin: 0; padding-left: 18px; }
.legal-toc li { margin: 4px 0; }
.legal-toc a { color: var(--ink-2); text-decoration: none; }
.legal-toc a:hover { color: var(--knmi-blue); }

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--knmi-blue);
  font-weight: 500;
}
.back-home:hover { color: var(--knmi-blue-light); }

/* Print */
@media print {
  .sky, .nav, footer { display: none !important; }
  body { background: #fff; color: #000; }
  .legal-shell { box-shadow: none; padding: 0; }
}
