/* ============================================================
   Horizon — home rework: hero sea, rotating word, new sections
   Loaded after site.css + products.css.
   ============================================================ */

/* ---------- hero: flat deep-marine background (matches band below) ---------- */
.hero.hero--center {
  background: var(--hz-ink);
  padding-bottom: 240px;
}
#hero-sea {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
  opacity: 1;
}
/* hero background image */
.hero__bg {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  pointer-events: none;
}
/* readability scrim — even vertical darkening so the centered headline stays
   crisp over any video, heavier at top (nav) and bottom (waves + clients) */
.hero__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(8,24,40,0.52) 0%, rgba(8,24,40,0.30) 28%, rgba(8,24,40,0.36) 62%, rgba(8,24,40,0.88) 100%),
    radial-gradient(120% 78% at 50% 46%, rgba(8,24,40,0) 40%, rgba(8,24,40,0.38) 100%);
}
.hero__inner { z-index: 10; }

/* soft local halo directly behind the centered copy — guarantees white text
   stays legible over any frame of the video without darkening the whole hero */
.hero--center .hero__inner { position: relative; }
.hero--center .hero__inner::before {
  content: ""; position: absolute; z-index: -1;
  left: 50%; top: 48%; transform: translate(-50%, -50%);
  width: min(820px, 92%); height: 116%;
  background: radial-gradient(ellipse 60% 54% at 50% 50%, rgba(6,20,34,0.46) 0%, rgba(6,20,34,0.26) 45%, rgba(6,20,34,0) 78%);
  pointer-events: none;
}

/* ver2-style centered hero */
.hero--center .hero__inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero--center .hero__eyebrow { display: flex; justify-content: center; }
/* ver2-style centered hero — sized so the background video reads through */
.hero--center h1 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.96;
  margin-top: 14px;
  max-width: 20ch; margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 2px rgba(6,20,34,0.4), 0 6px 30px rgba(6,20,34,0.4);
}
.hero--center .hero__sub { max-width: 50ch; font-size: clamp(18px, 1.6vw, 20px); margin-top: 18px; margin-left: auto; margin-right: auto; color: var(--hz-fg-on-dark-1); font-weight: 300; text-shadow: 0 1px 16px rgba(6,20,34,0.5); }
.hero--center .hero__cta { justify-content: center; margin-top: 52px; }
.hero--center h1, .hero--center h1 .accent { color: var(--hz-fg-on-dark-1); }
/* the lead sits a step back so the changing noun carries the emphasis —
   no second lime surface needed to make the swap read */
.hero--center h1 .h1__lead { display: block; color: var(--hz-fg-on-dark-2); }

/* ---------- hero: mono kicker — a label, not a third heading level ---------- */
.hero__kicker {
  margin: 0; font-family: var(--hz-font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hz-fg-on-dark-2); text-shadow: 0 1px 10px rgba(6,20,34,0.6);
}

/* ---------- nav: quiet dot on "Aktuelt" replaces the hero news pill ---------- */
.nav__news { display: inline-flex; align-items: center; gap: 7px; }
.nav__news-dot { width: 6px; height: 6px; border-radius: 999px; flex: none; background: var(--hz-fg-on-dark-1); }
.nav__news-dot[hidden] { display: none; }

/* nav CTA is outline while the hero's own primary action is still visible —
   one lime action on screen at a time */
.nav__cta--muted { background: transparent; color: var(--hz-fg-on-dark-1); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.28); }
.nav__cta--muted:hover { background: rgba(255,255,255,0.06); color: var(--hz-fg-on-dark-1); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5); transform: none; }

