/* GrandeData — offentlig nettsted. Designsystem: warm-graphite + terminal-aksenter. */

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/jetbrains-mono.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/fonts/space-grotesk.woff2") format("woff2");
}

:root {
  --bg: oklch(0.34 0.008 50);
  --bg-elevated: oklch(0.445 0.011 50);
  --bg-term: oklch(0.205 0.006 50);
  --border: oklch(0.55 0.012 50 / 0.4);
  --text: oklch(0.97 0.004 50);
  --text-muted: oklch(0.79 0.014 50);
  --text-nav: oklch(0.9 0.006 50);
  --accent: #8fd14f;
  --accent2: #ff9552;
  --radius-sm: 4px;
  --radius-lg: 8px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head: "Space Grotesk", var(--font-sans);
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  background-image: radial-gradient(oklch(0.4 0.01 50 / 0.5) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--text);
  min-height: 100vh;
  width: 100%;
}

@media (max-width: 400px) {
  .terminal,
  .hero__copy {
    min-width: 0;
    width: 100%;
  }
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px clamp(20px, 5vw, 64px);
  background: oklch(0.34 0.008 50 / 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav__brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__brand span {
  color: var(--accent);
  font-family: var(--font-mono);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 14px;
}

.nav__links a {
  color: var(--text-nav);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  color: var(--bg) !important;
  background: var(--accent);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: opacity 0.15s ease;
}

.nav__cta:hover {
  opacity: 0.85;
}

/* Buttons */

.btn {
  font-family: var(--font-mono);
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
}

.btn--primary {
  color: var(--bg);
  background: var(--accent);
}

.btn--primary:hover {
  opacity: 0.88;
}

.btn--ghost {
  color: var(--text);
  border-color: var(--border);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero */

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-top: clamp(56px, 9vw, 120px);
  padding-bottom: clamp(40px, 6vw, 80px);
}

.hero__copy {
  flex: 1 1 420px;
  min-width: 320px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.hero p {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 65ch;
  margin: 0 0 32px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.stats {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
}

.stats__value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}

.stats__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Terminal window */

.terminal {
  flex: 1 1 420px;
  min-width: 320px;
  max-width: 540px;
}

.terminal__window {
  background: var(--bg-term);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px oklch(0 0 0 / 0.5);
}

.terminal__titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid oklch(0.4 0.01 50 / 0.4);
}

.terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: oklch(0.55 0.02 50);
}

.terminal__dot--accent {
  background: var(--accent);
}

.terminal__title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}

.terminal__body {
  padding: 22px 20px 28px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.9;
}

.terminal__body .prompt {
  color: var(--accent);
}

.terminal__body .out {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.terminal__body .out--accent2 {
  color: var(--text-muted);
}

.caret {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--text);
  animation: blinkCaret 1s step-end infinite;
  vertical-align: middle;
}

@keyframes blinkCaret {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

/* Sections */

.section {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.section__label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 10px;
}

.section h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.section__intro {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 65ch;
  margin: 0 0 44px;
}

/* To innganger — bedrift vs. teknisk/hjemmelab */

.audience-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding-top: 8px;
  padding-bottom: clamp(40px, 6vw, 60px);
}

.audience-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease;
}

.audience-card:hover {
  border-color: var(--accent);
}

.audience-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  margin: 0 0 6px;
}

.audience-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.section__subheading {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin: 36px 0 16px;
}

.section__subheading:first-of-type {
  margin-top: 8px;
}

/* Service cards */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}

.card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  background: oklch(0.28 0.007 50);
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.card__tag--muted {
  color: var(--text-muted);
}

.card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: var(--radius-sm);
}

/* Priser */

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent);
}

.pricing-card__price {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent2);
  margin-bottom: 4px;
}

.pricing-card__monthly {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.pricing-card__features li {
  color: var(--text-muted);
  font-size: 14px;
  padding: 7px 0;
  border-top: 1px solid var(--border);
}

.pricing-card__features li:first-child {
  border-top: none;
}

.pricing-card__features li::before {
  content: "› ";
  color: var(--accent);
  font-family: var(--font-mono);
}

.pricing-card__features a {
  color: var(--accent);
  text-decoration: underline;
}

.pricing-notes {
  margin: 24px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-notes::before {
  content: "// ";
}

/* Homelab status */

.homelab {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
  align-items: center;
}

.homelab__copy {
  flex: 1 1 380px;
  min-width: 300px;
}

.homelab__copy h2 {
  margin-top: 0;
}

.homelab__copy p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 65ch;
  margin: 0 0 16px;
}

.homelab__copy p:last-child {
  margin-bottom: 0;
}

.homelab__terminal {
  flex: 1 1 380px;
  min-width: 300px;
  max-width: 480px;
  background: var(--bg-term);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.homelab__body {
  padding: 20px 20px 24px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 2;
}

.homelab__line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-muted);
}

