/* ═══════════════════════════════════════════════════════════════════════════
   TIDEL — forsidedesign v2.

   Portert fra designreferansen (Next.js-prosjektet av 18. aug 2026) til den
   eksisterende statiske arkitekturen.

   HVER selektor er prefikset med «body.fp2», og fila lastes KUN av forsida.
   Grunnen: /download/ laster ogsaa css/forside.css, og alle juridiske sider
   laster css/tidel.css. Uten kapslingen ville Terms, Privacy og kontosletting
   arvet dette designet. Ingen av de filene er roert.
   ═══════════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/brand/font/barlow-condensed-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/brand/font/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body.fp2 {
  --red: #e30613;
  --red-bright: #ff1a27;
  --black: #050505;
  --panel: #0c0c0d;
  --panel-2: #111113;
  --line: rgba(255, 255, 255, 0.16);
  --muted: #9c9ca2;
  --white: #f6f5f2;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.fp2, body.fp2 * {
  box-sizing: border-box;
}

body.fp2 {
  background: var(--black);
}

body.fp2 {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.fp2,
body.fp2 button,
body.fp2 a {
  cursor: default;
}

body.fp2 a,
body.fp2 button {
  color: inherit;
  font: inherit;
}

body.fp2 a {
  text-decoration: none;
  cursor: pointer;
}

body.fp2 button {
  cursor: pointer;
}

body.fp2 button:focus-visible,
body.fp2 a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

body.fp2 img {
  display: block;
  max-width: 100%;
}

body.fp2 p,
body.fp2 h1,
body.fp2 h2,
body.fp2 h3,
body.fp2 figure {
  margin: 0;
}

body.fp2 .shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-inline: clamp(22px, 4vw, 68px);
}

body.fp2 .hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

body.fp2 .heroMedia {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #050505;
}

body.fp2 .heroMedia img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

body.fp2 .heroMedia::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 4, 0.99) 0%, rgba(3, 3, 4, 0.9) 34%, rgba(3, 3, 4, 0.12) 70%, rgba(3, 3, 4, 0.06) 100%),
    linear-gradient(0deg, rgba(3, 3, 4, 0.96) 0%, transparent 42%);
}

body.fp2 .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 7.5vw 7.5vw;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

body.fp2 .nav {
  height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

body.fp2 .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.fp2 .brand img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

body.fp2 .navLinks {
  display: flex;
  gap: 36px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.fp2 .navLinks a {
  color: #c4c4c7;
  transition: color 160ms ease;
}

body.fp2 .navLinks a:hover {
  color: var(--white);
}

body.fp2 .button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

body.fp2 .button:hover {
  background: #fff;
  border-color: #fff;
  color: #050505;
}

body.fp2 .button span {
  font-size: 22px;
  line-height: 1;
}

body.fp2 .buttonSmall {
  min-height: 44px;
  min-width: 148px;
  justify-self: end;
  padding: 0 17px;
  gap: 18px;
  font-size: 14px;
}

body.fp2 .heroContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(54px, 8vh, 110px);
  padding-bottom: clamp(72px, 10vh, 140px);
}

body.fp2 .eyebrow,
body.fp2 .sectionIndex,
body.fp2 .dataLabel {
  color: #b7b7bb;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.fp2 .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
}

body.fp2 .eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--red);
}

body.fp2 .hero h1,
body.fp2 .sectionHeader h2,
body.fp2 .manifesto h2,
body.fp2 .deviceCopy h2,
body.fp2 .offlineSection h2,
body.fp2 .finalCta h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.83;
}

body.fp2 .hero h1 {
  margin-top: 30px;
  max-width: 870px;
  font-size: clamp(70px, 9.1vw, 146px);
}

body.fp2 .heroLogo {
  width: clamp(170px, 18vw, 290px);
  height: auto;
  margin-top: 26px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.4));
}

body.fp2 .hero h1 span,
body.fp2 .manifesto h2 span,
body.fp2 .deviceCopy h2 span,
body.fp2 .offlineSection h2 span,
body.fp2 .finalCta h2 span {
  color: var(--red);
}

body.fp2 .heroCopy {
  max-width: 585px;
  margin-top: 24px;
  color: #c5c5c8;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
}

body.fp2 .heroActions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

body.fp2 .textLink {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.1em;
}

body.fp2 .textLink span {
  color: var(--red-bright);
}

body.fp2 .heroProof {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 1fr;
  border-top: 1px solid var(--line);
  background: rgba(3, 3, 4, 0.75);
  backdrop-filter: blur(10px);
}

body.fp2 .heroProof > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px clamp(14px, 2.2vw, 34px);
  border-right: 1px solid var(--line);
}

body.fp2 .heroProof > div:first-child {
  padding-left: 0;
}

body.fp2 .heroProof > div:last-child {
  border-right: 0;
}

body.fp2 .heroProof span {
  color: #858589;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
}

body.fp2 .heroProof strong {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: 0.015em;
}

body.fp2 .heroProof .proofHighlight strong {
  color: var(--red-bright);
}

body.fp2 .manifesto {
  border-bottom: 1px solid var(--line);
  background: #09090a;
  color: var(--white);
}

body.fp2 .manifestoGrid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.65fr 2fr 0.72fr;
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
}

body.fp2 .manifesto .sectionIndex {
  align-self: start;
  margin-top: 82px;
  color: #8e8e94;
}

body.fp2 .manifesto h2 {
  font-size: clamp(54px, 6.3vw, 104px);
}

body.fp2 .manifestoGrid > div:nth-child(2) > p {
  max-width: 720px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}

body.fp2 .manifestoStamp {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  background: var(--red);
  color: #fff;
  transform: rotate(2deg);
}

body.fp2 .manifestoStamp span,
body.fp2 .manifestoStamp strong {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.fp2 .manifestoStamp span {
  font-size: 12px;
}

body.fp2 .manifestoStamp strong {
  font-size: clamp(26px, 3vw, 44px);
  line-height: 0.9;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

body.fp2 .manifestoStamp i {
  align-self: flex-end;
  font-size: 34px;
  font-style: normal;
}

body.fp2 .progressSection,
body.fp2 .analysisSection {
  padding: clamp(92px, 10vw, 160px) 0;
  background: var(--black);
}

body.fp2 .analysisSection {
  background: #080809;
  border-top: 1px solid var(--line);
}

body.fp2 .sectionHeader {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
  margin-bottom: 62px;
}

body.fp2 .sectionHeader h2 {
  margin-top: 24px;
  font-size: clamp(60px, 7.4vw, 118px);
}

body.fp2 .sectionHeader > p {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

body.fp2 .sectionIndex {
  display: flex;
  align-items: center;
  gap: 14px;
}

body.fp2 .sectionIndex::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--red);
}

body.fp2 .progressPanel {
  border: 1px solid var(--line);
  background: var(--panel);
}

body.fp2 .panelTopline {
  min-height: 54px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #929297;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.14em;
}

body.fp2 .liveMark {
  display: flex;
  align-items: center;
  gap: 9px;
}

body.fp2 .liveMark i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 5px rgba(227, 6, 19, 0.13);
}

body.fp2 .progressReadout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

body.fp2 .progressReadout > div {
  min-height: 132px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

body.fp2 .progressReadout > div:last-child {
  border: 0;
}

body.fp2 .progressReadout strong {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 66px);
  line-height: 1;
}

body.fp2 .redText {
  color: var(--red-bright);
}

body.fp2 .graphWrap {
  height: clamp(280px, 34vw, 470px);
  position: relative;
  padding: 32px 28px 2px;
  overflow: hidden;
}

body.fp2 .graphWrap svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

body.fp2 .gridLine {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
  stroke-dasharray: 4 9;
}

body.fp2 .progressLine {
  fill: none;
  stroke: var(--red-bright);
  stroke-width: 7;
  stroke-linecap: square;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

body.fp2 .graphDot {
  fill: #080808;
  stroke: #fff;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

body.fp2 .graphDot.active {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 5;
}

body.fp2 .axisLabel {
  position: absolute;
  top: 24px;
  left: 22px;
  color: #6e6e73;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.16em;
}

body.fp2 .sessionTabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

body.fp2 .sessionTab {
  min-height: 92px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #838388;
  background: transparent;
  text-align: left;
  transition: background 150ms ease, color 150ms ease;
}

body.fp2 .sessionTab:last-child {
  border-right: 0;
}

body.fp2 .sessionTab:hover {
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
}

body.fp2 .sessionTab.active {
  color: #fff;
  background: var(--red);
}

body.fp2 .sessionTab span {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
}

body.fp2 .sessionTab strong {
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 30px);
}

body.fp2 .progressImage {
  height: auto;
  aspect-ratio: 16 / 9;
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}

body.fp2 .progressImage::after,
body.fp2 .analysisHero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(3, 3, 4, 0.83), transparent 35%);
}

body.fp2 .progressImage > img,
body.fp2 .analysisHero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.fp2 .progressImage figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 4vw, 60px);
  right: clamp(20px, 4vw, 60px);
  bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

body.fp2 .progressImage figcaption span {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
}

body.fp2 .progressImage figcaption strong {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: clamp(50px, 7vw, 112px);
  line-height: 0.8;
}

body.fp2 .analysisHero {
  height: clamp(480px, 56vw, 800px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

body.fp2 .analysisHero > img {
  object-position: center;
}

body.fp2 .analysisHero figcaption {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  background: rgba(4, 4, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.14em;
}

body.fp2 .analysisHero figcaption i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red-bright);
}

body.fp2 .analysisHeroCopy {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 78px);
  bottom: clamp(30px, 5vw, 72px);
  text-align: right;
}

body.fp2 .analysisHeroCopy span {
  color: #b5b5ba;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.17em;
}

body.fp2 .analysisHeroCopy strong {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.88;
}

body.fp2 .analysisTabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

body.fp2 .analysisTab {
  min-width: 0;
  min-height: 66px;
  padding: 10px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #85858a;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.11em;
}

body.fp2 .analysisTab:last-child {
  border: 0;
}

body.fp2 .analysisTab.active {
  color: #fff;
  box-shadow: inset 0 -4px 0 var(--red);
}

body.fp2 .analysisReadout {
  flex: 1;
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body.fp2 .analysisReadout > strong {
  margin-top: 18px;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: clamp(62px, 7vw, 104px);
  line-height: 0.9;
}

body.fp2 .analysisReadout h3 {
  max-width: 330px;
  margin-top: auto;
  padding-top: 50px;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}

body.fp2 .analysisReadout p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

body.fp2 .analysisStatRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

body.fp2 .analysisStatRow span {
  min-height: 90px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  border-right: 1px solid var(--line);
  color: #7f7f84;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.13em;
}

body.fp2 .analysisStatRow span:last-child {
  border: 0;
}

body.fp2 .analysisStatRow strong {
  color: #fff;
  font-size: 21px;
  letter-spacing: 0;
}

body.fp2 .sectorModule {
  min-height: 620px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, 0.62fr);
  border: 1px solid var(--line);
  background: var(--panel);
}

body.fp2 .sectorBreakdown {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

body.fp2 .sectorTopline {
  min-height: 66px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  color: #7f7f84;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.14em;
}

body.fp2 .sectorHeadline {
  padding: clamp(28px, 4vw, 54px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 30px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

body.fp2 .sectorHeadline .dataLabel {
  grid-column: 1 / -1;
}

body.fp2 .sectorHeadline strong {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: clamp(68px, 8vw, 126px);
  line-height: 0.82;
}

body.fp2 .sectorHeadline p {
  max-width: 250px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

body.fp2 .sectorRows {
  flex: 1;
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

body.fp2 .sectorRow {
  display: grid;
  grid-template-columns: 42px minmax(100px, 1fr) 74px;
  gap: 18px;
  align-items: center;
  font-family: var(--display);
}

body.fp2 .sectorRow > span {
  color: #7f7f84;
  font-size: 11px;
  letter-spacing: 0.12em;
}

body.fp2 .sectorRow > strong {
  font-size: 18px;
  text-align: right;
}

body.fp2 .gainText {
  color: var(--red-bright);
}

body.fp2 .lossText {
  color: #fff;
}

body.fp2 .sectorRail {
  height: 7px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

body.fp2 .sectorRail i {
  position: absolute;
  inset: 0 auto 0 0;
}

body.fp2 .sectorRail .gain,
body.fp2 .sectorLegend .gain {
  background: var(--red-bright);
}

body.fp2 .sectorRail .loss,
body.fp2 .sectorLegend .loss {
  background: #fff;
}

body.fp2 .sectorLegend {
  min-height: 60px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #7f7f84;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.13em;
}

body.fp2 .sectorLegend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.fp2 .sectorLegend i {
  width: 18px;
  height: 3px;
}

body.fp2 .sectorData {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

body.fp2 .processSection {
  padding: 92px 0 120px;
  border-top: 1px solid var(--line);
  background: #09090a;
  color: var(--white);
}

body.fp2 .processSection .sectionIndex {
  color: #8e8e94;
}

body.fp2 .processGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.fp2 .processGrid article {
  min-height: 390px;
  padding: 28px clamp(22px, 3vw, 46px) 36px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

body.fp2 .processGrid article:first-child {
  padding-left: 0;
}

body.fp2 .processGrid article:last-child {
  border: 0;
}

body.fp2 .processGrid article > span {
  align-self: flex-end;
  color: var(--red);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.12em;
}

body.fp2 .processGrid h3 {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 106px);
  line-height: 0.8;
}

body.fp2 .processGrid p {
  max-width: 340px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

body.fp2 .devicesSection {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #080809;
}

body.fp2 .devicesBackdrop {
  position: absolute;
  inset: 0 0 0 50%;
  opacity: 0.42;
  background: linear-gradient(90deg, #080809, transparent 40%), linear-gradient(0deg, #080809, transparent 38%), url("/assets/site/bars-pov.jpg") center / cover no-repeat;
  filter: grayscale(1) contrast(1.2);
}

body.fp2 .devicesGrid {
  min-height: 900px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

body.fp2 .deviceCopy h2 {
  margin-top: 30px;
  font-size: clamp(67px, 7.2vw, 116px);
}

body.fp2 .deviceCopy > p:not(.sectionIndex) {
  max-width: 600px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

body.fp2 .deviceList {
  max-width: 650px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.fp2 .deviceList span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  color: #b9b9bd;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
}

body.fp2 .phoneStage {
  min-height: 760px;
  position: relative;
  display: grid;
  place-items: center;
}

body.fp2 .phoneGlow {
  position: absolute;
  width: 360px;
  height: 560px;
  border-radius: 50%;
  background: rgba(227, 6, 19, 0.28);
  filter: blur(90px);
}

body.fp2 .phone {
  width: min(310px, 60vw);
  position: relative;
  z-index: 1;
  padding: 11px;
  border: 2px solid #3c3c40;
  border-radius: 43px;
  background: #050505;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.68), 0 0 0 7px #101012;
  transform: rotate(2.5deg);
}

body.fp2 .phone img {
  width: 100%;
  aspect-ratio: 0.5;
  border-radius: 32px;
  object-fit: cover;
  object-position: center top;
}

body.fp2 .phoneBar {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 50%;
  width: 78px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #050505;
}

body.fp2 .phoneNote {
  position: absolute;
  z-index: 2;
  min-width: 190px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 4px solid var(--red);
  background: rgba(6, 6, 7, 0.91);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

body.fp2 .phoneNote span {
  color: #85858a;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.15em;
}

body.fp2 .phoneNote strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.05em;
}

body.fp2 .noteTop {
  top: 20%;
  left: 0;
}

body.fp2 .noteBottom {
  right: -2%;
  bottom: 20%;
}

body.fp2 .offlineSection {
  padding: clamp(90px, 10vw, 150px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(4, 4, 5, 0.98), rgba(4, 4, 5, 0.76)), url("/assets/site/aerial-lake.jpg") center / cover;
}

body.fp2 .offlineGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.65fr) minmax(180px, 0.3fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
}

body.fp2 .offlineSection h2 {
  margin-top: 28px;
  font-size: clamp(68px, 8vw, 128px);
}

body.fp2 .offlineGrid > p {
  color: #aaaab0;
  font-size: 17px;
  line-height: 1.7;
}

body.fp2 .offlineStat {
  padding-left: 22px;
  border-left: 3px solid var(--red);
}

body.fp2 .offlineStat span {
  color: #929297;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.13em;
}

body.fp2 .offlineStat strong {
  display: block;
  margin-top: 9px;
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.8;
}

body.fp2 .finalCta {
  padding: clamp(90px, 11vw, 170px) 0;
  background: #080809;
}

body.fp2 .finalGrid {
  display: grid;
  grid-template-columns: 0.27fr 1fr auto;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

body.fp2 .finalMark img {
  width: clamp(85px, 10vw, 150px);
  transform: rotate(-4deg);
}

body.fp2 .finalCta h2 {
  margin-top: 27px;
  font-size: clamp(63px, 7vw, 112px);
}

body.fp2 .finalButton {
  min-width: 205px;
}

body.fp2 footer {
  border-top: 1px solid var(--line);
  background: var(--black);
}

body.fp2 .footerGrid {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 40px;
  align-items: center;
}

body.fp2 .footerGrid p {
  color: #747479;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.15em;
}

@media (max-width: 1100px) {
  body.fp2 .manifestoGrid {
    grid-template-columns: 0.45fr 2fr 0.65fr;
  }

  body.fp2 .devicesGrid {
    grid-template-columns: 1fr 0.8fr;
  }

  body.fp2 .phoneStage {
    min-height: 660px;
  }

  body.fp2 .offlineGrid {
    grid-template-columns: 1.2fr 0.7fr;
  }

  body.fp2 .offlineStat {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  body.fp2 .nav {
    grid-template-columns: 1fr auto;
  }

  body.fp2 .navLinks {
    display: none;
  }

  body.fp2 .hero {
    background: var(--black);
  }

  body.fp2 .heroMedia::after {
    background:
      linear-gradient(90deg, rgba(3, 3, 4, 0.94), rgba(3, 3, 4, 0.2)),
      linear-gradient(0deg, rgba(3, 3, 4, 0.98), transparent 48%);
  }

  body.fp2 .heroProof {
    grid-template-columns: 1fr 1fr;
  }

  body.fp2 .heroProof > div,
body.fp2 .heroProof > div:first-child {
    padding-left: 16px;
    border-bottom: 1px solid var(--line);
  }

  body.fp2 .manifestoGrid {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
    grid-template-columns: 1fr;
  }

  body.fp2 .manifesto .sectionIndex {
    margin-top: 0;
  }

  body.fp2 .manifestoStamp {
    width: 190px;
    justify-self: end;
  }

  body.fp2 .sectionHeader {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.fp2 .progressReadout {
    grid-template-columns: 1fr 1fr;
  }

  body.fp2 .progressReadout > div:nth-child(2) {
    border-right: 0;
  }

  body.fp2 .progressReadout > div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  body.fp2 .sectorModule {
    grid-template-columns: 1fr;
  }

  body.fp2 .sectorBreakdown {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.fp2 .sectorData .analysisReadout {
    min-height: 390px;
  }

  body.fp2 .analysisReadout {
    min-height: 390px;
  }

  body.fp2 .processGrid {
    grid-template-columns: 1fr;
  }

  body.fp2 .processGrid article,
body.fp2 .processGrid article:first-child {
    min-height: 280px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.fp2 .devicesBackdrop {
    inset: 44% 0 0 0;
    background: linear-gradient(0deg, #080809, transparent 65%), linear-gradient(180deg, #080809, transparent 30%), url("/assets/site/bars-pov.jpg") center / cover no-repeat;
  }

  body.fp2 .devicesGrid {
    padding-top: 100px;
    padding-bottom: 90px;
    grid-template-columns: 1fr;
  }

  body.fp2 .offlineGrid,
body.fp2 .finalGrid {
    grid-template-columns: 1fr;
  }

  body.fp2 .offlineStat {
    grid-column: auto;
  }

  body.fp2 .finalButton {
    justify-self: start;
  }

  body.fp2 .footerGrid {
    padding-top: 35px;
    padding-bottom: 35px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  body.fp2 .shell {
    padding-inline: 18px;
  }

  body.fp2 .nav {
    height: 76px;
  }

  body.fp2 .brand {
    font-size: 22px;
  }

  body.fp2 .brand img {
    width: 30px;
    height: 30px;
  }

  body.fp2 .buttonSmall {
    min-width: auto;
    padding-inline: 13px;
  }

  body.fp2 .buttonSmall span {
    display: none;
  }

  body.fp2 .heroContent {
    padding-top: 65px;
    padding-bottom: 70px;
  }

  body.fp2 .hero h1 {
    font-size: clamp(62px, 20vw, 88px);
  }

  body.fp2 .heroActions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  body.fp2 .heroActions .button,
body.fp2 .heroActions .textLink {
    width: 100%;
  }

  body.fp2 .heroProof {
    margin: 0;
    padding: 0 18px;
  }

  body.fp2 .heroProof > div {
    min-height: 86px;
  }

  body.fp2 .heroProof strong {
    font-size: 21px;
  }

  body.fp2 .manifesto h2,
body.fp2 .sectionHeader h2,
body.fp2 .deviceCopy h2,
body.fp2 .offlineSection h2,
body.fp2 .finalCta h2 {
    font-size: clamp(51px, 16.5vw, 74px);
  }

  body.fp2 .manifestoStamp {
    width: 150px;
  }

  body.fp2 .progressReadout {
    grid-template-columns: 1fr;
  }

  body.fp2 .progressReadout > div,
body.fp2 .progressReadout > div:nth-child(2) {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.fp2 .progressReadout > div:last-child {
    grid-column: auto;
    border-top: 0;
  }

  body.fp2 .graphWrap {
    height: 250px;
    padding-inline: 12px;
  }

  body.fp2 .sessionTabs {
    grid-template-columns: 1fr 1fr;
  }

  body.fp2 .sessionTab:nth-child(2) {
    border-right: 0;
  }

  body.fp2 .sessionTab:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  body.fp2 .progressImage {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  body.fp2 .progressImage > img {
    object-position: center;
  }

  body.fp2 .progressImage figcaption {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  body.fp2 .analysisHero {
    height: 570px;
  }

  body.fp2 .analysisHero > img {
    object-position: 38% center;
  }

  body.fp2 .analysisHeroCopy {
    left: 20px;
    right: 20px;
    text-align: left;
  }

  body.fp2 .sectorTopline {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  body.fp2 .sectorHeadline {
    grid-template-columns: 1fr;
  }

  body.fp2 .sectorHeadline strong {
    font-size: 76px;
  }

  body.fp2 .sectorRow {
    grid-template-columns: 34px minmax(80px, 1fr) 66px;
    gap: 11px;
  }

  body.fp2 .processGrid h3 {
    font-size: 76px;
  }

  body.fp2 .phoneStage {
    min-height: 620px;
  }

  body.fp2 .phoneNote {
    min-width: 160px;
  }

  body.fp2 .noteTop {
    left: -5px;
  }

  body.fp2 .noteBottom {
    right: -5px;
  }

  body.fp2 .footerGrid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.fp2 {
    scroll-behavior: auto;
  }

  body.fp2, body.fp2 *,
body.fp2 *::before,
body.fp2 *::after {
    transition-duration: 0.01ms !important;
  }
}


/* ═══ Tillegg: butikkknapper og juridiske lenker ═══════════════════════════════
   js/butikk.js skriver .stores/.store-markup paa baade forsida og /download/.
   Fila er ikke endret — her stiler vi bare resultatet i det nye formspraaket,
   og bare inne i body.fp2, saa /download/ beholder sitt gamle utseende. */