/* ---------- hero: rotating keyword, now the second line of the H1 ---------- */
.rot {
  display: block; width: fit-content; margin-inline: auto;
  text-align: center; position: relative; min-width: 1ch;
}
.rot__word {
  display: inline-block;
  color: var(--hz-fg-on-dark-1);
  will-change: transform, opacity, filter;
}
.rot__word.out { animation: rotOut 0.42s var(--hz-ease-in-out) forwards; }
.rot__word.in  { animation: rotIn  0.52s var(--hz-ease-out) forwards; }
@keyframes rotOut {
  to { opacity: 0; transform: translateY(-14px); filter: blur(3px); }
}
@keyframes rotIn {
  from { opacity: 0; transform: translateY(16px); filter: blur(3px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero__sub { margin-top: 18px; }
@media (prefers-reduced-motion: reduce) {
  .rot__word.out, .rot__word.in { animation: none; }
}

/* ---------- clearer section separation ---------- */
.band--sep { border-top: 1px solid var(--hz-ink-4); }

/* light "exhale" — paper-canvas treatment for the proof strip (rhythm break) */
.proof--light { background: var(--hz-paper); border-top: 1px solid var(--hz-paper-4); border-bottom: 1px solid var(--hz-paper-4); }
.proof--light .eyebrow { color: var(--hz-fg-2); }
.proof--light .proof__item { border-left-color: var(--hz-paper-4); }
.proof--light .proof__num { color: var(--hz-fg-1); }
.proof--light .proof__num em { color: var(--hz-fg-3); }
.proof--light .proof__label { color: var(--hz-fg-2); }
@media (max-width: 880px) {
  .proof--light .proof__item { border-top-color: var(--hz-paper-4); }
}
.proof__note { margin-top: 8px; font-size: 12.5px; line-height: 1.5; color: var(--hz-fg-3); font-weight: 300; max-width: 30ch; }

/* "what happens after you get in touch" steps */
.cta__steps-label {
  margin: 44px 0 0; font-family: var(--hz-font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--hz-fg-on-dark-3); text-align: center;
}
.cta__steps {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 18px; max-width: 1080px; margin: 20px auto 0;
}
.cstep { display: inline-flex; gap: 9px; align-items: center; }
.cstep__n {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--hz-ink-4); color: var(--hz-hero);
  font-family: var(--hz-font-mono); font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.cstep__t { font-size: 14px; color: var(--hz-fg-on-dark-2); font-weight: 300; white-space: nowrap; }
.cstep__sep { color: var(--hz-fg-on-dark-3); font-size: 14px; }
@media (max-width: 700px) {
  .cta__steps { flex-direction: column; gap: 10px; }
  .cstep__sep { display: none; }
  .cstep__t { white-space: normal; }
}
/* ---------- "Why Horizon" narrative — one shared marine chapter ---------- */
.band--why { background: #0b2436; position: relative; }
/* a single faint marine wash spanning the whole chapter, anchored to each section */
.band--why::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(120% 70% at 85% 0%, rgba(58,143,199,0.09), transparent 60%),
    radial-gradient(90% 60% at 10% 100%, rgba(111,199,184,0.06), transparent 60%);
}
.band--why > .wrap { position: relative; z-index: 1; }
/* chapter open: lime accent hairline signals the start of the story */
.band--why-start { border-top: 1px solid var(--hz-ink-4); box-shadow: inset 0 3px 0 -1px rgba(206,239,67,0.55); }
.band--why-end { border-bottom: 1px solid var(--hz-ink-4); }

.band--tide {
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(58,143,199,0.16), transparent 55%),
    radial-gradient(90% 80% at 95% 100%, rgba(111,199,184,0.10), transparent 60%),
    #0c2840;
  border-top: 1px solid var(--hz-ink-4);
  border-bottom: 1px solid var(--hz-ink-4);
}

/* ============================================================
   HERO CLIENTS — references docked at the bottom of the landing view (ver2)
   ============================================================ */
.hero__clients {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 0 32px 18px;
}
.hero__clients-label {
  font-family: var(--hz-font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--hz-fg-on-dark-3);
  text-align: center;
}
.logo-marquee {
  width: 100%; max-width: 1060px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.logo-marquee__track {
  display: flex; align-items: center; width: max-content;
  animation: logo-scroll 50s linear infinite;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
@keyframes logo-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

/* hero KPIs — credibility anchors */
/* no frame, no vertical rules — one hairline and the type does the work */
.hero__kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; width: 100%; max-width: 940px;
  background: none; border: 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
}
.hero__kpi {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 26px 24px 4px;
  background: none;
  text-align: center;
}
/* clickable KPI → product page */
.hero__kpi--link { position: relative; cursor: pointer; transition: background var(--hz-dur-base) var(--hz-ease-out); text-decoration: none; }
.hero__kpi--link:hover { background: none; }
.hero__kpi--link:hover .hero__kpi-lbl, .hero__kpi--link:focus-visible .hero__kpi-lbl { color: var(--hz-fg-on-dark-1); }
.hero__kpi--link:focus-visible { outline: 2px solid var(--hz-hero); outline-offset: -2px; }
.hero__kpi-more {
  font-family: var(--hz-font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--hz-hero); opacity: 0; transform: translateY(-3px);
  transition: opacity var(--hz-dur-base) var(--hz-ease-out), transform var(--hz-dur-base) var(--hz-ease-out);
}
.hero__kpi--link:hover .hero__kpi-more, .hero__kpi--link:focus-visible .hero__kpi-more { opacity: 1; transform: none; }
@media (hover: none) { .hero__kpi-more { opacity: 1; transform: none; color: var(--hz-fg-on-dark-3); } }
.hero__kpi-num {
  font-family: var(--hz-font-display); font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1;
  color: var(--hz-fg-on-dark-1); letter-spacing: -0.02em;
  display: inline-flex; align-items: baseline;
  text-shadow: 0 2px 18px rgba(6,20,34,0.5);
}
.hero__kpi-num .v { color: var(--hz-hero); }
.hero__kpi-num .pre { color: var(--hz-hero); opacity: 0.85; margin-right: 1px; }
.hero__kpi-num .suf { color: var(--hz-hero); font-size: 0.62em; font-weight: 600; margin-left: 2px; }
.hero__kpi-lbl {
  font-size: 13.5px; line-height: 1.42; font-weight: 300;
  color: var(--hz-fg-on-dark-2); max-width: 24ch;
  text-shadow: 0 1px 12px rgba(6,20,34,0.55);
}
@media (prefers-reduced-motion: reduce) { .logo-marquee__track { animation: none; transform: none; } }
@media (max-width: 720px), (max-height: 760px) {
  .hero.hero--center { padding-bottom: 80px; }
  .hero__clients { position: static; margin-top: 32px; padding-bottom: 0; gap: 12px; }
}
@media (max-width: 720px) {
  .hero__kpis { grid-template-columns: 1fr; max-width: 360px; border-top: 0; }
  .hero__kpi { padding: 15px 20px; border-top: 1px solid rgba(255,255,255,0.14); }
  .hero__kpi-lbl { max-width: none; }
  /* mobile gets its own crop: the calm open water to the right of the stacks,
     so the headline never sits on the busiest part of the photo */
  .hero__bg { object-position: 80% 50%; }
  .hero__scrim {
    background: linear-gradient(to bottom, rgba(8,24,40,0.60) 0%, rgba(8,24,40,0.42) 30%, rgba(8,24,40,0.48) 62%, rgba(8,24,40,0.92) 100%);
  }
  .hero--center h1 { max-width: 16ch; }
  .hero--center .hero__cta { margin-top: 40px; }
}
@media (max-width: 560px) {
  .hero--center .hero__cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-inline: auto; gap: 10px; }
  .hero--center .hero__cta .btn { display: flex; justify-content: center; min-height: 48px; }
}

/* ver2-style product-name line on module cards */
.mod__prods {
  font-family: var(--hz-font-mono); font-size: 12px; letter-spacing: 0.05em;
  color: var(--hz-fg-on-dark-3); margin-top: 2px;
}

/* ============================================================
   QUESTIONS — "vi gir deg tallene bak beslutningene"
   ============================================================ */
.qgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
@media (max-width: 880px) { .qgrid { grid-template-columns: 1fr; } }
.qcard {
  background: var(--hz-ink-2);
  border: 1px solid var(--hz-ink-4);
  border-radius: var(--hz-r-lg);
  padding: 30px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: border-color var(--hz-dur-base), transform var(--hz-dur-base), background var(--hz-dur-base);
}
.qcard:hover { border-color: rgba(206,239,67,0.4); transform: translateY(-3px); background: var(--hz-ink-3); }
.qcard__n {
  font-family: var(--hz-font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--hz-hero); font-weight: 500;
}
.qcard h3 {
  font-family: var(--hz-font-display); font-weight: 600;
  font-size: 22px; line-height: 1.18; letter-spacing: -0.015em;
  margin: 0; color: var(--hz-fg-on-dark-1); text-wrap: balance;
}
.qcard p { margin: 0; font-size: 15px; line-height: 1.58; color: var(--hz-fg-on-dark-2); }
.qcard__q {
  position: absolute; right: 18px; top: 12px;
  font-family: var(--hz-font-display); font-weight: 600; font-size: 64px;
  color: rgba(206,239,67,0.08); line-height: 1; pointer-events: none;
}

/* ---------- nested simulator inside the platform/overview section ---------- */
.sim-divider { margin-top: 88px; padding-top: 60px; border-top: 1px solid var(--hz-ink-4); max-width: 760px; }
.sim-divider h3 {
  font-family: var(--hz-font-display); font-weight: 600;
  font-size: clamp(26px, 3.4vw, 42px); letter-spacing: -0.022em; line-height: 1.06;
  margin: 18px 0 0; color: var(--hz-fg-on-dark-1); text-wrap: balance;
}
.sim-divider h3 .dim { color: var(--hz-fg-on-dark-3); }
.sim-divider p { margin: 18px 0 0; font-size: 17px; line-height: 1.6; color: var(--hz-fg-on-dark-2); font-weight: 300; max-width: 60ch; }

/* ============================================================
   SUSTAINABILITY — bærekraft
   ============================================================ */
.sustain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; }
@media (max-width: 880px) { .sustain { grid-template-columns: 1fr; } }
.spoint {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px; border-radius: var(--hz-r-lg);
  background: rgba(9,28,46,0.5);
  border: 1px solid var(--hz-ink-4);
}
.spoint__ic {
  width: 44px; height: 44px; border-radius: var(--hz-r-md);
  background: rgba(206,239,67,0.1);
  display: flex; align-items: center; justify-content: center; color: var(--hz-hero);
}
.spoint h3 { font-family: var(--hz-font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; margin: 0; color: var(--hz-fg-on-dark-1); }
.spoint p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--hz-fg-on-dark-2); }

