/* GreenlitHQ marketing-site. Ét stylesheet, ingen frameworks.
   Tokens først, derefter layout, derefter komponenter i den rækkefølge de optræder på siden. */

:root {
  --ground: #f6f8f5;
  --grid: #e4efe7;
  --tint: #ddf3e4;
  --tint-2: #c7ebd3;
  --tint-soft: #eef8f1;
  --accent: #1f8a4c;
  --accent-deep: #146b3a;
  --ink: #141416;
  --muted: #5f6166;
  --line: #dddddd;
  --hairline: #e6e8e4;
  --dark: #0e1411;
  --dark-2: #16201a;
  --white: #ffffff;
  --pill: #1a1a1a;

  --radius-lg: 26px;
  --radius: 18px;
  --radius-sm: 12px;
  --wrap: 1240px;
  --gap: 28px;

  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }

p { margin: 0; }

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

/* ---------- knapper ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--pill); color: #fff; text-decoration: none;
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: inherit; transition: transform .18s ease, background .18s ease;
}
.btn:hover { background: #000; transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f2f2f2; color: var(--ink); }

.playlink {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-size: 15px; color: var(--ink); font-weight: 400;
}
.playlink .play {
  width: 22px; height: 22px; border-radius: 50%; background: var(--ink);
  display: grid; place-items: center; flex: none;
}
.playlink .play::after {
  content: ""; width: 0; height: 0; margin-left: 2px;
  border-left: 6px solid #fff; border-top: 4px solid transparent; border-bottom: 4px solid transparent;
}
.playlink:hover { color: var(--accent-deep); }

/* ---------- toplinje + nav ---------- */
.announce {
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 500; text-align: center;
  padding: 12px 20px;
}
.announce span { display: inline-flex; align-items: center; gap: 10px; justify-content: center; flex-wrap: wrap; }
.announce .dot {
  width: 16px; height: 16px; border-radius: 50%; background: rgba(255, 255, 255, .3);
  display: inline-grid; place-items: center; flex: none;
}
.announce .dot::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
}
.nav-inner { display: flex; align-items: center; gap: 34px; padding-block: 16px; }

.logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 600; font-size: 21px; letter-spacing: -0.03em; }
.logo img { width: 29px; height: 28px; }
.logo-suffix { font-weight: 300; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 30px; margin-left: 10px; }
.nav-links a, .nav-links button {
  background: none; border: 0; padding: 6px 0; cursor: pointer;
  font: inherit; font-size: 15px; color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links a:hover, .nav-links button:hover { color: var(--accent-deep); }
.caret { width: 9px; height: 9px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translate(-2px, -2px); transition: transform .18s ease; }
[aria-expanded="true"] .caret { transform: rotate(-135deg) translate(-1px, -1px); }

.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: calc(100% + 12px); left: -18px; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 10px; box-shadow: 0 20px 44px rgba(20, 20, 22, .10);
}
.dropdown-panel a {
  display: block; padding: 10px 14px; border-radius: 10px; font-size: 15px;
}
.dropdown-panel a:hover { background: var(--tint-soft); }
.dropdown-panel small { display: block; color: var(--muted); font-size: 13px; }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-right .login { font-size: 15px; text-decoration: none; }

.nav-toggle { display: none; }

/* ---------- generelle sektioner ---------- */
.section { padding-block: 96px; }
.section-tight { padding-block: 64px; }

.eyebrow { font-size: 15px; color: var(--muted); text-align: center; margin-bottom: 14px; }
.eyebrow-left { text-align: left; color: var(--accent-deep); font-weight: 600; margin-bottom: 14px; }

h2.h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 600; text-align: center; }
h2.h2 .light { font-weight: 300; }
.lede { text-align: center; color: var(--muted); max-width: 640px; margin: 16px auto 0; }

.card {
  background: #fff; border: 1px solid #222; border-radius: var(--radius-lg);
}

.grid-bg {
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 104px 104px;
  background-position: center top;
}