body.fp2 .stores{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
body.fp2 .store{display:flex;align-items:center;gap:12px;min-width:212px;
  padding:11px 18px 11px 15px;border:1px solid var(--line);
  background:rgba(255,255,255,.03);text-decoration:none;transition:border-color .2s ease}
body.fp2 .store:hover{border-color:rgba(255,255,255,.42)}
body.fp2 .store svg{width:22px;height:22px;flex:0 0 22px;color:var(--muted)}
body.fp2 .store .t1{display:block;font-family:var(--display);font-weight:700;font-size:10.5px;
  letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
body.fp2 .store .t2{display:block;font-family:var(--display);font-weight:700;font-size:19px;
  letter-spacing:.03em;color:var(--white)}
body.fp2 .store .st{margin-left:auto;font-family:var(--display);font-weight:700;font-size:10px;
  letter-spacing:.1em;text-transform:uppercase;padding:3px 7px;border:1px solid;white-space:nowrap}

body.fp2 .footerLinks{display:flex;flex-wrap:wrap;gap:8px 22px}
body.fp2 .footerLinks a{font-family:var(--display);font-weight:700;font-size:12.5px;
  letter-spacing:.16em;text-transform:uppercase;color:var(--muted);transition:color .2s ease}
body.fp2 .footerLinks a:hover{color:var(--white)}
body.fp2 .footerMeta{font-size:12.5px;color:var(--muted)}
body.fp2 .footerMeta a{color:var(--muted);text-decoration:underline}
body.fp2 .footerMeta a:hover{color:var(--white)}
body.fp2 .deviceNote{margin-top:18px;font-size:12.5px;line-height:1.6;color:var(--muted);
  max-width:52ch}
@media (max-width:720px){
  body.fp2 .store{min-width:0;width:100%}
}