/* InvestEU support block */
.investeu {
  margin-top: 22px;
  display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 34px; align-items: center;
  padding: 36px; border-radius: var(--hz-r-lg);
  background: rgba(9,28,46,0.5); border: 1px solid var(--hz-ink-4);
}
@media (max-width: 880px) { .investeu { grid-template-columns: 1fr; gap: 26px; padding: 28px; } }
.investeu__h { font-family: var(--hz-font-display); font-weight: 600; font-size: 24px; letter-spacing: -0.01em; margin: 0 0 16px; color: var(--hz-hero); }
.investeu__body p { margin: 0 0 14px; font-size: 15px; line-height: 1.6; color: var(--hz-fg-on-dark-2); }
.investeu__body p:last-of-type { margin-bottom: 0; }
.investeu__btn { margin-top: 24px; }
.investeu__logo { background: #fff; border-radius: var(--hz-r-md); padding: 30px; display: flex; align-items: center; justify-content: center; }
.investeu__logo img { width: 100%; max-width: 300px; height: auto; display: block; }

/* ============================================================
   FAGMILJØ — team intro tweaks
   ============================================================ */
.team-sub {
  font-family: var(--hz-font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--hz-fg-on-dark-3);
  margin: 72px 0 22px; padding-top: 0;
}

/* fagmiljø — lagbilde på forsiden */
.teamfig { margin: 52px 0 0; display: flex; flex-direction: column; gap: 12px; }
.teamfig img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 7; object-fit: cover; object-position: center 42%; border-radius: var(--hz-r-lg); }
.teamfig figcaption { font-family: var(--hz-font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hz-fg-on-dark-2); line-height: 1.4; }
@media (max-width: 700px) { .teamfig img { aspect-ratio: 4 / 3; } }