/* dekorative kugler (Altas lilla kugler, vores grønne) */
.sphere { position: absolute; border-radius: 50%; pointer-events: none; }
.sphere::after {
  content: ""; position: absolute; inset: 10% 14% 52% 16%; border-radius: 50%;
  background: radial-gradient(circle at 38% 28%, rgba(255, 255, 255, .62), rgba(255, 255, 255, 0) 58%);
}
.s1 { background: radial-gradient(circle at 32% 28%, #d8f2e2, #a8dfc0 52%, #6cbd8d); }
.s2 { background: radial-gradient(circle at 32% 28%, #cdeeda, #8ed3ac 55%, #4ea873); }
.s3 { background: radial-gradient(circle at 32% 28%, #e4f6ea, #bce7cd 58%, #86cba4); }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: 26px; }
.hero.wrap { max-width: 1520px; }
.hero-card {
  position: relative; overflow: hidden;
  border: 1px solid #222; border-radius: var(--radius-lg); background: #fff;
  padding: 76px 32px 340px;
}
/* Blød, levende skygge bag hero'en (som Altas): to store lysglimt der driver langsomt og toner ud. */
.hero-card::before, .hero-card::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none; border-radius: 50%;
  filter: blur(60px); opacity: .55; will-change: transform, opacity;
}
.hero-card::before {
  width: 640px; height: 640px; left: -160px; bottom: -220px;
  background: radial-gradient(circle at 40% 40%, var(--tint-2), rgba(199,235,211,0) 68%);
  animation: glow-drift-a 18s ease-in-out infinite;
}
.hero-card::after {
  width: 560px; height: 560px; right: -140px; top: -160px;
  background: radial-gradient(circle at 60% 60%, #E9F7EE, rgba(233,247,238,0) 68%);
  animation: glow-drift-b 22s ease-in-out infinite;
}
.hero-card > * { position: relative; }
@keyframes glow-drift-a {
  0%   { transform: translate(0, 0) scale(1); opacity: .55; }
  40%  { transform: translate(90px, -40px) scale(1.08); opacity: .35; }
  70%  { transform: translate(30px, 20px) scale(.96); opacity: .15; }
  100% { transform: translate(0, 0) scale(1); opacity: .55; }
}
@keyframes glow-drift-b {
  0%   { transform: translate(0, 0) scale(1); opacity: .5; }
  35%  { transform: translate(-70px, 50px) scale(1.06); opacity: .2; }
  75%  { transform: translate(-20px, -30px) scale(.97); opacity: .4; }
  100% { transform: translate(0, 0) scale(1); opacity: .5; }
}
.hero-card > .grid-layer { position: absolute; inset: 0; opacity: .8; }
.hero-inner { position: relative; text-align: center; max-width: 900px; margin-inline: auto; }
.hero h1 {
  font-size: clamp(38px, 6.1vw, 74px); font-weight: 300; line-height: 1.06; letter-spacing: -0.035em;
}
.hero h1 b { font-weight: 700; }
.hero .sub { margin: 22px auto 0; max-width: 560px; color: var(--muted); font-size: 18px; }
.hero-actions { margin-top: 30px; display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap; }

.hero .sphere-a { width: 250px; height: 250px; left: -70px; bottom: 40px; }
.hero .sphere-b { width: 150px; height: 150px; left: 120px; bottom: -30px; }
.hero .sphere-c { width: 210px; height: 210px; right: -60px; bottom: 20px; }
.hero .sphere-d { width: 120px; height: 120px; right: 130px; bottom: -34px; }

/* tre agent-kort der lapper op over hero-kortets underkant */
.agents {
  position: relative; z-index: 2;
  margin: -260px auto 0; max-width: 1030px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.agent-card {
  background: #fff; border: 1px solid #222; border-radius: 22px; padding: 12px;
  box-shadow: 0 18px 40px rgba(20, 20, 22, .07);
}
.agent-tile {
  position: relative; background: var(--tint); border-radius: 14px; overflow: hidden;
  aspect-ratio: 1 / 1.02; display: flex; align-items: flex-end; justify-content: center;
}
.agent-tile img { width: 92%; height: auto; }
/* Levende agenter: stillbillede altid, en lydløs klip toner ind ved hover (site.js). */
.agent-tile .agent-still { width: 100%; height: 100%; object-fit: cover; display: block; }
.agent-motion {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.agent-tile.playing .agent-motion { opacity: 1; }
.agent-label {
  margin-top: 12px; background: var(--pill); color: #fff; border-radius: 12px;
  padding: 12px 16px; font-size: 15px; text-align: center; font-weight: 400;
}
.agent-note { margin-top: 10px; text-align: center; font-size: 13px; color: var(--muted); }

.hero-spacer { height: 26px; }

/* ---------- tillids-stribe ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px;
  padding-block: 18px; color: var(--muted); font-size: 15px;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 10px; }
.trust-strip span::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none;
}

/* ---------- produktpanel + fire søjler ---------- */
.panel-card { padding: 22px 22px 44px; }
.panel-stage {
  position: relative; border-radius: 18px; overflow: hidden; background: var(--dark);
  padding: 26px; min-height: 420px;
}
.panel-stage::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 78% 12%, rgba(31, 138, 76, .55), transparent 62%);
}
.stage-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; align-items: start; }

.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px;
  padding: 40px 12px 0;
}
.pillars h3 { font-family: var(--serif); font-size: 30px; font-weight: 600; letter-spacing: -0.01em; }
.pillars .sub { margin-top: 12px; font-weight: 600; font-size: 15px; }
.pillars p { margin-top: 10px; color: var(--muted); font-size: 15px; }
.pillars .tag {
  display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600;
  color: var(--accent-deep); background: var(--tint); border-radius: 999px; padding: 3px 11px;
}

/* ---------- mock-ui ---------- */
.mock {
  background: #fff; border-radius: 14px; padding: 16px; color: var(--ink);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
}
.mock-dark { background: var(--dark-2); color: #eef4ef; box-shadow: none; border: 1px solid #24312a; }
.mock h4 { font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.mock-row {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border: 1px solid var(--hairline); border-radius: 10px; margin-bottom: 8px; background: #fff;
}
.mock-dark .mock-row { background: #1c2721; border-color: #2a3830; }
.mock-avatar {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, var(--tint-2), var(--accent));
}
.mock-bar { height: 8px; border-radius: 999px; background: #e9ece9; }
.mock-dark .mock-bar { background: #2f3f36; }
.mock-lines { flex: 1; display: grid; gap: 6px; }
.mock-meta { font-size: 13px; color: var(--muted); }
.mock-dark .mock-meta { color: #9fb3a7; }
.mock-title { font-size: 14px; font-weight: 600; }

.chip {
  display: inline-block; font-size: 12px; font-weight: 500; border-radius: 999px;
  padding: 4px 11px; background: var(--tint); color: var(--accent-deep);
}
.chip-grey { background: #eef0ee; color: var(--muted); }
.chip-dark { background: #223028; color: #b8e6c9; }

.bubble {
  background: var(--tint-soft); border: 1px solid var(--tint-2); border-radius: 14px 14px 14px 4px;
  padding: 14px 16px; font-size: 14.5px; line-height: 1.55;
}
.bubble mark { background: var(--tint-2); border-radius: 5px; padding: 0 3px; color: inherit; }

.float-card {
  position: absolute; background: #fff; border-radius: 14px; padding: 14px;
  box-shadow: 0 20px 44px rgba(20, 20, 22, .18); width: 250px;
}

/* ---------- use cases ---------- */
.usecases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px; margin-top: 52px; }
.usecase .illu { border-radius: 16px; background: var(--tint); aspect-ratio: 3 / 2; overflow: hidden; }
.usecase .illu img { width: 100%; height: 100%; object-fit: cover; display: block; }
.usecase h3 { margin-top: 18px; font-size: 21px; font-weight: 500; }
.usecase p { margin-top: 8px; color: var(--muted); font-size: 15px; }
.badge {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .02em;
  border-radius: 999px; padding: 3px 10px; vertical-align: middle; margin-left: 8px;
}
.badge-now { background: var(--accent); color: #fff; }
.badge-soon { background: #eceeec; color: var(--muted); }

/* små CSS-illustrationer i use-case-fliserne */

/* ---------- agent-dybdekort (Always On) ---------- */
.deep { margin-top: 34px; padding: 26px; display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: start; }
.deep.flip { grid-template-columns: 1fr 300px; }
.deep.flip .deep-side { order: 2; }
.deep-side .agent-tile { aspect-ratio: 1 / 1.02; }
.deep-side .agent-label { border-radius: 12px; }
.deep-side h3 { font-family: var(--serif); font-size: 30px; margin-top: 24px; font-weight: 600; }
.deep-side .kicker { margin-top: 10px; font-weight: 600; font-size: 15px; }
.deep-side p { margin-top: 10px; color: var(--muted); font-size: 15px; }
.deep-stage {
  background: var(--dark); border-radius: 16px; padding: 22px; position: relative; min-height: 380px;
  overflow: hidden;
}
.deep-stage::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(110% 80% at 20% 0%, rgba(31, 138, 76, .40), transparent 60%);
}
.deep-stage > * { position: relative; }
.deep-stage h4 { color: #fff; font-size: 17px; font-weight: 500; margin-bottom: 16px; }

/* ---------- tre fliser ---------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.trio-tile {
  background: var(--tint); border-radius: 20px; padding: 26px; aspect-ratio: 1 / 1.02;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.trio-tile .inner {
  background: var(--dark); border-radius: 12px; width: 74%; aspect-ratio: 1; padding: 18px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
}
.trio-tile .inner span { font-family: var(--serif); font-size: 26px; }
.trio h3 { margin-top: 20px; font-size: 21px; font-weight: 500; }
.trio p { margin-top: 8px; color: var(--muted); font-size: 15px; }

/* ---------- citat + tal ---------- */
.quote-row { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; margin-top: 46px; }
.quote-card { padding: 34px 36px; position: relative; }
.quote-card .draft { font-size: 19px; line-height: 1.62; }
.quote-card .draft b { font-weight: 600; }
.quote-meta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.quote-foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--hairline); font-size: 14px; color: var(--muted); }
.quote-mark {
  position: absolute; right: 28px; bottom: 8px; font-size: 110px; line-height: 1;
  color: var(--tint-2); font-family: var(--serif); pointer-events: none; user-select: none;
}

.numbers { display: grid; grid-template-columns: 1fr 1fr; }
.numbers div { padding: 22px 26px; border-bottom: 1px solid var(--ink); }
.numbers div:nth-child(odd) { border-right: 1px solid var(--ink); }
.numbers div:nth-last-child(-n+2) { border-bottom: 0; }
.numbers .n { font-size: clamp(30px, 3.4vw, 44px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; }
.numbers .t { margin-top: 6px; color: var(--muted); font-size: 15px; }

.numbers-5 { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; }
.numbers-5 div { padding: 26px 30px; border-bottom: 1px solid var(--ink); border-right: 1px solid var(--ink); }
.numbers-5 div:nth-child(3n) { border-right: 0; }
.numbers-5 div:nth-last-child(-n+1) { border-bottom: 0; }
.numbers-5 .n { font-size: clamp(32px, 3.6vw, 48px); font-weight: 500; letter-spacing: -0.03em; }
.numbers-5 .t { margin-top: 8px; color: var(--muted); font-size: 15px; }

/* ---------- priser ---------- */
.price-rows { margin-top: 44px; border-top: 1px solid var(--ink); }
.price-row {
  display: grid; grid-template-columns: 260px 1fr auto; gap: 28px; align-items: baseline;
  padding: 28px 4px; border-bottom: 1px solid var(--ink);
}
.price-row .amount { font-size: clamp(26px, 3vw, 38px); font-weight: 500; letter-spacing: -0.03em; }
.price-row .what { font-weight: 600; }
.price-row p { color: var(--muted); font-size: 15px; margin-top: 6px; }
.price-note { margin-top: 26px; color: var(--muted); font-size: 15px; }

.includes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; margin-top: 34px; }
.includes li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.includes li::before {
  content: ""; flex: none; margin-top: 8px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

/* ---------- trin (Rasmus-siden) ---------- */
.step { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding-block: 60px; }
.step.flip .step-text { order: 2; }
.step h3 { font-size: clamp(24px, 2.6vw, 33px); font-weight: 600; max-width: 460px; }
.step p { margin-top: 18px; color: var(--muted); max-width: 470px; }
.step-actions { margin-top: 26px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.step-actions .replacing { font-size: 14px; color: var(--muted); }
.step-actions .replacing b { color: var(--ink); font-weight: 600; }
.step-illu { border-radius: 20px; background: var(--tint); padding: 26px; position: relative; overflow: hidden; min-height: 330px; display: flex; align-items: center; justify-content: center; }
.step-illu.dark { background: var(--dark); }

/* ---------- FAQ ---------- */
.faq { max-width: 900px; margin: 44px auto 0; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; font: inherit; color: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; text-align: left; font-size: 19px;
}
.faq-q .sign { position: relative; width: 18px; height: 18px; flex: none; }
.faq-q .sign::before, .faq-q .sign::after {
  content: ""; position: absolute; background: var(--ink); border-radius: 2px;
  left: 0; top: 8px; width: 18px; height: 2px; transition: transform .22s ease;
}
.faq-q .sign::after { transform: rotate(90deg); }
.faq-q[aria-expanded="true"] .sign::after { transform: rotate(0deg); }
.faq-a { display: none; padding: 0 4px 28px; color: var(--muted); max-width: 760px; }
.faq-a p + p { margin-top: 12px; }
.faq-item.open .faq-a { display: block; }

/* ---------- demo-panel ---------- */
.demo-panel {
  background: var(--tint); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 0;
}
.demo-left { padding: 52px 48px; position: relative; }
.demo-left h2 { font-size: clamp(26px, 3.1vw, 38px); font-weight: 600; max-width: 380px; }
.demo-left p { margin-top: 18px; color: #35443b; max-width: 400px; }
.demo-left .sphere-e { width: 130px; height: 130px; right: 40px; bottom: -34px; }
.demo-right { padding: 44px 48px; border-left: 1px solid rgba(20, 20, 22, .12); }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .02em; margin-bottom: 8px; }
.field label .req { color: var(--accent-deep); }
.field input, .field textarea {
  width: 100%; background: #fff; border: 1px solid transparent; border-radius: 10px;
  padding: 13px 14px; font: inherit; font-size: 15px; color: var(--ink);
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid var(--accent); outline-offset: 1px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { font-size: 13px; color: #3c4a41; margin-top: 4px; max-width: 460px; }
.form-status { margin-top: 16px; font-size: 15px; font-weight: 500; min-height: 24px; }
.form-status.err { color: #8a1f1f; }

/* ---------- mørkt CTA-bånd ---------- */
.cta-dark { background: var(--dark); color: #fff; border-radius: var(--radius-lg); padding: 74px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 50% 0%, rgba(31, 138, 76, .38), transparent 60%);
}
.cta-dark > * { position: relative; }
.cta-dark h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 600; }
.cta-dark p { margin-top: 14px; color: #b6c6bc; }
.cta-dark .btn { margin-top: 28px; }

/* ---------- footer ---------- */
.footer { padding-block: 70px 40px; }
.footer-card { background: #fff; border-radius: var(--radius-lg); padding: 44px 48px; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 34px; }
.footer-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.footer-card li { margin-bottom: 10px; }
.footer-card a { font-size: 15px; color: var(--muted); text-decoration: none; }
.footer-card a:hover { color: var(--ink); }
.footer-brand p { margin-top: 16px; color: var(--muted); font-size: 15px; max-width: 300px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; padding: 26px 4px 0; color: var(--muted); font-size: 14px; }

/* ---------- indtoning ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-card::before, .hero-card::after { animation: none; opacity: .35; }
  .agent-motion { display: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- responsivt ---------- */
@media (max-width: 1080px) {
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .usecases { grid-template-columns: repeat(2, 1fr); }
  .stage-grid { grid-template-columns: 1fr; }
  .quote-row { grid-template-columns: 1fr; gap: 40px; }
  .deep, .deep.flip { grid-template-columns: 1fr; }
  .deep.flip .deep-side { order: 0; }
  .footer-card { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-right .login { display: none; }
  .nav-toggle {
    display: inline-flex; margin-left: auto; background: none; border: 1px solid var(--line);
    border-radius: 10px; padding: 9px 12px; cursor: pointer; font: inherit; font-size: 14px;
  }
  .nav-right { margin-left: 14px; gap: 10px; }
  .nav.open .nav-links {
    /* order: 3 — ellers lander linkene på linje 2 og skubber Menu-knappen ned på linje 3. */
    display: flex; flex-direction: column; align-items: flex-start; gap: 6px; order: 3;
    width: 100%; padding: 14px 0 6px; margin: 0;
  }
  .nav.open .nav-inner { flex-wrap: wrap; }
  .nav.open .dropdown-panel { position: static; box-shadow: none; margin-top: 6px; }
  .nav.open .nav-right { order: 4; width: 100%; margin-left: 0; padding-bottom: 20px; }
  .nav.open .nav-right .login { display: inline; }

  .section { padding-block: 66px; }
  .hero-card { padding: 48px 20px 372px; }
  .agents { grid-template-columns: 1fr; max-width: 340px; margin-top: -322px; }
  .agents .agent-card:nth-child(n+2) { display: none; }
  .hero-spacer { height: 20px; }
  .nav-right .btn { padding: 9px 16px; font-size: 13px; white-space: nowrap; }
  .demo-panel { grid-template-columns: 1fr; }
  .demo-right { border-left: 0; border-top: 1px solid rgba(20, 20, 22, .12); padding: 34px 26px; }
  .demo-left { padding: 38px 26px; }
  .step, .step.flip { grid-template-columns: 1fr; gap: 30px; padding-block: 34px; }
  .step.flip .step-text { order: 0; }
  .trio { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .numbers-5 { grid-template-columns: 1fr 1fr; }
  .numbers-5 div:nth-child(3n) { border-right: 1px solid var(--ink); }
  .numbers-5 div:nth-child(2n) { border-right: 0; }
  .price-row { grid-template-columns: 1fr; gap: 8px; }
  .includes { grid-template-columns: 1fr; }
  .footer-card { grid-template-columns: 1fr; padding: 32px 26px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 16px; }
  /* Toplinjen skal kunne være på 375 px uden at skubbe siden vandret. */
  .nav-inner { gap: 12px; }
  .logo { font-size: 18px; }
  .logo img { width: 23px; height: 22px; }
  .nav-toggle { padding: 8px 10px; font-size: 13px; }
  .nav-right { margin-left: 8px; gap: 8px; }
  .nav-right .btn { padding: 9px 14px; font-size: 13px; }
  .usecases { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; padding-inline: 0; }
  .field-row { grid-template-columns: 1fr; }
  .quote-card { padding: 26px 22px; }
  .quote-mark { font-size: 74px; right: 16px; }
  .numbers { grid-template-columns: 1fr; }
  .numbers div:nth-child(odd) { border-right: 0; }
  .numbers div:nth-last-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .numbers div:last-child { border-bottom: 0; }
  .cta-dark { padding: 48px 20px; }
  .panel-card { padding: 14px 14px 30px; }
  .panel-stage { padding: 16px; min-height: 0; }
}

/* ---------- Rasmus-siden: delt hero ---------- */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-block: 64px 40px; }
.hero-split h1 { font-size: clamp(38px, 5.6vw, 66px); font-weight: 600; letter-spacing: -0.035em; }
.hero-split .sub { margin-top: 20px; color: var(--muted); max-width: 470px; font-size: 18px; }
.hero-split .sub b { color: var(--ink); font-weight: 600; }
.hero-split .actions { margin-top: 28px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-art { position: relative; }
.hero-art .agent-tile { border-radius: 22px; max-width: 380px; margin-left: 0; margin-right: auto; }
.hero-art .agent-tile img { width: 80%; }
.hero-art .float-card { right: 0; bottom: -18px; width: 240px; }
.hero-art .sphere-f { width: 130px; height: 130px; right: 20px; top: 0; }

.mini-lead { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--hairline); }
.mini-lead:last-child { border-bottom: 0; }
.mini-lead .mock-avatar { width: 24px; height: 24px; }
.mini-lead .who { flex: 1; font-size: 13px; line-height: 1.3; }
.mini-lead .who span { display: block; color: var(--muted); font-size: 12px; }

.kolleger-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 720px; margin: 44px auto 0; }

.page-head { padding-block: 64px 10px; text-align: center; }
.page-head h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 600; letter-spacing: -0.035em; }
.page-head h1 .light { font-weight: 300; }
.page-head p { margin: 18px auto 0; color: var(--muted); max-width: 620px; }

.prose { max-width: 720px; margin-inline: auto; }
.prose h2 { font-size: clamp(24px, 2.8vw, 32px); font-weight: 600; margin-top: 46px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: 16px; color: var(--muted); }
.prose p b, .prose p strong { color: var(--ink); font-weight: 600; }
.prose ul { margin-top: 16px; display: grid; gap: 12px; }
.prose li { display: flex; gap: 12px; color: var(--muted); }
.prose li::before { content: ""; flex: none; margin-top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; gap: 34px; padding-block: 40px 20px; }
  .hero-art .agent-tile { margin-inline: auto; }
  .hero-art .float-card { right: 0; bottom: 0; position: relative; margin: 18px auto 0; }
  .kolleger-grid { grid-template-columns: 1fr; max-width: 340px; }
}
