@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Fraunces:opsz,wght@9..144,300;9..144,500;9..144,600&family=IBM+Plex+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --page: 1240px;
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shadow-soft: 0 24px 70px rgba(19, 37, 71, 0.12);
  --shadow-strong: 0 24px 80px rgba(3, 8, 24, 0.24);
  --line-soft: rgba(15, 23, 42, 0.1);
  --nc-sky: #44b0f6;
  --nc-peri: #5f78ff;
  --nc-deep: #0d58c7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept-shell,
.overview-page {
  min-height: 100svh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(251, 252, 255, 0.76);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.topbar-light {
  background: rgba(6, 12, 30, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.topbar-inner {
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(136px, 15vw, 190px);
  height: auto;
}

.page-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 600;
}

.page-nav a,
.ghost-link {
  opacity: 0.82;
}

.topbar-light .page-nav a,
.topbar-light .ghost-link {
  color: #f8fbff;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-link,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease,
    color 180ms ease, opacity 180ms ease;
}

.primary-link {
  background: linear-gradient(135deg, var(--nc-sky), var(--nc-deep));
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(13, 88, 199, 0.24);
}

.ghost-link {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-link-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: #f5fbff;
}

.primary-link:hover,
.ghost-link:hover,
.poster-chip:hover,
.overview-card:hover .overview-card-art,
.service-card:hover,
.team-card:hover,
.price-row:hover,
.contact-card:hover,
.precision-row:hover {
  transform: translateY(-2px);
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--nc-deep);
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-headline {
  max-width: 760px;
}

.section-headline h2,
.price-copy h2,
.contact-intro h2,
.overview-copy h1 {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.section-headline p + p,
.price-copy p + p,
.contact-intro p + p,
.overview-copy p + p {
  margin-top: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-actions,
.overview-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-copy,
.overview-copy,
.price-copy,
.contact-intro,
.editorial-copy,
.manifesto,
.precision-summary,
.section-headline,
.service-card,
.team-card,
.overview-card,
.contact-band,
.reason-strip,
.price-panel,
.editorial-aside {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reason-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reason-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: 0.94rem;
}

.service-stack,
.service-grid,
.team-grid {
  display: grid;
  gap: 22px;
}

.service-card,
.team-card,
.price-panel,
.contact-card,
.precision-box,
.glass-card,
.editorial-aside {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.service-card h3,
.team-card h3,
.price-copy h2,
.contact-intro h2,
.overview-card h2,
.overview-copy h1,
.editorial-aside h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.service-index {
  margin-bottom: 18px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(15, 23, 42, 0.42);
}

.service-copy p:last-child,
.team-copy p:last-child {
  margin-top: 10px;
}

.service-list {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.service-list li {
  padding-left: 18px;
  position: relative;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nc-sky), var(--nc-deep));
}

.team-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, border-color 180ms ease;
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--nc-sky), var(--nc-deep));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.team-role {
  margin: 8px 0 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.62);
}

.price-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.84);
}

.price-table {
  display: grid;
}

.price-group-card {
  padding: 22px 0 0;
}

.price-group-card:first-child {
  padding-top: 0;
}