/* ledelsen — hairline layout, no card frames */
.team-grid--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 3.4vw, 46px); margin-top: 44px; }
@media (max-width: 880px) { .team-grid--3 { grid-template-columns: 1fr; gap: 34px; } }
.person--flat { background: transparent; border: 0; border-radius: 0; padding: 0; gap: 0; }
.person--flat:hover { transform: none; }
.person--flat .person__bio { max-width: 38ch; }

/* support block without a section head of its own */
.service--lead { margin-top: 44px; }
.service--lead .service__text { justify-content: flex-start; }
.chan { display: flex; flex-direction: column; }
.chan__row { display: grid; grid-template-columns: 128px 1fr; grid-template-areas: 'k v' '. d'; gap: 4px 20px; padding: 20px 0; border-bottom: 1px solid var(--hz-ink-4); }
.chan__row:first-child { border-top: 1px solid var(--hz-ink-4); }
.chan__k { grid-area: k; font-family: var(--hz-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hz-fg-on-dark-3); padding-top: 4px; }
.chan__v { grid-area: v; font-family: var(--hz-font-display); font-weight: 600; font-size: clamp(16px, 1.5vw, 19px); letter-spacing: -0.01em; }
.chan__v a { color: var(--hz-fg-on-dark-1); text-decoration: none; transition: color var(--hz-dur-base) var(--hz-ease-out); }
.chan__v a:hover { color: var(--hz-hero); }
.chan__d { grid-area: d; font-size: 14px; line-height: 1.5; color: var(--hz-fg-on-dark-2); font-weight: 300; }
@media (max-width: 560px) { .chan__row { grid-template-columns: 1fr; grid-template-areas: 'k' 'v' 'd'; gap: 6px; } .chan__k { padding-top: 0; } }

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq { max-width: 820px; margin: 56px auto 0; }
.faq__item { border-top: 1px solid var(--hz-ink-4); }
.faq__item:last-child { border-bottom: 1px solid var(--hz-ink-4); }
.faq__q {
  width: 100%; background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left;
  font-family: var(--hz-font-display); font-weight: 600;
  font-size: clamp(17px, 2vw, 21px); letter-spacing: -0.01em;
  color: var(--hz-fg-on-dark-1);
  transition: color var(--hz-dur-base);
}
.faq__q:hover { color: var(--hz-hero); }
.faq__icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: var(--hz-hero);
  left: 50%; top: 50%; transition: transform var(--hz-dur-base) var(--hz-ease-out);
}
.faq__icon::before { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__item.open .faq__icon::before { transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  overflow: hidden; max-height: 0;
  transition: max-height var(--hz-dur-slow) var(--hz-ease-out);
}
.faq__a-inner {
  padding: 0 4px 26px; max-width: 64ch;
  font-size: 16px; line-height: 1.62; color: var(--hz-fg-on-dark-2); font-weight: 300;
}
.faq__foot {
  margin-top: 40px; text-align: center;
  font-size: 15px; color: var(--hz-fg-on-dark-2);
}
.faq__foot a { color: var(--hz-hero); font-weight: 500; }

/* ============================================================
   MODULES — clean white cards, marine-accent (no pastel fills)
   ============================================================ */
/* tighter gap up to the hero, heading sits closer */
#platform { padding-top: 60px; }
.mods { grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 720px) { .mods { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .mods { grid-template-columns: 1fr; } }

.mods .mod {
  --mod-accent: var(--hz-viz-2);
  position: relative;
  background: var(--hz-paper-2);
  border: 1px solid var(--hz-paper-4);
  border-radius: var(--hz-r-lg);
  padding: 0;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 10px 30px rgba(10,31,48,0.26);
  transition: transform var(--hz-dur-base) var(--hz-ease-out), box-shadow var(--hz-dur-base) var(--hz-ease-out), border-color var(--hz-dur-base);
}
.mods .mod::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--mod-accent); z-index: 2;
}
.mods .mod:hover { transform: translateY(-5px); box-shadow: 0 20px 46px rgba(10,31,48,0.34); border-color: var(--hz-paper-5); }

