@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  --g900: oklch(0.225 0.052 155);
  --g800: oklch(0.288 0.072 154);
  --g700: oklch(0.352 0.090 153);
  --g600: oklch(0.432 0.108 151);
  --g500: oklch(0.528 0.126 150);
  --g300: oklch(0.760 0.098 150);
  --g100: oklch(0.928 0.042 150);
  --g50:  oklch(0.968 0.020 150);

  --y600: oklch(0.610 0.118 78);
  --y500: oklch(0.762 0.142 82);
  --y400: oklch(0.838 0.122 85);
  --y100: oklch(0.955 0.052 88);

  --ink:   oklch(0.215 0.018 155);
  --body:  oklch(0.395 0.014 155);
  --muted: oklch(0.545 0.012 155);
  --line:  oklch(0.905 0.006 155);
  --line2: oklch(0.845 0.008 155);
  --white: oklch(0.996 0.002 150);
  --mist:  oklch(0.978 0.004 150);

  --ok:    oklch(0.545 0.135 150);
  --warn:  oklch(0.610 0.150 55);

  --f: 'Schibsted Grotesk', -apple-system, 'Segoe UI', sans-serif;

  --r:  8px;
  --r2: 14px;
  --gut: clamp(1.125rem, 0.7rem + 1.7vw, 2.25rem);
  --bay: clamp(3.75rem, 2.3rem + 5.4vw, 6.5rem);
  --max: 1280px;

  --lift: 0 1px 2px oklch(0.225 0.052 155 / 0.05), 0 8px 28px oklch(0.225 0.052 155 / 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--f);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; color: var(--ink); font-weight: 700; line-height: 1.12; letter-spacing: -0.024em; text-wrap: balance; }
p { margin: 0 0 1em; }
figure { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--y500); outline-offset: 2px; border-radius: 3px;
}

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }

.skip { position: absolute; left: -9999px; background: var(--g800); color: #fff; padding: 0.75rem 1.25rem; z-index: 100; border-radius: 0 0 var(--r) 0; }
.skip:focus { left: 0; top: 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--g600); margin-bottom: 0.875rem;
}
.kicker::before { content: ''; width: 22px; height: 3px; background: var(--y500); border-radius: 2px; }
.on-dark .kicker { color: var(--y400); }

/* ---------- header ---------- */