.price-group-card + .price-group-card {
  margin-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.price-group-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.price-note-row {
  justify-content: flex-start;
  color: rgba(15, 23, 42, 0.62);
  font-size: 0.95rem;
}

.price-note-row strong {
  display: none;
}

.price-row strong {
  text-align: right;
}

.contact-band {
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto 48px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  background: #ffffff;
}

.contact-band-dark {
  background: linear-gradient(180deg, rgba(10, 20, 53, 0.92), rgba(5, 12, 31, 0.96));
  color: #eff7ff;
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.contact-band-dark .contact-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.contact-card span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.62;
}

.contact-card strong,
.contact-card strong a {
  display: grid;
  gap: 8px;
  font-size: 1rem;
}

.overview-page {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(68, 176, 246, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(95, 120, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff, #eef5fb 42%, #ffffff 100%);
  color: #0d1731;
}

.overview-hero,
.overview-list,
.hero-inner-fjordlys,
.hero-redaksjonell,
.editorial-intro,
.editorial-split,
.signal-matrix,
.hero-naer,
.precision-grid,
.hero-presisjon {
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto;
}

.overview-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 28px;
  align-items: center;
  padding: 40px 0 48px;
}

.overview-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.overview-copy p {
  max-width: 58ch;
  font-size: 1.05rem;
}

.overview-poster {
  min-height: 540px;
  border-radius: 42px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(68, 176, 246, 0.95), transparent 10%),
    radial-gradient(circle at 30% 20%, rgba(95, 120, 255, 0.95), transparent 10%),
    radial-gradient(circle at 44% 18%, rgba(13, 88, 199, 0.95), transparent 10%),
    linear-gradient(145deg, #081327, #0d234c 55%, #15326e 100%);
  box-shadow: var(--shadow-strong);
}

.poster-logo {
  width: 100%;
  max-width: 300px;
}

.poster-grid {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.poster-chip {
  min-height: 96px;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, background-color 180ms ease;
}

.poster-chip-fjordlys {
  background:
    linear-gradient(180deg, transparent, rgba(8, 22, 46, 0.36)),
    url("../old/files/strand.png") center/cover;
}

.poster-chip-redaksjonell {
  background: linear-gradient(135deg, #f3ecdf, #c8d8ff);
  color: #111827;
}

.poster-chip-signal {
  background:
    radial-gradient(circle at 20% 26%, rgba(68, 176, 246, 0.9), transparent 10%),
    radial-gradient(circle at 30% 26%, rgba(95, 120, 255, 0.85), transparent 10%),
    linear-gradient(140deg, #020817, #10254d);
}

.poster-chip-naer {
  background: linear-gradient(145deg, #f4dfcb, #f8efe6 55%, #f2d6bc);
  color: #4b2d25;
}

.poster-chip-presisjon {
  background:
    linear-gradient(90deg, rgba(13, 88, 199, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(13, 88, 199, 0.12) 1px, transparent 1px),
    #f4f8ff;
  background-size: 22px 22px;
  color: #0b2348;
}

.overview-list {
  display: grid;
  gap: 26px;
  padding-bottom: 48px;
}

.overview-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  padding: 22px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.overview-card-art {
  min-height: 280px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease;
}

.overview-card-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.82);
}

.overview-card-copy {
  padding: 14px 8px 14px 0;
}

.overview-card-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.thesis-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.overview-card-fjordlys .overview-card-art {
  background:
    linear-gradient(180deg, transparent, rgba(9, 18, 43, 0.42)),
    url("../old/files/strand.png") center/cover;
}

.overview-card-redaksjonell .overview-card-art {
  background:
    linear-gradient(135deg, rgba(243, 236, 223, 0.96), rgba(201, 216, 255, 0.94)),
    linear-gradient(90deg, rgba(15, 23, 42, 0.08) 1px, transparent 1px);
  background-size: auto, 18px 18px;
}

.overview-card-signal .overview-card-art {
  background:
    radial-gradient(circle at 18% 18%, rgba(68, 176, 246, 1), transparent 8%),
    radial-gradient(circle at 32% 18%, rgba(95, 120, 255, 1), transparent 8%),
    radial-gradient(circle at 46% 18%, rgba(13, 88, 199, 1), transparent 8%),
    linear-gradient(145deg, #020817, #06132c 58%, #10306d);
}

.overview-card-naer .overview-card-art {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.62), transparent 18%),
    linear-gradient(145deg, #f6e2ce, #fbf2e9 55%, #f3d8bd);
}

.overview-card-presisjon .overview-card-art {
  background:
    linear-gradient(90deg, rgba(13, 88, 199, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(13, 88, 199, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #ecf3ff);
  background-size: 26px 26px, 26px 26px, auto;
}

.theme-fjordlys {
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 26%),
    linear-gradient(180deg, #eef5fc, #f8fbff 48%, #eef4fb 100%);
  color: #0c1838;
}

.theme-fjordlys h1,
.theme-fjordlys h2 {
  font-family: "Cormorant Garamond", serif;
}

.hero-fjordlys {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(6, 15, 36, 0.2), rgba(6, 18, 40, 0.72)),
    url("../old/files/strand.png") center/cover;
}

.hero-inner-fjordlys {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 28px;
  padding: 94px 0 64px;
}

.hero-fjordlys .hero-copy {
  max-width: 680px;
  color: #ffffff;
}

.hero-fjordlys h1,
.hero-redaksjonell h1,
.hero-signal h1,
.hero-naer h1,
.hero-presisjon h1 {
  font-size: clamp(3rem, 6.8vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-fjordlys .hero-copy p,
.hero-signal .hero-copy p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.86);
}

.glass-card {
  padding: 30px;
  color: #eff7ff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.split-layout,
.team-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 28px;
  align-items: start;
}

.service-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card-fjordlys {
  background: rgba(255, 255, 255, 0.78);
}

.theme-redaksjonell {
  font-family: "Manrope", sans-serif;
  background:
    linear-gradient(180deg, #f7f1e6, #f6f2ea 42%, #fbfaf6 100%);
  color: #1a1b1d;
}

.theme-redaksjonell h1,
.theme-redaksjonell h2 {
  font-family: "Cormorant Garamond", serif;
}

.hero-redaksjonell {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 36px;
  align-items: center;
  padding: 48px 0 70px;
}

.editorial-copy p {
  max-width: 56ch;
}

.editorial-image {
  min-height: 680px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(21, 32, 61, 0), rgba(21, 32, 61, 0.42)),
    url("../old/files/strand.png") center/cover;
  box-shadow: var(--shadow-soft);
}

.image-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
}

.editorial-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  padding: 0 0 48px;
}

.manifesto {
  padding: 0 0 12px;
  max-width: 58ch;
}

.editorial-facts {
  display: grid;
  gap: 18px;
}

.editorial-facts div {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.editorial-facts span {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1;
  color: var(--nc-deep);
}

.service-stack-editorial {
  grid-template-columns: 1fr;
}

.service-card-editorial {
  display: grid;
  grid-template-columns: 100px 1.1fr 1fr;
  align-items: start;
  gap: 24px;
  background: rgba(255, 255, 255, 0.64);
}

.editorial-split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 96px;
}

.editorial-aside {
  position: sticky;
  top: 108px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
}

.team-grid-editorial,
.team-grid-naer,
.team-grid-precision {
  grid-template-columns: 1fr;
}

.team-card-editorial {
  background: rgba(255, 255, 255, 0.64);
}

.price-table-editorial .price-row {
  border-bottom-color: rgba(15, 23, 42, 0.12);
}

.price-group-card-editorial h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.theme-signal {
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(18, 48, 103, 0.46), transparent 24%),
    linear-gradient(180deg, #020817, #040b19 42%, #020611 100%);
  color: #e6efff;
}

.theme-signal .primary-link {
  box-shadow: 0 18px 42px rgba(68, 176, 246, 0.3);
}

.hero-signal {
  min-height: 100svh;
  padding-bottom: 36px;
}

.signal-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(95, 120, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(95, 120, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 16% 28%, rgba(68, 176, 246, 0.24), transparent 18%),
    radial-gradient(circle at 78% 16%, rgba(95, 120, 255, 0.18), transparent 16%);
  background-size: 32px 32px, 32px 32px, auto, auto;
  opacity: 0.85;
}

.hero-inner-signal {
  width: min(var(--page), calc(100% - 48px));
  min-height: calc(100svh - 84px);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 30px;
}

.signal-panel {
  justify-self: end;
  width: min(460px, 100%);
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(95, 120, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.signal-dots {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.signal-dots i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  animation: pulse 2.8s infinite;
}

.signal-dots i:nth-child(1) {
  background: var(--nc-sky);
}

.signal-dots i:nth-child(2) {
  background: var(--nc-peri);
  animation-delay: 240ms;
}

.signal-dots i:nth-child(3) {
  background: var(--nc-deep);
  animation-delay: 520ms;
}

.signal-services,
.signal-matrix {
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto;
}

.service-grid-signal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card-signal,
.price-table-signal .price-row,
.team-card-signal {
  background: rgba(255, 255, 255, 0.04);
  color: #e6efff;
  border-color: rgba(255, 255, 255, 0.08);
}

.price-group-card-signal + .price-group-card-signal {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.price-group-card-signal h3,
.price-table-signal .price-note-row {
  color: #e6efff;
}

.price-table-signal .price-note-row {
  opacity: 0.7;
}

.service-card-signal .service-index,
.team-card-signal .team-role {
  color: rgba(230, 239, 255, 0.54);
}

.service-card-signal .service-list li::before {
  background: linear-gradient(135deg, #61d1ff, #5f78ff);
}

.signal-matrix {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  padding: 96px 0;
}

.signal-prices,
.signal-team {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.team-grid-signal {
  grid-template-columns: 1fr;
}

.theme-naer {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(180deg, #fcf1e7, #fff8f1 40%, #f8efe5 100%);
  color: #42271d;
}

.theme-naer h1,
.theme-naer h2 {
  font-family: "Fraunces", serif;
}

.hero-naer {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 30px;
  align-items: center;
  padding: 42px 0 70px;
}

.hero-copy-naer {
  max-width: 620px;
}

.hero-visual {
  min-height: 680px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-visual-naer {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.68), transparent 18%),
    linear-gradient(180deg, rgba(68, 176, 246, 0.08), rgba(0, 0, 0, 0.04)),
    url("../old/files/strand.png") center/cover;
  filter: saturate(0.8) sepia(0.12);
}

.hero-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.76);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.service-grid-naer {
  grid-template-columns: 1fr;
}

.service-card-naer,
.team-card-naer,
.price-panel {
  background: rgba(255, 252, 247, 0.84);
}

.team-layout-naer {
  grid-template-columns: 0.82fr 1.18fr;
}

.theme-presisjon {
  font-family: "IBM Plex Sans", sans-serif;
  background:
    linear-gradient(90deg, rgba(13, 88, 199, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(13, 88, 199, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff, #eef4fb 58%, #f8fbff 100%);
  background-size: 32px 32px, 32px 32px, auto;
  color: #0b1737;
}

.hero-presisjon {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  padding: 42px 0 70px;
  position: relative;
}

.precision-rule {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  background: linear-gradient(180deg, rgba(13, 88, 199, 0), rgba(13, 88, 199, 0.24), rgba(13, 88, 199, 0));
}

.hero-copy-presisjon {
  max-width: 660px;
}

.precision-summary {
  display: grid;
  gap: 18px;
}

.precision-summary div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.precision-summary span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(15, 23, 42, 0.5);
}

.precision-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 28px;
  padding-bottom: 96px;
}

.precision-table {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.precision-row {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease;
}

.precision-row ul {
  display: grid;
  gap: 8px;
}

.precision-row li {
  padding-left: 16px;
  position: relative;
}

.precision-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nc-deep);
}

.precision-aside {
  display: grid;
  gap: 20px;
}

.precision-box {
  padding: 26px;
  background: rgba(255, 255, 255, 0.84);
}

.reason-list {
  display: grid;
  gap: 14px;
}

.reason-list p {
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.team-grid-precision {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-card-precision {
  background: rgba(255, 255, 255, 0.88);
}

.price-group-card-precision h3 {
  color: #0b2348;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(95, 120, 255, 0.24);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 16px rgba(95, 120, 255, 0);
  }
}

@media (max-width: 1120px) {
  .overview-hero,
  .hero-inner-fjordlys,
  .hero-redaksjonell,
  .hero-naer,
  .hero-presisjon,
  .editorial-intro,
  .editorial-split,
  .signal-matrix,
  .precision-grid,
  .split-layout,
  .team-layout,
  .team-layout-naer,
  .price-panel,
  .contact-band,
  .overview-card {
    grid-template-columns: 1fr;
  }

  .precision-rule {
    display: none;
  }

  .editorial-aside {
    position: static;
  }

  .service-grid-signal,
  .service-stack {
    grid-template-columns: 1fr;
  }

  .service-card-editorial,
  .precision-row,
  .team-grid-precision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    width: calc(100% - 28px);
    min-height: 76px;
  }

  .page-nav {
    display: none;
  }

  .section,
  .overview-hero,
  .overview-list,
  .hero-inner-fjordlys,
  .hero-redaksjonell,
  .editorial-intro,
  .editorial-split,
  .signal-services,
  .signal-matrix,
  .hero-naer,
  .precision-grid,
  .hero-presisjon,
  .contact-band {
    width: calc(100% - 28px);
  }

  .overview-page,
  .concept-shell {
    overflow-x: hidden;
  }

  .hero-fjordlys h1,
  .hero-redaksjonell h1,
  .hero-signal h1,
  .hero-naer h1,
  .hero-presisjon h1,
  .overview-copy h1 {
    font-size: clamp(2.6rem, 13vw, 4.4rem);
  }

  .poster-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .overview-card {
    padding: 16px;
  }

  .editorial-image,
  .hero-visual {
    min-height: 420px;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-avatar {
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 560px) {
  .topbar-actions {
    gap: 8px;
  }

  .primary-link,
  .ghost-link {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .service-card,
  .team-card,
  .price-panel,
  .contact-band,
  .precision-box,
  .signal-prices,
  .signal-team,
  .glass-card,
  .editorial-aside {
    padding: 22px;
  }

  .hero-inner-fjordlys,
  .hero-redaksjonell,
  .hero-naer,
  .hero-presisjon,
  .hero-inner-signal {
    padding: 44px 0 48px;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .overview-poster {
    min-height: 420px;
  }
}