.mods .mod__panel {
  position: relative;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--mod-accent) 10%, #fff), var(--hz-paper-2) 64%);
  border-radius: 0;
  padding: 26px 24px 22px;
  display: flex; flex-direction: column; flex: 1;
  min-height: 214px;
}
.mods .mod__panel h3 {
  font-family: var(--hz-font-display); font-weight: 600;
  font-size: clamp(19px, 1.45vw, 23px); line-height: 1.1; letter-spacing: -0.02em;
  margin: 0; color: var(--hz-fg-1); text-wrap: balance;
  overflow-wrap: break-word; hyphens: manual;
}
.mods .mod__panel p {
  margin: 11px 0 0; font-size: 14px; line-height: 1.5;
  color: var(--hz-fg-2); max-width: none; font-weight: 400;
}
.mods .mod__chips { margin-top: auto; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.mods .chip {
  font-family: var(--hz-font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.01em;
  color: var(--hz-fg-2); background: var(--hz-paper-3); border: 1px solid var(--hz-paper-4);
  padding: 5px 11px; border-radius: var(--hz-r-pill); white-space: nowrap;
}
.mods .mod__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px 14px 24px; border-top: 1px solid var(--hz-paper-4);
}
.mods .mod__foot-label { font-family: var(--hz-font-sans); font-weight: 600; font-size: 15px; color: var(--hz-fg-1); }
.mods .mod__arrow {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  background: var(--hz-paper-3); color: var(--hz-fg-1);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--hz-dur-base), transform var(--hz-dur-base) var(--hz-ease-out), color var(--hz-dur-base);
}
.mods .mod__arrow svg { width: 17px; height: 17px; }
.mods .mod:hover .mod__arrow { background: var(--hz-hero); color: var(--hz-fg-on-hero); transform: translateX(3px); }