.masthead { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 60; }
.masthead-top { display: flex; align-items: center; justify-content: space-between; gap: var(--gut); padding-block: 0.9375rem; }
.brandmark { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brandmark img { height: 40px; width: auto; }
.brandmark-text { display: flex; flex-direction: column; line-height: 1.2; }
.brandmark-text b { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.brandmark-text span { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.055em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 460px) { .brandmark-text { display: none; } }

.mainnav { display: flex; align-items: center; gap: clamp(0.35rem, 1.4vw, 1.25rem); list-style: none; margin: 0; padding: 0; }
.mainnav ul { list-style: none; margin: 0; padding: 0; }
.mainnav > li { position: relative; }
.mainnav > li > a {
  display: block; padding: 0.5rem 0.75rem; border-radius: var(--r);
  font-size: 0.9375rem; font-weight: 500; color: var(--ink); text-decoration: none;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.mainnav > li > a:hover { background: var(--g50); color: var(--g700); }
.mainnav > li > a[aria-current="page"] { background: var(--g100); color: var(--g800); font-weight: 600; }

.submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 18rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r2);
  box-shadow: var(--lift); padding: 0.5rem; z-index: 70;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.mainnav > li:hover .submenu, .mainnav > li:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
/* Rightmost dropdowns open leftwards so they cannot push out the page width. */
.mainnav > li:nth-last-child(-n+2) .submenu { left: auto; right: 0; }
.submenu a { display: block; padding: 0.5625rem 0.875rem; border-radius: var(--r); font-size: 0.875rem; color: var(--body); text-decoration: none; }
.submenu a:hover { background: var(--g50); color: var(--g700); }

.navtoggle { display: none; align-items: center; gap: 0.5rem; min-height: 44px; background: var(--g50); border: 1px solid var(--line2); border-radius: var(--r); padding: 0.5rem 0.875rem; font: inherit; font-size: 0.875rem; font-weight: 500; color: var(--ink); cursor: pointer; }

.ticker { background: var(--g900); color: var(--g100); font-size: 0.8125rem; overflow: hidden; padding-block: 0.5625rem; }
.ticker-track { display: flex; gap: 3.5rem; white-space: nowrap; animation: slide 48s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker b { color: var(--y500); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.6875rem; margin-right: 0.5rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 44px;
  padding: 0.8125rem 1.375rem; border-radius: var(--r); border: 1.5px solid transparent;
  font: inherit; font-size: 0.9375rem; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-gold  { background: var(--y500); color: var(--g900); border-color: var(--y500); }
.btn-gold:hover { background: var(--y400); border-color: var(--y400); }
.btn-green { background: var(--g600); color: #fff; border-color: var(--g600); }
.btn-green:hover { background: var(--g700); border-color: var(--g700); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line2); }
.btn-ghost:hover { background: var(--g50); border-color: var(--g300); color: var(--g700); }
.on-dark .btn-ghost { color: #fff; border-color: oklch(1 0 0 / 0.35); }
.on-dark .btn-ghost:hover { background: oklch(1 0 0 / 0.12); border-color: oklch(1 0 0 / 0.6); }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- hero ---------- */

.hero { background: var(--g900); color: oklch(0.905 0.020 150); position: relative; overflow: hidden; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 88% 8%, oklch(0.432 0.108 151 / 0.55), transparent 62%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: clamp(2rem, 4vw, 4.5rem); align-items: center; padding-block: clamp(3.25rem, 2rem + 5vw, 5.75rem); }
.hero h1 { color: #fff; font-size: clamp(2.375rem, 1.4rem + 3.9vw, 4rem); font-weight: 800; letter-spacing: -0.032em; margin-bottom: 1.125rem; }
.hero h1 em { font-style: normal; color: var(--y500); }
.hero-lede { font-size: clamp(1rem, 0.95rem + 0.32vw, 1.1875rem); max-width: 46ch; margin-bottom: 2rem; color: oklch(0.878 0.022 150); }
.hero .actions { margin-bottom: 2rem; }

.trustline { display: flex; align-items: center; gap: 0.75rem; font-size: 0.8125rem; color: oklch(0.775 0.028 150); }
.trustline span { display: inline-flex; align-items: center; gap: 0.4375rem; }
.trustline i { width: 7px; height: 7px; border-radius: 50%; background: var(--y500); flex: none; }

.hero-panel { background: var(--white); border-radius: var(--r2); box-shadow: var(--lift); overflow: hidden; }
.hero-panel-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); }
.hero-panel-top h2 { font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.01em; }
.hero-panel-top a { font-size: 0.8125rem; font-weight: 600; color: var(--g600); text-decoration: none; }
.hero-panel-top a:hover { text-decoration: underline; }
.hero-panel-figure { height: 168px; }
.hero-panel-figure img { width: 100%; height: 100%; object-fit: cover; }

.mini { list-style: none; margin: 0; padding: 0; }
.mini li { padding: 0.9375rem 1.25rem; border-bottom: 1px solid var(--line); }
.mini li:last-child { border-bottom: none; }
.mini .row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.mini h3 { font-size: 0.9375rem; font-weight: 600; letter-spacing: -0.01em; }
.mini h3 a { text-decoration: none; }
.mini h3 a:hover { color: var(--g600); }
.mini .meta { font-size: 0.8125rem; color: var(--muted); margin-top: 0.1875rem; }
.mini .empty { padding: 1.75rem 1.25rem; text-align: center; }
.mini .empty p { font-size: 0.875rem; color: var(--muted); margin: 0.375rem 0 0; }

.pill {
  display: inline-flex; align-items: center; gap: 0.375rem; flex: none;
  padding: 0.1875rem 0.5625rem; border-radius: 999px;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill-open   { background: var(--g100); color: var(--g800); }
.pill-soon   { background: var(--y100); color: oklch(0.435 0.100 62); }
.pill-closed { background: oklch(0.945 0.004 155); color: var(--muted); }

/* ---------- stats ---------- */

.stats { background: var(--g800); color: #fff; }
.stats-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; background: oklch(1 0 0 / 0.14); }
.stats-inner > div { background: var(--g800); padding: 1.75rem clamp(1rem, 2vw, 1.75rem); }
.stats dt { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--g300); margin-bottom: 0.375rem; }
.stats dd { margin: 0; font-size: clamp(1.875rem, 1.4rem + 1.7vw, 2.625rem); font-weight: 800; letter-spacing: -0.03em; color: #fff; font-variant-numeric: tabular-nums; }
.stats dl { margin: 0; display: contents; }

/* ---------- sections ---------- */

.sec { padding-block: var(--bay); }
.sec-mist { background: var(--mist); }
.sec-tint { background: var(--g50); }
.sec-head { max-width: 46rem; margin-bottom: clamp(2rem, 1.4rem + 1.6vw, 3rem); }
.sec-head h2 { font-size: clamp(1.75rem, 1.3rem + 1.9vw, 2.625rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.sec-head p { font-size: 1.0625rem; color: var(--body); margin: 0; max-width: 60ch; }
.sec-head.between { max-width: none; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.sec-head.between > div { max-width: 46rem; }

/* ---------- opportunity rows ---------- */

.opps { border: 1px solid var(--line); border-radius: var(--r2); overflow: hidden; background: var(--white); }
.opp {
  display: grid; grid-template-columns: 6.5rem minmax(0, 1fr) 12rem 10rem;
  gap: 1.25rem; align-items: center; padding: 1.1875rem 1.5rem;
  border-bottom: 1px solid var(--line); text-decoration: none;
  transition: background 0.16s var(--ease);
}
.opp:last-child { border-bottom: none; }
.opp:hover { background: var(--g50); }
.opp .code { font-size: 0.8125rem; font-weight: 600; color: var(--g600); font-variant-numeric: tabular-nums; background: var(--g100); padding: 0.25rem 0.5rem; border-radius: var(--r); justify-self: start; }
.opp h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 0.1875rem; }
.opp .desc { font-size: 0.875rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.opp .op { font-size: 0.875rem; font-weight: 600; color: var(--body); }
.opp .when { font-size: 0.875rem; color: var(--muted); }
.opp .when b { display: block; color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }

.notice { display: flex; gap: 0.875rem; align-items: flex-start; background: var(--y100); border: 1px solid var(--y400); border-radius: var(--r2); padding: 1.125rem 1.25rem; margin-bottom: 1.5rem; }
.notice b { color: oklch(0.395 0.095 62); }
.notice p { margin: 0; font-size: 0.9375rem; color: oklch(0.435 0.070 62); }

/* ---------- services ---------- */

.svc { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r2); overflow: hidden; }
.svc article { background: var(--white); padding: clamp(1.5rem, 1.2rem + 1vw, 2.125rem); transition: background 0.18s var(--ease); }
.svc article:hover { background: var(--g50); }
.svc h3 { font-size: 1.1875rem; font-weight: 700; letter-spacing: -0.018em; margin-bottom: 0.625rem; }
.svc p { font-size: 0.9375rem; margin: 0 0 1rem; }
.svc .n { display: block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; color: var(--y600); margin-bottom: 0.875rem; }
.svc ul { list-style: none; margin: 0; padding: 0; }
.svc li { position: relative; padding-left: 1.125rem; font-size: 0.875rem; color: var(--muted); margin-bottom: 0.3125rem; }
.svc li::before { content: ''; position: absolute; left: 0; top: 0.5625rem; width: 6px; height: 6px; border-radius: 50%; background: var(--g300); }

/* ---------- mandate ---------- */

.mandate { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: clamp(1.5rem, 1.2rem + 1vw, 2.5rem); }
.mandate article { border-top: 3px solid var(--y500); padding-top: 1.25rem; }
.mandate .n { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; color: var(--y600); }
.mandate h3 { font-size: 1.125rem; font-weight: 700; margin: 0.5rem 0 0.5rem; letter-spacing: -0.015em; }
.mandate p { font-size: 0.9375rem; margin: 0; }

/* ---------- operators ---------- */

.roster { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 175px), 1fr)); background: var(--white); border: 1px solid var(--line); border-radius: var(--r2); overflow: hidden; list-style: none; margin: 0; padding: 0; }
.roster li { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 5.5rem; display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem 0.875rem; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.02em; color: var(--body); transition: background 0.18s var(--ease), color 0.18s var(--ease); }
.roster li:hover { background: var(--g600); color: #fff; }

/* ---------- notices ---------- */

.notes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(1.25rem, 1rem + 1vw, 2rem); }
.notes article { background: var(--white); border: 1px solid var(--line); border-radius: var(--r2); padding: clamp(1.375rem, 1.1rem + 0.9vw, 1.875rem); transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease); }
.notes article:hover { border-color: var(--g300); box-shadow: var(--lift); }
.notes time { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--y600); display: block; margin-bottom: 0.625rem; }
.notes h3 { font-size: 1.1875rem; font-weight: 700; letter-spacing: -0.018em; margin-bottom: 0.5rem; }
.notes h3 a { text-decoration: none; }
.notes h3 a:hover { color: var(--g600); }
.notes p { font-size: 0.9375rem; margin: 0; }

/* ---------- cta ---------- */

.cta { background: var(--g600); color: #fff; }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(1.75rem, 3vw, 3.5rem); align-items: center; padding-block: clamp(2.75rem, 2rem + 3vw, 4.25rem); }
.cta h2 { color: #fff; font-size: clamp(1.625rem, 1.25rem + 1.7vw, 2.375rem); font-weight: 800; letter-spacing: -0.028em; margin-bottom: 0.75rem; }
.cta p { color: oklch(0.925 0.030 150); margin: 0; }
.cta .actions { justify-content: flex-end; }

/* ---------- footer ---------- */

.footer { background: var(--g900); color: oklch(0.815 0.022 150); padding-block: var(--bay) 2rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(1.75rem, 1.4rem + 1.5vw, 3rem); }
.footer h2 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--y500); margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.5625rem; }
.footer a { font-size: 0.9375rem; color: oklch(0.845 0.020 150); text-decoration: none; }
.footer a:hover { color: var(--y500); }
.footer address { font-style: normal; font-size: 0.9375rem; line-height: 1.7; }
.footer-mark img { height: 46px; width: auto; margin-bottom: 1.125rem; background: #fff; padding: 0.5rem 0.75rem; border-radius: var(--r); }
.footer-mark p { font-size: 0.9375rem; max-width: 36ch; }
.colophon { border-top: 1px solid oklch(1 0 0 / 0.14); margin-top: var(--bay); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.875rem; color: oklch(0.735 0.020 150); }
.colophon ul { display: flex; gap: 1.5rem; }

/* ---------- page header ---------- */

.pagehead { background: var(--g900); color: oklch(0.885 0.022 150); padding-block: clamp(2.75rem, 2rem + 3vw, 4.5rem); }
.pagehead h1 { color: #fff; font-size: clamp(2rem, 1.5rem + 2.6vw, 3.25rem); font-weight: 800; letter-spacing: -0.03em; }
.pagehead p { margin: 1rem 0 0; font-size: 1.0625rem; max-width: 58ch; color: oklch(0.865 0.024 150); }

/* ---------- inner pages ---------- */

.crumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0 0 1.125rem; padding: 0; font-size: 0.8125rem; color: oklch(0.735 0.026 150); }
.crumbs a { color: var(--y500); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs li + li::before { content: '/'; margin-right: 0.5rem; color: oklch(0.605 0.024 150); }

.split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.prose p { font-size: 1.0625rem; margin-bottom: 1.125rem; max-width: 66ch; }
.prose h2 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2rem); font-weight: 800; letter-spacing: -0.026em; margin: 2.5rem 0 0.875rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.prose li { margin-bottom: 0.4375rem; max-width: 64ch; }

.aside { background: var(--g50); border: 1px solid var(--g100); border-radius: var(--r2); padding: clamp(1.375rem, 1.1rem + 0.9vw, 1.875rem); }
.aside h3 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g600); margin-bottom: 0.875rem; }
.aside dl { margin: 0; }
.aside dt { font-size: 0.9375rem; font-weight: 700; color: var(--ink); margin-top: 1rem; }
.aside dt:first-child { margin-top: 0; }
.aside dd { margin: 0.125rem 0 0; font-size: 0.9375rem; }

.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r2); overflow: hidden; }
.values article { background: var(--white); padding: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.values h3 { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.5rem; }
.values p { font-size: 0.9375rem; margin: 0; }
.values .n { display: block; width: 30px; height: 3px; background: var(--y500); border-radius: 2px; margin-bottom: 1rem; }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { position: relative; counter-increment: step; padding: 0 0 2rem 4.25rem; }
.steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 0;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--g600); color: #fff; font-size: 0.875rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.steps li::after { content: ''; position: absolute; left: 1.34rem; top: 2.75rem; bottom: 0; width: 2px; background: var(--g100); }
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.375rem; padding-top: 0.4375rem; }
.steps p { font-size: 0.9375rem; margin: 0; max-width: 62ch; }

