* { box-sizing: border-box; }

/* Skjulte elementer skal blive ved med at være skjulte. Uden denne regel
   vinder en klasse med display: flex eller display: grid over HTML-attributten
   hidden, og elementet bliver synligt alligevel. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FBFAF7;
  color: #141414;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}
p { margin: 0; line-height: 1.68; }
a { color: inherit; }
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0F5C66;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid #141414;
}
.btn-primary { background: #141414; color: #FBFAF7; }
.btn-ghost { background: transparent; color: #141414; border-color: #EAE8E4; }

/* spiral mark */
.mark { display: block; color: #141414; }
.bullet { width: 14px; height: 14px; flex: none; margin-top: 4px; color: #0F5C66; }

/* Nav */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0;
}
.nav-mark { display: flex; align-items: center; gap: 12px; }
.nav-word {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 21px;
  letter-spacing: -0.01em; text-transform: none;
}
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14.5px; font-weight: 500; }
.nav-links a { text-decoration: none; color: #6B6862; }
.nav-links a:hover { color: #141414; }
.nav-links a.btn-primary {
  color: #FBFAF7;
}
.nav-links a.btn-primary:hover {
  color: #FBFAF7;
  background: #0F5C66;
  border-color: #0F5C66;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #EAE8E4;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(#EFEDE9 1px, transparent 1px),
    linear-gradient(90deg, #EFEDE9 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 620px 480px at 78% 40%, black 10%, transparent 72%);
  mask-image: radial-gradient(ellipse 620px 480px at 78% 40%, black 10%, transparent 72%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 74px 32px 88px;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.14;
  margin: 18px 0 22px;
  font-weight: 600;
}
.hero p.sub {
  font-size: 17px;
  color: #4A4844;
  max-width: 460px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.orbit-scene {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
}
.orbit-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #EAE8E4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #141414;
  z-index: 3;
  box-shadow: 0 8px 28px rgba(20, 20, 20, 0.06);
}
.orbit-core svg { width: 42px; height: 42px; }
.orbit-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px dashed #D9D5CE;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbit-ring-a { width: 210px; height: 210px; }
.orbit-ring-b { width: 300px; height: 300px; opacity: 0.7; }
.orbit-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #EAE8E4;
  color: #0F5C66;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(20, 20, 20, 0.05);
  z-index: 2;
  animation: orbit-drift 10s ease-in-out infinite;
}
.orbit-icon svg { width: 22px; height: 22px; }
.orbit-icon-1 { top: 18px; left: 50%; margin-left: -24px; animation-delay: 0s; }
.orbit-icon-2 { top: 58px; right: 28px; animation-delay: -1.4s; }
.orbit-icon-3 { bottom: 78px; right: 18px; animation-delay: -2.8s; }
.orbit-icon-4 { bottom: 22px; left: 50%; margin-left: -24px; animation-delay: -4.2s; }
.orbit-icon-5 { bottom: 78px; left: 18px; animation-delay: -5.6s; }
.orbit-icon-6 { top: 58px; left: 28px; animation-delay: -7s; }
@keyframes orbit-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(var(--dx, 6px), var(--dy, -8px)) scale(1.04); }
}
.orbit-icon-1 { --dx: 4px; --dy: 10px; }
.orbit-icon-2 { --dx: -10px; --dy: 6px; }
.orbit-icon-3 { --dx: -8px; --dy: -8px; }
.orbit-icon-4 { --dx: 6px; --dy: -10px; }
.orbit-icon-5 { --dx: 10px; --dy: -4px; }
.orbit-icon-6 { --dx: 8px; --dy: 8px; }
@media (prefers-reduced-motion: reduce) {
  .orbit-icon { animation: none; }
}

/* Sections */
section.block { padding: 88px 0; }
.section-head { max-width: 560px; margin-bottom: 48px; }
.section-head h2 { font-size: 30px; margin-top: 12px; }
.section-head p { color: #6B6862; font-size: 15.5px; margin-top: 12px; }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #EAE8E4;
  border: 1px solid #EAE8E4;
}
.service-card {
  background: #FBFAF7;
  padding: 34px 30px;
}
.service-card h3 { font-size: 18.5px; margin-bottom: 12px; font-weight: 600; }
.service-card p { color: #6B6862; font-size: 14.5px; }

.process-alt { background: #F5F3EF; border-top: 1px solid #EAE8E4; border-bottom: 1px solid #EAE8E4; }
.packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}
.package-card {
  background: #FBFAF7;
  border: 1px solid #EAE8E4;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.package-card.package-start {
  background: #F1F7F7;
  border-color: #D5E4E4;
}
.package-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A867F;
  display: block;
  margin-bottom: 16px;
}
.package-card.package-start .package-num { color: #0F5C66; }
.package-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}
.package-lead {
  color: #6B6862;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.package-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.package-list li {
  position: relative;
  padding-left: 16px;
  color: #34332D;
  font-size: 13.5px;
  line-height: 1.4;
}
.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: #0F5C66;
}
.package-footer {
  border-top: 1px solid #EAE8E4;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.package-footer strong {
  font-size: 14.5px;
  font-weight: 600;
  color: #141414;
}
.package-footer span {
  font-size: 12.5px;
  color: #8A867F;
  line-height: 1.4;
}
.package-card.package-start .package-footer {
  border-top-color: #D5E4E4;
}

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.audience-list { display: flex; flex-direction: column; gap: 16px; }
.audience-item { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: #34332D; }

/* Footer CTA */
.cta-band {
  position: relative;
  background: #141414;
  color: #FBFAF7;
  padding: 78px 0;
  overflow: hidden;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #FBFAF7; font-size: 32px; max-width: 520px; font-weight: 600; }
.cta-band p { color: #B9B6AA; margin-top: 14px; font-size: 15.5px; max-width: 460px; }
.cta-row { margin-top: 30px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: #FBFAF7; color: #141414; border-color: #FBFAF7; }
.cta-band .btn-ghost { border-color: #4A4844; color: #E9E7DE; }
.cta-watermark {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 320px; height: 320px; color: #FBFAF7; opacity: 0.07;
}

footer {
  padding: 26px 0 40px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #8A867F;
}

@media (max-width: 780px) {
  body { overflow-x: hidden; }
  .wrap { padding: 0 22px; }
  .eyebrow { font-size: 10px; letter-spacing: 0.16em; }
  .hero-inner > *, .audience > *, .services > *, .packages > * { min-width: 0; }
  .hero p.sub, .cta-band p, .cta-band h2, .section-head { max-width: 100%; }
  h1, h2, h3, p { overflow-wrap: break-word; }
  .hero-inner { grid-template-columns: 1fr; padding: 48px 22px 56px; }
  .hero-visual { min-height: 280px; margin-top: 8px; }
  .orbit-scene { width: min(100%, 300px); }
  .hero h1 { font-size: 34px; }
  .services { grid-template-columns: 1fr; }
  .packages { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .nav-links { display: flex; gap: 0; }
  .nav-links a:not(.login-shortcut) { display: none; }
  .nav-links .login-shortcut { display: inline-flex; padding: 9px 12px; border: 1px solid #EAE8E4; color: #141414; background: #FFFFFF; }
}
@media (max-width: 980px) and (min-width: 781px) {
  .packages { grid-template-columns: repeat(2, 1fr); }
}


/* ---------- Login ---------- */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 22px;
}
.login-card {
  width: 100%;
  max-width: 400px;
}
.login-mark {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 34px;
}
.login-card h1 {
  font-size: 27px;
  font-weight: 600;
  margin: 0 0 8px;
}
.login-card .sub {
  color: #6B6862;
  font-size: 15px;
  margin: 0 0 30px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8A867F;
  margin-bottom: 7px;
}
.field input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #EAE8E4;
  border-radius: 8px;
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #141414;
}
.field input:focus {
  outline: none;
  border-color: #0F5C66;
}
.login-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.login-meta {
  margin-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #8A867F;
}
.login-meta a { color: #0F5C66; text-decoration: none; }