/* per-module accent — drawn from the marine viz palette (cohesive, not pastel) */
.mods .mod--tide   { --mod-accent: var(--hz-viz-2); }  /* tide blue */
.mods .mod--lagoon { --mod-accent: var(--hz-viz-4); }  /* lagoon */
.mods .mod--lime   { --mod-accent: var(--hz-hero);  }  /* kelp lime */
.mods .mod--indigo { --mod-accent: var(--hz-viz-6); }  /* abyss */

/* ============================================================
   TEAM PHOTO — wide banner with caption
   ============================================================ */
.teamphoto {
  margin: 48px 0 0; position: relative; line-height: 0;
  border: 1px solid var(--hz-ink-4); border-radius: var(--hz-r-xl); overflow: hidden;
}
.teamphoto img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 42%; }
.teamphoto__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; line-height: 1.4;
  display: flex; flex-direction: column; gap: 5px; padding: 56px 30px 24px;
  background: linear-gradient(to top, rgba(8,22,36,0.92), rgba(8,22,36,0.45) 45%, rgba(8,22,36,0) 100%);
}
.teamphoto__k { font-family: var(--hz-font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hz-hero); }
.teamphoto__v { font-family: var(--hz-font-display); font-weight: 600; font-size: clamp(16px, 2vw, 21px); letter-spacing: -0.01em; color: var(--hz-fg-on-dark-1); max-width: 42ch; }
@media (max-width: 720px) { .teamphoto__cap { padding: 40px 18px 18px; } }