.paths { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(1.25rem, 1rem + 1vw, 1.75rem); }
.paths article { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--r2); padding: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.paths article.pick { border-color: var(--g600); border-width: 2px; }
.paths .badge { position: absolute; top: -0.6875rem; left: clamp(1.5rem, 1.2rem + 1vw, 2rem); background: var(--g600); color: #fff; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.625rem; border-radius: 999px; }
.paths h3 { font-size: 1.1875rem; font-weight: 700; letter-spacing: -0.018em; margin-bottom: 0.625rem; }
.paths p { font-size: 0.9375rem; margin: 0 0 1.125rem; }
.paths ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.paths li { position: relative; padding-left: 1.375rem; font-size: 0.875rem; color: var(--muted); margin-bottom: 0.4375rem; }
.paths li::before { content: ''; position: absolute; left: 0; top: 0.4375rem; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--g300); }
.paths .btn { margin-top: auto; }

.faq { border: 1px solid var(--line); border-radius: var(--r2); overflow: hidden; background: var(--white); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: none; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.125rem 1.5rem; font-size: 1rem; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.375rem; font-weight: 400; color: var(--g600); line-height: 1; flex: none; }
.faq details[open] summary::after { content: '\2013'; }
.faq summary:hover { background: var(--g50); }
.faq .a { padding: 0 1.5rem 1.375rem; font-size: 0.9375rem; max-width: 68ch; }
.faq .a p { margin: 0; }