.homelab__status {
  color: var(--text-muted);
}

.homelab__status--oppe {
  color: var(--accent);
}

.homelab__status--nede {
  color: var(--accent2);
}

/* Om */

.about {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}

.about__copy {
  flex: 1 1 380px;
  min-width: 300px;
}

.about__portrait {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.about__name {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  margin: 0 0 14px;
}

.about__copy p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 65ch;
  margin: 0;
}

.about__points {
  flex: 1 1 380px;
  min-width: 300px;
}

.about__point {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.about__point-marker {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 14px;
}

.about__point-text {
  font-size: 15px;
  color: var(--text);
}

/* Demo-karusell ("utvalgte sider") */

.carousel__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.carousel__card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.carousel__thumb {
  aspect-ratio: 16 / 10;
  background-color: var(--bg-term);
  background-size: cover;
  background-position: center;
}

.carousel__thumb--placeholder {
  display: flex;
  align-items: center;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.carousel__gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px;
  background: var(--bg-term);
}

.carousel__gallery-thumb {
  flex: 1;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  padding: 0;
  opacity: 0.55;
}

.carousel__gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
}

.carousel__body {
  padding: 20px;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(0.15 0.006 50 / 0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-term);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 1px solid var(--border);
  background: var(--bg-term);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lightbox__close {
  top: 16px;
  right: 16px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lightbox__nav--prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 640px) {
  .lightbox {
    padding: 16px;
  }
  .lightbox__nav {
    padding: 8px 12px;
    font-size: 15px;
  }
}

/* Overlay-modal (f.eks. "Kjøp lisens") — samme mørke bakteppe som lightbox,
   men med en scrollbar panel-boks for skjemainnhold. */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: oklch(0.12 0.006 50 / 0.94);
  backdrop-filter: blur(3px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.modal__panel .contact-form {
  background: none;
  border: none;
  padding: 0;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid var(--border);
  background: var(--bg-term);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 640px) {
  .modal {
    padding: 12px;
  }
  .modal__panel {
    padding: 24px 20px 20px;
  }
}

.carousel__body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.carousel__body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 14px;
}

.carousel__link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}

.carousel__controls {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* Testimonials */

.testimonial {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}

.testimonial p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.testimonial cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

/* Kontakt */

.contact {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}

.contact__info {
  flex: 1 1 340px;
  min-width: 300px;
}

.contact__info p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 65ch;
  margin: 0 0 28px;
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-muted);
}

.contact__form-wrap {
  flex: 1 1 420px;
  min-width: 300px;
  max-width: 520px;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.field input:not([type="checkbox"]):not([type="radio"]),
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid oklch(0.6 0.014 50 / 0.55);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  appearance: none;
}

.field input:not([type="checkbox"]):not([type="radio"]):focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
}

.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.field input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid oklch(0.6 0.014 50 / 0.55);
  background: var(--bg);
  cursor: pointer;
  position: relative;
  flex: none;
}

.field input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.field input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.field input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid oklch(0.6 0.014 50 / 0.55);
  cursor: pointer;
  position: relative;
  flex: none;
}

.field input[type="radio"]:checked {
  border-color: var(--accent);
}

.field input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.field--consent label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: inherit;
  font-size: 13px;
  color: var(--text-muted);
}

.field--consent input {
  background: none;
  border: none;
  padding: 0;
  margin-top: 3px;
  flex: none;
}

.field--consent a {
  color: var(--accent);
}

.estimator-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}

.estimator-row:first-child {
  border-top: none;
}

.estimator-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 14px;
}

.estimator-total strong {
  color: var(--accent2);
}

.domain-status {
  font-family: var(--font-mono);
  font-size: 13px;
  min-height: 18px;
}

.domain-status--ok {
  color: var(--accent);
}

.domain-status--taken {
  color: var(--accent2);
}

.domain-status--pending,
.domain-status--unknown {
  color: var(--text-muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-msg {
  font-family: var(--font-mono);
  font-size: 14px;
  padding: 10px 0 0;
  display: none;
}

.form-msg--ok {
  color: var(--accent);
}

.form-msg--error {
  color: var(--accent2);
}

/* Footer */

.footer {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 32px;
  flex-wrap: wrap;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.footer__contact a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer__contact a:hover {
  color: var(--accent);
}

.footer__brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
}

.footer__brand span {
  color: var(--accent);
  font-family: var(--font-mono);
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__admin {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.footer__admin:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

/* Placeholder / personvern pages */

.simple-page {
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(60px, 10vw, 120px);
  max-width: 720px;
  margin: 0 auto;
}

.simple-page h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
}

.simple-page p,
.simple-page li {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 16px;
}

.simple-page h2 {
  font-family: var(--font-head);
  font-size: 22px;
  margin-top: 36px;
}