/* ============================================================
   WHY HORIZON · 2 — arguments + product screenshot
   ============================================================ */
.why { display: grid; grid-template-columns: 1fr 1.06fr; gap: 52px; align-items: center; margin-top: 54px; }
@media (max-width: 920px) { .why { grid-template-columns: 1fr; gap: 36px; } }
.why__args { display: flex; flex-direction: column; }
.whyarg { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--hz-ink-4); }
.whyarg:first-child { border-top: 0; padding-top: 0; }
.whyarg__n { font-family: var(--hz-font-mono); font-size: 13px; font-weight: 500; color: var(--hz-hero); padding-top: 3px; }
.whyarg__body h3 { font-family: var(--hz-font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.015em; margin: 0; color: var(--hz-fg-on-dark-1); }
.whyarg__body p { margin: 9px 0 0; font-size: 15px; line-height: 1.58; color: var(--hz-fg-on-dark-2); font-weight: 300; }
.why__shot { margin: 0; }
.why__shot-frame {
  background: var(--hz-ink); border: 1px solid var(--hz-ink-4);
  border-radius: var(--hz-r-lg); padding: 12px; overflow: hidden;
  box-shadow: var(--hz-shadow-lg);
  position: relative; cursor: zoom-in;
}
.why__shot-zoom {
  position: absolute; top: 22px; right: 22px; z-index: 2;
  width: 34px; height: 34px; border-radius: var(--hz-r-sm);
  background: rgba(10,31,48,0.72); color: var(--hz-fg-on-dark-1);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--hz-dur-base);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.why__shot-frame:hover .why__shot-zoom { opacity: 1; }
.why__shot-zoom svg { width: 17px; height: 17px; }
.why__shot-frame img { width: 100%; height: auto; display: block; border-radius: var(--hz-r-sm); }
.why__shot-cap { margin: 14px 2px 0; font-size: 13.5px; font-weight: 300; color: var(--hz-fg-on-dark-2); line-height: 1.5; }

/* ============================================================
   WHY HORIZON · 3 — what we solve
   ============================================================ */
.solve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 54px; }
@media (max-width: 760px) { .solve-grid { grid-template-columns: 1fr; } }
.solve-card {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  background: var(--hz-ink-2); border: 1px solid var(--hz-ink-4);
  border-radius: var(--hz-r-lg); padding: 26px 28px;
  transition: border-color var(--hz-dur-base), transform var(--hz-dur-base), background var(--hz-dur-base);
}
.solve-card:hover { border-color: rgba(206,239,67,0.4); transform: translateY(-3px); background: var(--hz-ink-3); }
.solve-card .ic {
  width: 46px; height: 46px; flex: none; border-radius: var(--hz-r-md);
  background: rgba(206,239,67,0.10); color: var(--hz-hero);
  display: flex; align-items: center; justify-content: center;
}
.solve-card__body h3 { font-family: var(--hz-font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; margin: 0; color: var(--hz-fg-on-dark-1); }
.solve-card__body p { margin: 9px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--hz-fg-on-dark-2); }

/* Cards that lift on hover are now real links — inherit the card's own text
   colours rather than the global link colour. */
a.qcard, a.solve-card, a.spoint { color: inherit; text-decoration: none; }
a.qcard:focus-visible, a.solve-card:focus-visible, a.spoint:focus-visible { outline: 2px solid var(--hz-hero); outline-offset: 3px; }

/* Sustainability cards became links — give them the same lift as the other
   clickable cards. */
.spoint { transition: border-color var(--hz-dur-base), transform var(--hz-dur-base), background var(--hz-dur-base); }
a.spoint:hover { border-color: rgba(206,239,67,0.4); transform: translateY(-3px); background: var(--hz-ink-3); }

/* The security card carries no link, so it must not look pressable. */
.solve-card--static:hover { border-color: var(--hz-ink-4); background: var(--hz-ink-2); transform: none; }