.infobox { background: var(--y100); border: 1px solid var(--y400); border-radius: var(--r2); padding: clamp(1.25rem, 1rem + 0.8vw, 1.625rem); }
.infobox h3 { font-size: 1rem; font-weight: 700; color: oklch(0.395 0.095 62); margin-bottom: 0.5rem; }
.infobox p { font-size: 0.9375rem; color: oklch(0.435 0.070 62); margin: 0 0 0.625rem; max-width: 72ch; }
.infobox p:last-child { margin-bottom: 0; }
.infobox a { color: oklch(0.355 0.090 62); font-weight: 600; }

/* ---------- forms and filters ---------- */

.field { margin-bottom: 1.125rem; }
.field label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--ink); margin-bottom: 0.375rem; }
.field .req { color: var(--warn); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.6875rem 0.875rem; border: 1px solid var(--line2); border-radius: var(--r);
  font: inherit; font-size: 0.9375rem; color: var(--ink); background: var(--white);
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--g500); box-shadow: 0 0 0 3px var(--g100); outline: none; }
.field .hint { font-size: 0.8125rem; color: var(--muted); margin: 0.3125rem 0 0; }
.two-up { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 0 1rem; }

.alert { border-radius: var(--r2); padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.9375rem; }
.alert-ok { background: var(--g100); border: 1px solid var(--g300); color: var(--g800); }
.alert-bad { background: oklch(0.955 0.028 25); border: 1px solid oklch(0.835 0.078 25); color: oklch(0.435 0.135 25); }

.filters { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: flex-end; background: var(--mist); border: 1px solid var(--line); border-radius: var(--r2); padding: 1.125rem 1.25rem; margin-bottom: 1.75rem; }
.filters .field { margin: 0; flex: 1 1 180px; }
.filters .field label { font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.filters .btn { flex: none; }
.result-count { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }

.blank { text-align: center; border: 1px dashed var(--line2); border-radius: var(--r2); padding: clamp(2.5rem, 2rem + 2vw, 4rem) 1.5rem; }
.blank h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.blank p { font-size: 0.9375rem; margin: 0 auto 1.25rem; max-width: 46ch; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r2); overflow: hidden; margin-bottom: clamp(2rem, 1.6rem + 1.6vw, 3rem); }
.contact-grid > div { background: var(--white); padding: clamp(1.375rem, 1.1rem + 0.9vw, 1.75rem); }
.contact-grid h3 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g600); margin-bottom: 0.625rem; }
.contact-grid p, .contact-grid address { font-size: 0.9375rem; font-style: normal; margin: 0; line-height: 1.65; }
.contact-grid a { color: var(--ink); font-weight: 500; }

.mapframe { border: 1px solid var(--line); border-radius: var(--r2); overflow: hidden; background: var(--mist); }
.mapframe iframe { display: block; width: 100%; height: clamp(280px, 34vw, 420px); border: 0; }

.detail { border-top: 1px solid var(--line); padding-top: 1.5rem; margin-top: 1.5rem; }
.detail dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); gap: 1.25rem; margin: 0; }
.detail dt { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.detail dd { margin: 0; font-size: 0.9375rem; font-weight: 600; color: var(--ink); }

@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------- motion ---------- */

.rise { opacity: 0; transform: translateY(14px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.rise.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .rise { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .hero-inner, .cta-inner { grid-template-columns: 1fr; }
  .cta .actions { justify-content: flex-start; }
  .opp { grid-template-columns: 5.5rem minmax(0, 1fr) 9rem; }
  .opp .when { display: none; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .navtoggle { display: inline-flex; }
  .mainnav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.125rem;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--lift); padding: 0.625rem var(--gut) 1rem;
  }
  .mainnav.open { display: flex; }
  .mainnav > li > a { min-height: 44px; display: flex; align-items: center; }
  .submenu a { min-height: 44px; display: flex; align-items: center; }
  .masthead-top { position: relative; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 0.75rem; }
  .mainnav > li:nth-last-child(-n+2) .submenu { right: auto; }
}

@media (max-width: 720px) {
  .opp { grid-template-columns: 1fr auto; gap: 0.5rem 0.875rem; }
  .opp .code { grid-row: 1; }
  .opp .body { grid-column: 1 / 3; }
  .opp .op { grid-column: 1 / 3; font-size: 0.8125rem; color: var(--muted); }
  .footer-grid { grid-template-columns: 1fr; }
}
