:root {
  --bg: #050706;
  --bg-soft: #0a0e0c;
  --panel: rgba(13, 18, 15, .76);
  --panel-solid: #0d1210;
  --line: rgba(229, 242, 235, .13);
  --line-strong: rgba(229, 242, 235, .23);
  --text: #f3f5ef;
  --muted: #9ca69f;
  --mint: #86ffd1;
  --mint-deep: #22c892;
  --amber: #ffb56b;
  --danger: #ff7f73;
  --radius: 28px;
  --shadow: 0 30px 100px rgba(0,0,0,.45);
  --header-h: 82px;
  --mx: 50vw;
  --my: 20vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(520px circle at var(--mx) var(--my), rgba(134,255,209,.055), transparent 68%);
}
::selection { background: var(--mint); color: #04100b; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link { position: fixed; top: -100px; left: 20px; z-index: 999; background: var(--text); color: var(--bg); padding: 12px 18px; border-radius: 10px; }
.skip-link:focus { top: 16px; }
/* Honeypot: robust visually-hidden. Bevisst IKKE display:none/visibility:hidden
   — mange bots hopper over felt skjult på den måten, og da slutter fella å virke.
   Feltet skal finnes i DOM og sendes med, men aldri nå et menneske: aria-hidden
   på wrapperen holder det ute av skjermlesere, tabindex="-1" ute av tab-rekka. */
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

#network { position: fixed; inset: 0; width: 100%; height: 100%; opacity: .42; pointer-events: none; z-index: 0; }
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; background:
  radial-gradient(900px 500px at 7% 4%, rgba(134,255,209,.1), transparent 60%),
  radial-gradient(760px 520px at 92% 48%, rgba(255,181,107,.075), transparent 64%),
  linear-gradient(180deg, #050706 0%, #070a08 55%, #050706 100%); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(6, 9, 7, .64);
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-size: 14px; font-weight: 800; letter-spacing: .06em; }
.brand strong { color: var(--mint); font-weight: 800; }
.brand-symbol { width: 32px; height: 32px; fill: none; stroke: var(--text); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 12px rgba(134,255,209,.25)); }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { color: #bcc4be; font-size: 13px; transition: color .25s ease; }
.desktop-nav a:hover { color: var(--text); }
.site-header > .button { justify-self: end; }
.header-actions { display: inline-flex; align-items: center; justify-self: end; gap: 10px; }

.nav-toggle {
  display: none;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  color: inherit;
  cursor: pointer;
}
.nav-toggle-bars { display: grid; gap: 5px; width: 16px; }
.nav-toggle-bars i { display: block; height: 1.6px; border-radius: 2px; background: var(--text); transition: transform .28s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:first-child { transform: translateY(3.3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:last-child { transform: translateY(-3.3px) rotate(-45deg); }

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px); left: 0; right: 0;
  display: grid;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(6, 9, 7, .92);
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { display: flex; align-items: center; min-height: 48px; padding: 0 14px; border-radius: 12px; color: #cfd6d1; font-size: 14px; }
.mobile-nav a + a { border-top: 1px solid var(--line); }
.mobile-nav a:active { background: rgba(255,255,255,.05); }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button::before { content: ""; position: absolute; inset: 0; transform: translateX(-110%); background: linear-gradient(100deg, transparent, rgba(255,255,255,.22), transparent); transition: transform .65s ease; }
.button:hover::before { transform: translateX(110%); }
.button:hover { transform: translateY(-2px); border-color: rgba(134,255,209,.55); }
.button span, .button i { position: relative; z-index: 2; }
.button i { font-style: normal; font-size: 18px; }
.button-small { min-height: 44px; padding: 0 17px; background: rgba(255,255,255,.055); }
.button-primary { color: #06100c; border-color: transparent; background: linear-gradient(125deg, #b3ffe2, var(--mint) 55%, #5fe2b1); box-shadow: 0 16px 50px rgba(75, 226, 169, .16); }
.button-primary:hover { border-color: transparent; box-shadow: 0 20px 70px rgba(75,226,169,.25); }

main, footer { position: relative; z-index: 2; }
.snap { scroll-margin-top: 90px; }
.section-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  min-height: 100svh;
  width: min(1400px, calc(100% - 36px));
  margin: 0 auto;
  padding: 142px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
  position: relative;
}
.hero-copy { max-width: 650px; padding-left: clamp(0px, 3vw, 50px); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: #a8b3ac; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span:not(.live-dot) { color: var(--mint); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 6px rgba(134,255,209,.08), 0 0 18px rgba(134,255,209,.65); animation: breathe 2s ease-in-out infinite; }
.hero h1 { margin: 0; max-width: 700px; font-size: clamp(54px, 6.4vw, 102px); line-height: .93; letter-spacing: -.066em; font-weight: 780; }
.gradient-text { display: block; background: linear-gradient(110deg, var(--text), var(--mint) 42%, var(--amber) 82%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: #aeb7b1; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.62; letter-spacing: -.02em; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; }
.text-link { color: #d5dad6; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.23); padding: 10px 0; transition: color .2s ease, border-color .2s ease; }
.text-link span { color: var(--mint); margin-left: 6px; }
.text-link:hover { color: var(--mint); border-color: var(--mint); }
.trust-line { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 44px; }
.trust-line span { border: 1px solid var(--line); background: rgba(255,255,255,.025); color: #95a099; padding: 9px 12px; border-radius: 999px; font-size: 11px; letter-spacing: .03em; }

.hero-stage { perspective: 1400px; transform-style: preserve-3d; position: relative; }
.stage-glow { position: absolute; inset: 14% 12%; filter: blur(70px); background: radial-gradient(circle, rgba(134,255,209,.18), rgba(255,181,107,.06) 48%, transparent 70%); }
.system-window {
  position: relative;
  min-height: 640px;
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(17,24,20,.93), rgba(7,10,8,.86));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
}
.system-window::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(118deg, rgba(255,255,255,.08), transparent 18%, transparent 80%, rgba(134,255,209,.04)); }
.window-topbar, .window-footer { display: flex; align-items: center; position: relative; z-index: 3; }
.window-topbar { height: 62px; padding: 0 22px; border-bottom: 1px solid var(--line); justify-content: space-between; }
.window-topbar p { margin: 0; color: #8f9b94; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.16); }
.window-dots span:first-child { background: var(--amber); }
.window-status { display: flex; align-items: center; gap: 7px; font-size: 9px; font-weight: 800; color: #9ca8a0; letter-spacing: .12em; }
.window-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 14px rgba(134,255,209,.7); }
.system-grid { position: relative; height: 495px; padding: 24px; }
.signal-card { position: absolute; width: 42%; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.035); backdrop-filter: blur(12px); box-shadow: 0 22px 50px rgba(0,0,0,.2); z-index: 2; }
.signal-in { top: 34px; left: 28px; }
.signal-out { right: 28px; bottom: 30px; }
.card-label { display: block; margin-bottom: 12px; color: var(--mint); font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.signal-card strong { display: block; font-size: 16px; letter-spacing: -.025em; }
.signal-card p { margin: 10px 0 18px; color: #9ba69e; line-height: 1.45; font-size: 12px; }
.signal-meta { display: flex; justify-content: space-between; color: #748079; font-size: 9px; }
.progress { height: 4px; margin: 15px 0; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.06); }
.progress span { display: block; height: 100%; width: 72%; background: linear-gradient(90deg, var(--mint), var(--amber)); animation: progress 4s ease-in-out infinite; }
.ai-core { position: absolute; left: 50%; top: 50%; width: 190px; height: 190px; transform: translate(-50%, -50%); display: grid; place-items: center; text-align: center; z-index: 4; }
.core-center { display: grid; place-items: center; position: absolute; width: 70px; height: 70px; border-radius: 22px; color: #06100c; background: linear-gradient(140deg, var(--mint), #d9ffeF); font-size: 30px; font-weight: 900; box-shadow: 0 0 70px rgba(134,255,209,.28); }
.core-orbit { position: absolute; border: 1px solid rgba(134,255,209,.18); border-radius: 50%; }
.orbit-one { width: 132px; height: 132px; animation: spin 14s linear infinite; }
.orbit-one::before { content: ""; position: absolute; top: 9px; left: 20px; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 18px var(--mint); }
.orbit-two { width: 182px; height: 182px; border-style: dashed; border-color: rgba(255,181,107,.18); animation: spinReverse 24s linear infinite; }
.orbit-two::before { content: ""; position: absolute; bottom: 18px; right: 22px; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 18px var(--amber); }
.ai-core p { position: absolute; top: 142px; margin: 0; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.ai-core > span { position: absolute; top: 163px; width: 220px; color: #707d75; font-size: 8px; }
.flow-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.flow-path { fill: none; stroke: url(#flowGradient); stroke-width: 1.4; stroke-dasharray: 6 10; opacity: .6; }
.flow-pulse { fill: var(--mint); filter: drop-shadow(0 0 10px var(--mint)); }
.window-footer { min-height: 83px; border-top: 1px solid var(--line); display: grid; grid-template-columns: .8fr .9fr 1.3fr; }
.window-footer > div { min-height: 82px; padding: 15px 18px; display: grid; align-content: center; border-right: 1px solid var(--line); }
.window-footer > div:last-child { border-right: 0; }
.window-footer span { color: #68736d; font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.window-footer strong { display: block; margin-top: 5px; font-size: 14px; letter-spacing: -.02em; }
.window-footer small { color: #68736d; margin-top: 2px; font-size: 8px; }
.status-ok { color: var(--mint); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 9px; color: #657169; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(var(--mint), transparent); animation: scrollCue 2s ease-in-out infinite; }

.manifesto { min-height: 85svh; display: grid; place-items: center; padding: 120px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.015), transparent); }
.manifesto .section-shell { max-width: 1180px; }
.massive { margin: 0; max-width: 1120px; font-size: clamp(48px, 7.6vw, 114px); line-height: .94; letter-spacing: -.07em; font-weight: 760; }
.massive span { color: #6d7771; }
.manifesto-copy { max-width: 660px; margin: 44px 0 0 auto; color: #9ca69f; font-size: clamp(17px, 1.7vw, 22px); line-height: 1.65; }

.experience { width: min(1240px, calc(100% - 40px)); min-height: 100svh; margin: 0 auto; padding: 130px 0; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.experience.reverse { grid-template-columns: 1.18fr .82fr; }
.experience.reverse .experience-copy { order: 2; }
.experience-copy h2 { margin: 0; font-size: clamp(42px, 5.2vw, 78px); line-height: .98; letter-spacing: -.058em; }
.experience-copy > p:not(.eyebrow) { color: #9ca69f; font-size: 18px; line-height: 1.65; }
.feature-list { list-style: none; padding: 0; margin: 30px 0 0; }
.feature-list li { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); color: #c4cbc6; font-size: 13px; }
.feature-list li span { color: var(--mint); }
.demo-shell, .pipeline, .orbit-dashboard { border: 1px solid var(--line-strong); border-radius: 32px; background: linear-gradient(145deg, rgba(18,25,21,.92), rgba(7,10,8,.91)); box-shadow: var(--shadow); overflow: hidden; transform-style: preserve-3d; }

.demo-shell { min-height: 660px; padding: 16px; display: flex; flex-direction: column; }
.demo-topbar { display: flex; align-items: center; justify-content: space-between; min-height: 48px; padding: 0 8px 0 14px; border-bottom: 1px solid var(--line); color: #808b84; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.online { color: var(--mint); }
.chat { flex: 1; padding: 42px 20px; display: flex; flex-direction: column; gap: 18px; background: radial-gradient(circle at 50% 25%, rgba(134,255,209,.05), transparent 45%); }
.chat-message { max-width: 78%; padding: 18px 20px; border-radius: 20px; }
.chat-message small { display: block; margin-bottom: 9px; font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.chat-message p { margin: 0; font-size: 14px; line-height: 1.55; }
.chat-message.customer { align-self: flex-end; border: 1px solid rgba(255,181,107,.22); background: rgba(255,181,107,.07); }
.chat-message.customer small { color: var(--amber); }
.chat-message.agent { border: 1px solid rgba(134,255,209,.24); background: rgba(134,255,209,.075); animation: messageIn .45s ease both; }
.chat-message.agent small { color: var(--mint); }
.typing { width: max-content; display: flex; gap: 5px; padding: 14px 16px; border: 1px solid rgba(134,255,209,.16); border-radius: 16px; background: rgba(134,255,209,.05); }
.typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); animation: typing 1.2s ease-in-out infinite; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
.chat-input { display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 0 12px 0 20px; border: 1px solid var(--line); border-radius: 17px; color: #707b74; font-size: 12px; }
.chat-input i { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; color: #06100c; background: var(--mint); font-style: normal; }

.pipeline { min-height: 650px; padding: 24px; }
.pipeline-header { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); color: #727e76; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.pipeline-header span:last-child { color: var(--amber); }
.pipeline-map { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr; align-items: center; padding: 52px 0; }
.pipeline-node { min-width: 0; text-align: center; opacity: .5; }
.pipeline-node.active { opacity: 1; }
.pipeline-node i { display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto 11px; border: 1px solid var(--line-strong); border-radius: 14px; color: var(--muted); background: rgba(255,255,255,.04); font-size: 10px; font-style: normal; }
.pipeline-node.active i { color: #06100c; background: var(--mint); border-color: transparent; box-shadow: 0 0 30px rgba(134,255,209,.18); }
.pipeline-node strong { display: block; font-size: 11px; }
.pipeline-node small { display: block; margin-top: 5px; color: #69746d; font-size: 8px; }
.pipeline-line { height: 1px; overflow: hidden; background: rgba(255,255,255,.08); }
.pipeline-line span { display: block; width: 55%; height: 100%; background: linear-gradient(90deg, transparent, var(--mint), transparent); animation: pipelineMove 2s linear infinite; }
.lead-preview { position: relative; min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.016)); }
.lead-company span { display: block; font-size: 15px; font-weight: 800; letter-spacing: .04em; }
.lead-company small { display: block; margin-top: 7px; color: #6f7a73; font-size: 10px; }
/* .score-ring er fjernet sammen med den fabrikkerte 86/100-scoren.
   margin-top var 92px kun for å klarere den absolutt-posisjonerte ringen. */
.lead-reasons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.lead-reasons span { padding: 8px 10px; border: 1px solid rgba(134,255,209,.16); border-radius: 999px; color: #a7b1aa; background: rgba(134,255,209,.035); font-size: 9px; }
.lead-note { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); color: #8b958e; font-size: 11px; line-height: 1.6; }

.orbit-dashboard { min-height: 680px; display: grid; grid-template-columns: .9fr 1.1fr; padding: 36px; position: relative; }
.orbit-copy p { margin: 0; color: var(--mint); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.orbit-copy h3 { margin: 12px 0 7px; font-size: 30px; letter-spacing: -.045em; }
.orbit-copy span { color: #78837c; font-size: 10px; }
.orbit-visual { position: relative; min-height: 380px; align-self: center; display: grid; place-items: center; }
.orbit-ring { position: absolute; border: 1px solid rgba(134,255,209,.14); border-radius: 50%; }
.ring-a { width: 130px; height: 130px; animation: spin 12s linear infinite; }
.ring-b { width: 220px; height: 220px; border-style: dashed; border-color: rgba(255,181,107,.16); animation: spinReverse 24s linear infinite; }
.ring-c { width: 310px; height: 310px; animation: spin 34s linear infinite; }
.orb { position: absolute; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; color: #06100c; background: var(--mint); font-size: 9px; font-weight: 900; box-shadow: 0 0 25px rgba(134,255,209,.26); }
.orb-a { top: -18px; left: calc(50% - 18px); }
.orb-b { right: -18px; top: calc(50% - 18px); background: var(--amber); }
.orb-c { bottom: -18px; left: calc(50% - 18px); }
.orbit-center { position: relative; z-index: 2; width: 94px; height: 94px; display: grid; place-items: center; align-content: center; border: 1px solid rgba(134,255,209,.35); border-radius: 28px; color: var(--mint); background: rgba(134,255,209,.07); font-size: 18px; font-weight: 900; box-shadow: 0 0 70px rgba(134,255,209,.12); }
.orbit-center small { display: block; margin-top: 4px; color: #69746d; font-size: 8px; }
.task-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.task-list > div { display: flex; align-items: center; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.task-list > div > span { display: grid; place-items: center; flex: 0 0 29px; height: 29px; border-radius: 9px; color: #06100c; background: var(--mint); font-size: 11px; }
.task-list p { margin: 0; }
.task-list strong { display: block; font-size: 10px; }
.task-list small { display: block; margin-top: 4px; color: #667169; font-size: 8px; }

.results { min-height: 100svh; padding: 140px 0; display: grid; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(134,255,209,.022), rgba(255,255,255,.012)); }
.results-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: end; }
.results-heading h2 { margin: 0; font-size: clamp(46px, 6.5vw, 90px); line-height: .95; letter-spacing: -.065em; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 78px; }
.metric { min-height: 300px; padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.025); }
.metric strong { font-size: clamp(70px, 8vw, 110px); line-height: 1; letter-spacing: -.07em; background: linear-gradient(140deg, var(--text), var(--mint)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric i { color: var(--amber); font-size: 20px; font-style: normal; font-weight: 700; }
.metric p { max-width: 280px; margin: 76px 0 0; color: #8c9790; line-height: 1.5; font-size: 13px; }
/* Tekst-metrikk («Steg 1») i stedet for tall: 110px-graden er laget for siffer
   og ville sprengt kortet. Egen variant, ikke overstyring av tall-kortet. */
.metric-text strong { font-size: clamp(30px, 3.2vw, 42px); letter-spacing: -.03em; }
.metric-text p { margin-top: 28px; }
.results-note { max-width: 610px; margin: 28px 0 0 auto; color: #606b64; font-size: 10px; line-height: 1.6; }

.process { min-height: 90svh; padding: 140px 0; display: grid; align-items: center; }
.process-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: end; }
.process-heading h2 { margin: 0; font-size: clamp(46px, 6vw, 84px); line-height: .98; letter-spacing: -.06em; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 80px; border-top: 1px solid var(--line); }
.process-steps article { min-height: 270px; padding: 28px; border-right: 1px solid var(--line); }
.process-steps article:last-child { border-right: 0; }
.process-steps span { color: var(--mint); font-size: 10px; font-weight: 900; }
.process-steps h3 { margin: 90px 0 12px; font-size: 26px; letter-spacing: -.04em; }
.process-steps p { margin: 0; max-width: 300px; color: #8b968f; font-size: 13px; line-height: 1.6; }

.cta { min-height: 100svh; padding: 130px 20px 90px; position: relative; display: grid; place-items: center; overflow: hidden; border-top: 1px solid var(--line); }
.cta-aura { position: absolute; width: 1100px; height: 1100px; border-radius: 50%; background: radial-gradient(circle, rgba(134,255,209,.12), rgba(255,181,107,.045) 35%, transparent 68%); filter: blur(10px); }
.cta-content { width: min(860px, 100%); position: relative; z-index: 2; text-align: center; }
.cta h2 { margin: 0; font-size: clamp(52px, 7vw, 96px); line-height: .94; letter-spacing: -.07em; }
.cta-content > p:not(.eyebrow) { max-width: 650px; margin: 28px auto 0; color: #9ca69f; font-size: 18px; line-height: 1.65; }
.cta .eyebrow { justify-content: center; }
.pilot-form { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; }
.pilot-form label { display: grid; gap: 8px; }
.pilot-form label span { color: #808b84; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pilot-form input, .pilot-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 15px; color: var(--text); background: rgba(255,255,255,.035); outline: none; padding: 16px 17px; transition: border-color .2s ease, background .2s ease; }
.pilot-form textarea { resize: vertical; min-height: 120px; }
.pilot-form input:focus, .pilot-form textarea:focus { border-color: rgba(134,255,209,.5); background: rgba(134,255,209,.045); }
.pilot-form .full { grid-column: 1 / -1; }
.pilot-form button { width: 100%; border: 0; }
.form-note { display: block; margin-top: 16px; color: #657169; font-size: 10px; }

/* Var `1fr auto auto` for 3 barn. Footeren har nå også avsender (lovpålagt) og
   personvernlenke = 5 barn; den gamle malen ville brukket layouten. */
footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 44px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px 40px; color: #657169; font-size: 10px; }
footer p { margin: 0; }
.site-identity { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line); font-style: normal; font-size: 11px; line-height: 1.95; color: #7b857e; }
.site-identity strong { color: #aab3ac; font-weight: 700; }
.site-identity a { color: var(--mint); }
.site-identity a:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 9px; align-items: center; }
.footer-links a { color: #9aa39c; }
.footer-links a:hover { color: var(--mint); }

/* Skjuling gjelder KUN når JS er bekreftet i gang (html.js-reveal settes av
   inline-scriptet i <head>, og fjernes igjen hvis script.js ikke melder seg
   klar). Uten .js-reveal har .reveal ingen opacity-regel → innholdet er synlig.
   Slik er IntersectionObserver en forbedring, ikke en forutsetning for innhold. */
.js-reveal .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.js-reveal .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes breathe { 50% { opacity: .55; transform: scale(.85); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes progress { 0%,100% { width: 48%; } 50% { width: 89%; } }
@keyframes scrollCue { 0%,100% { opacity: .2; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes typing { 0%,100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(-4px); opacity: 1; } }
@keyframes messageIn { from { opacity: 0; transform: translateY(8px); } }
@keyframes pipelineMove { from { transform: translateX(-120%); } to { transform: translateX(240%); } }

@media (min-width: 1000px) and (prefers-reduced-motion: no-preference) {
  html { scroll-snap-type: y proximity; }
  .snap { scroll-snap-align: start; }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; width: min(900px, calc(100% - 36px)); padding-top: 140px; }
  .hero-copy { padding-left: 0; }
  .hero-stage { width: 100%; }
  .system-window { min-height: 610px; }
  .scroll-cue { display: none; }
  .experience, .experience.reverse { grid-template-columns: 1fr; min-height: auto; padding: 120px 0; }
  .experience.reverse .experience-copy { order: 0; }
  .experience-copy { max-width: 760px; }
  .results-heading, .process-heading { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 760px) {
  :root { --radius: 22px; }
  body::before { display: none; }
  .site-header { top: 10px; min-height: 58px; grid-template-columns: 1fr auto; border-radius: 18px; padding-left: 13px; }
  .brand { font-size: 12px; }
  .brand-symbol { width: 28px; height: 28px; }
  .desktop-nav { display: none; }
  .nav-toggle { display: grid; flex: 0 0 44px; width: 44px; min-width: 44px; height: 44px; }
  .button-small { min-height: 44px; padding: 0 13px; font-size: 11px; }
  .button-small i { display: none; }
  .section-shell, .experience { width: min(100% - 28px, 680px); }
  .hero { width: min(100% - 28px, 680px); padding: 120px 0 76px; gap: 54px; }
  .hero h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .trust-line { gap: 7px; margin-top: 30px; }
  .trust-line span { font-size: 9px; }
  .system-window { min-height: 550px; border-radius: 22px; }
  .window-topbar { height: 52px; padding: 0 14px; }
  .window-topbar p { display: none; }
  .system-grid { height: 414px; padding: 14px; }
  .signal-card { width: 62%; padding: 14px; border-radius: 15px; }
  .signal-in { top: 16px; left: 14px; }
  .signal-out { right: 14px; bottom: 16px; }
  .signal-card strong { font-size: 12px; }
  .signal-card p { font-size: 10px; }
  .signal-meta { font-size: 7px; }
  .ai-core { width: 138px; height: 138px; }
  .core-center { width: 54px; height: 54px; border-radius: 17px; font-size: 23px; }
  .orbit-one { width: 96px; height: 96px; }
  .orbit-two { width: 132px; height: 132px; }
  .ai-core p { top: 111px; font-size: 7px; }
  .ai-core > span { top: 128px; font-size: 6px; }
  .window-footer { grid-template-columns: 1fr 1fr; }
  .window-footer > div { min-height: 84px; padding: 12px; }
  .window-footer > div:nth-child(2) { border-right: 0; }
  .window-footer > div:last-child { display: none; }
  .massive { font-size: clamp(48px, 13.5vw, 70px); }
  .manifesto { min-height: auto; padding: 100px 0; }
  .manifesto-copy { margin-top: 30px; font-size: 17px; }
  .experience { gap: 48px; padding: 100px 0; }
  .experience-copy h2 { font-size: clamp(44px, 12vw, 64px); }
  .experience-copy > p:not(.eyebrow) { font-size: 16px; }
  .demo-shell, .pipeline, .orbit-dashboard { border-radius: 22px; }
  .demo-shell { min-height: 580px; }
  .chat { padding: 28px 5px; }
  .chat-message { max-width: 90%; }
  .pipeline { min-height: 590px; padding: 15px; }
  .pipeline-map { grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 36px 0; }
  .pipeline-line { display: none; }
  .pipeline-node i { width: 38px; height: 38px; }
  .lead-preview { padding: 22px; }
  .lead-reasons { margin-top: 24px; }
  .orbit-dashboard { min-height: 700px; grid-template-columns: 1fr; padding: 24px 18px; }
  .orbit-visual { min-height: 390px; }
  .ring-c { width: 280px; height: 280px; }
  .task-list { grid-template-columns: 1fr; }
  .results { min-height: auto; padding: 110px 0; }
  .metric-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .metric { min-height: 240px; }
  .metric p { margin-top: 50px; }
  .process { min-height: auto; padding: 110px 0; }
  .process-steps { grid-template-columns: 1fr; margin-top: 50px; }
  .process-steps article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-steps h3 { margin-top: 60px; }
  .cta { min-height: auto; padding: 110px 14px 90px; }
  .cta h2 { font-size: clamp(48px, 13vw, 68px); }
  .pilot-form { grid-template-columns: 1fr; }
  .pilot-form .full { grid-column: auto; }
  footer { grid-template-columns: 1fr; gap: 14px; padding: 38px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  /* Må matche spesifisiteten til .js-reveal .reveal, ellers vinner den og
     innholdet blir liggende på opacity 0 til observeren evt. fyrer. */
  .js-reveal .reveal, .js-reveal .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  #network { display: none; }
}

/* ── Metallic tekst-aksenter ────────────────────────────────────────────────
   Rent visuelt lag. Alle metallic-tekster har en solid, lesbar fallback-farge
   FØRST; gradient + background-clip:text legges kun på under @supports, så
   teksten aldri blir usynlig om clipping ikke støttes. Ingen font-vektendring,
   ingen layout-endring (kun inline-spans). Glød via text-shadow, holdt svak.
   Klassene legges sist i fila med vilje: ved lik spesifisitet vinner de over
   eksisterende farge-regler. */

.metal-gold  { color: #f0cd78; }         /* lys, lettlest gull-fallback */
.metal-blue  { color: #9cccff; }         /* lys, lettlest blå-fallback  */
.brand-metal-gold { color: #f4d27e; font-weight: inherit; }

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .metal-gold {
    background-image: linear-gradient(158deg, #8a6413 0%, #e6bf55 28%, #fff3ca 50%, #d7a63f 72%, #916a1a 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    text-shadow: 0 0 10px rgba(232,194,90,.16);
  }
  .metal-blue {
    background-image: linear-gradient(158deg, #235a86 0%, #5aa2ea 30%, #d3ebff 50%, #4e8ed4 72%, #1e456e 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    text-shadow: 0 0 9px rgba(90,162,234,.15);
  }
  .brand-metal-gold {
    background-image: linear-gradient(120deg, #6f4e0f 0%, #d7ac46 24%, #fff4cf 45%, #e7c05a 60%, #b9882b 80%, #6f4e0f 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    text-shadow: 0 0 14px rgba(230,191,85,.26);
    animation: brandSheen 6.5s ease-in-out infinite;
  }
  /* Merkenavnet kan inneholde <strong> (bold "SYSTEM"): la barnet arve den
     transparente fyllingen så forelderens gradient klippes gjennom hele ordet,
     men behold fet vekt. */
  .brand-metal-gold strong { color: inherit; -webkit-text-fill-color: inherit; background: none; }
}

@keyframes brandSheen {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Reduced-motion: sist i fila så den vinner over @supports-animasjonen over.
   Shimmer av, metallic-gradient beholdes. */
@media (prefers-reduced-motion: reduce) {
  .brand-metal-gold { animation: none; background-position: 0% 50%; }
}

/* ── Premium first-fold carousel ──────────────────────────────────────────
   Skarpt tekstplan + myk, forstørret bakgrunn gir et kontrollert «sugd inn»-drag. */
.sr-only {
  position: absolute !important; width: 1px !important; height: 1px !important;
  margin: -1px !important; padding: 0 !important; overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
}
.hero-slider {
  position: relative; z-index: 3; min-height: 100svh; overflow: hidden;
  isolation: isolate; background: #03060b; border-bottom: 1px solid rgba(255,255,255,.11);
}
.hero-slider:focus-visible { outline: 2px solid #f1c861; outline-offset: -5px; }
.hero-slider__track {
  display: flex; width: 100%; min-height: 100svh; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}
.hero-slider__track::-webkit-scrollbar { display: none; }
.hero-slide {
  --slide-accent: 80,147,255; --scene-x: 64%;
  position: relative; flex: 0 0 100%; width: 100%; min-height: 100svh;
  display: grid; align-items: center; overflow: hidden; scroll-snap-align: start;
  scroll-snap-stop: always; background:
    radial-gradient(80% 100% at var(--scene-x) 44%, rgba(var(--slide-accent),.18), transparent 62%),
    linear-gradient(112deg,#02050a 0%,#07101c 50%,#03060b 100%);
}
.hero-slide--industry { --slide-accent: 219,158,63; }
.hero-slide--service { --slide-accent: 65,177,193; }
.hero-slide--command { --slide-accent: 77,124,255; }
.hero-slide__depth {
  position: absolute; z-index: 0; inset: -6%; overflow: hidden;
  transform: scale(1.055) translate3d(1.5%,0,0); filter: blur(5px) saturate(.82);
  opacity: .82; transition: transform 2.2s cubic-bezier(.18,.8,.2,1),filter 2s ease,opacity 1.4s ease;
  will-change: transform,opacity;
}
.hero-slide.is-active .hero-slide__depth {
  transform: scale(1.13) translate3d(-1.5%,0,0); filter: blur(8px) saturate(.92); opacity: 1;
}
.hero-slide__shade {
  position: absolute; z-index: 1; inset: 0; pointer-events: none; background:
    linear-gradient(90deg,rgba(2,5,10,.96) 0%,rgba(2,5,10,.8) 36%,rgba(2,5,10,.22) 68%,rgba(2,5,10,.48) 100%),
    linear-gradient(180deg,rgba(2,5,10,.58),transparent 25%,transparent 72%,rgba(2,5,10,.78));
}
.hero-slide__content {
  position: relative; z-index: 3; width: min(1280px,calc(100% - 80px)); margin: 0 auto;
  padding: 150px 0 120px; transform: translate3d(0,22px,0); opacity: .72;
  transition: transform 1s cubic-bezier(.2,.8,.2,1),opacity .8s ease;
}
.hero-slide.is-active .hero-slide__content { transform: none; opacity: 1; }
.hero-slide__eyebrow { margin: 0 0 22px; color: #d7d9de; font-size: 11px; font-weight: 800; letter-spacing: .23em; }
.hero-slide h1,.hero-slide h2 {
  max-width: 920px; margin: 0; color: #f7f7f4; font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(54px,6.2vw,98px); font-weight: 500; line-height: .98; letter-spacing: -.052em;
  text-wrap: balance; text-shadow: 0 4px 30px rgba(0,0,0,.58);
}
.hero-slide__lead {
  max-width: 760px; margin: 28px 0 0; color: #f1f3f6; font-size: clamp(20px,2vw,29px);
  line-height: 1.35; letter-spacing: -.025em; text-shadow: 0 3px 18px rgba(0,0,0,.72);
}
.hero-slide__value {
  max-width: 700px; margin: 18px 0 0; color: #c3cad3; font-size: clamp(15px,1.15vw,18px);
  line-height: 1.6; text-shadow: 0 2px 16px rgba(0,0,0,.78);
}
.hero-slide__assurance {
  max-width: 690px; margin: 14px 0 0; padding-left: 14px; border-left: 1px solid rgba(240,202,111,.55);
  color: #aeb6bf; font-size: 12px; line-height: 1.55;
}
.hero-slide__actions { display: flex; align-items: center; gap: 18px; margin-top: 34px; }
.hero-slide__primary {
  min-width: 230px; color: #100c04; border-color: rgba(255,228,157,.9);
  background: linear-gradient(125deg,#8c641e,#f3cf72 24%,#fff1bd 48%,#c58c2b 78%,#7c5617);
  box-shadow: 0 15px 48px rgba(216,158,51,.24),inset 0 1px 0 rgba(255,255,255,.55);
}
.hero-slide__primary:hover { border-color: #fff0ba; box-shadow: 0 18px 58px rgba(216,158,51,.34); }
.hero-slide__next {
  min-height: 54px; display: inline-flex; align-items: center; gap: 14px; padding: 0 20px;
  border: 1px solid rgba(201,218,240,.55); border-radius: 16px; background: rgba(4,9,16,.5);
  color: #edf2f8; font-size: 14px; font-weight: 740; backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); transition: border-color .25s ease,background .25s ease,transform .25s ease;
}
.hero-slide__next:hover { transform: translateY(-2px); border-color: rgba(240,202,111,.78); background: rgba(15,20,29,.78); }
.hero-slide__next:focus-visible,.hero-slide__primary:focus-visible,.hero-slider button:focus-visible,.hero-slider__scroll-cue:focus-visible {
  outline: 2px solid #f5d77f; outline-offset: 4px;
}
.hero-slider__chrome {
  position: absolute; z-index: 8; left: 50%; bottom: max(34px,env(safe-area-inset-bottom));
  transform: translateX(-50%); display: flex; align-items: center; gap: 12px; padding: 8px;
  border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(3,7,13,.62);
  box-shadow: 0 15px 44px rgba(0,0,0,.38); backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}
.hero-slider__arrow,.hero-slider__pause {
  width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%; background: rgba(255,255,255,.045); color: #edf1f5; cursor: pointer;
  transition: border-color .2s ease,background .2s ease,transform .2s ease;
}
.hero-slider__arrow:hover,.hero-slider__pause:hover { border-color: rgba(240,202,111,.6); background: rgba(240,202,111,.08); transform: scale(1.04); }
.hero-slider__pagination { display: flex; gap: 5px; padding: 0 3px; }
.hero-slider__pagination button { width: 30px; height: 42px; padding: 0; border: 0; background: none; cursor: pointer; }
.hero-slider__pagination span {
  display: block; width: 7px; height: 7px; margin: auto; border-radius: 99px; background: rgba(226,233,242,.36);
  transition: width .3s ease,background .3s ease,box-shadow .3s ease;
}
.hero-slider__pagination button.is-active span { width: 23px; background: #f1ca6f; box-shadow: 0 0 18px rgba(241,202,111,.65); }
.hero-slider__scroll-cue {
  position: absolute; z-index: 7; right: 34px; bottom: 38px; display: flex; align-items: center; gap: 10px;
  color: #9fa8b4; font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase;
}
.hero-slider__scroll-cue>span { width: 28px; height: 1px; background: linear-gradient(90deg,transparent,#f0ca70); }
.scene-glow { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .48; }
.scene-glow--one { width: 54vw; height: 54vw; right: -5vw; top: -12vw; background: rgba(var(--slide-accent),.24); }
.scene-glow--two { width: 38vw; height: 38vw; right: 18vw; bottom: -20vw; background: rgba(222,164,59,.13); }
.social-orbit,.control-panel,.work-card,.message-node {
  position: absolute; border: 1px solid rgba(255,255,255,.18); background: rgba(10,18,31,.64);
  box-shadow: 0 28px 80px rgba(0,0,0,.38),inset 0 1px rgba(255,255,255,.08); backdrop-filter: blur(12px);
}
.social-orbit { right: 8%; min-width: 210px; padding: 18px 20px; border-radius: 22px; color: #dfe8f6; font-size: 13px; }
.social-orbit i { float: right; width: 8px; height: 8px; border-radius: 50%; background: #f0ca70; box-shadow: 0 0 18px #f0ca70; }
.social-orbit--one { top: 23%; transform: rotate(-5deg); }.social-orbit--two { top: 48%; right: 25%; transform: rotate(4deg); }.social-orbit--three { top: 68%; right: 7%; transform: rotate(-2deg); }
.scene-pulse { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #7bb8ff; box-shadow: 0 0 0 12px rgba(92,156,237,.08),0 0 24px #5e9eed; animation: scenePulse 3.8s ease-in-out infinite; }
.scene-pulse--a { top: 31%; right: 39%; }.scene-pulse--b { top: 63%; right: 44%; animation-delay: -1.4s; }.scene-pulse--c { top: 76%; right: 18%; animation-delay: -2.6s; }
.industry-grid { position: absolute; inset: 10% 0 0 42%; opacity: .4; background-image: linear-gradient(rgba(233,190,98,.14) 1px,transparent 1px),linear-gradient(90deg,rgba(233,190,98,.14) 1px,transparent 1px); background-size: 54px 54px; transform: perspective(620px) rotateX(64deg) rotateZ(-12deg) scale(1.4); }
.process-rail { position: absolute; right: 4%; width: 48%; height: 1px; background: linear-gradient(90deg,transparent,rgba(239,190,85,.7),transparent); }
.process-rail--one { top: 38%; transform: rotate(-9deg); }.process-rail--two { top: 64%; transform: rotate(7deg); }
.process-rail i { position: absolute; top: -5px; width: 10px; height: 10px; border-radius: 50%; background: #e8bb62; box-shadow: 0 0 20px #d89b35; animation: railSignal 6s linear infinite; }
.process-rail i:nth-child(2) { animation-delay: -2s; }.process-rail i:nth-child(3) { animation-delay: -4s; }
.control-panel { right: 10%; width: 270px; height: 150px; padding: 22px; border-radius: 22px; }
.control-panel--one { top: 20%; transform: rotate(3deg); }.control-panel--two { top: 57%; right: 25%; transform: rotate(-4deg); }
.control-panel span,.work-card span { color: #e6bd69; font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.control-panel b,.work-card b { display: block; height: 7px; margin-top: 18px; border-radius: 99px; background: rgba(255,255,255,.13); }
.control-panel b:last-child,.work-card b:last-of-type { width: 62%; background: rgba(var(--slide-accent),.4); }
.work-card { width: 280px; min-height: 170px; padding: 24px; border-radius: 24px; }
.work-card i { display: block; margin-top: 22px; color: #8ed6df; font-size: 11px; font-style: normal; }
.work-card--one { right: 9%; top: 18%; transform: rotate(5deg); }.work-card--two { right: 27%; top: 44%; transform: rotate(-4deg); }.work-card--three { right: 7%; top: 68%; transform: rotate(3deg); }
.service-flow { position: absolute; inset: 8% 2% 0 40%; width: 58%; height: 82%; overflow: visible; }
.service-flow path { fill: none; stroke: rgba(100,202,217,.52); stroke-width: 1.4; stroke-dasharray: 8 13; }.service-flow circle { fill: #b5eff7; filter: drop-shadow(0 0 12px #70d7e5); }
.command-ring { position: absolute; right: 16%; top: 50%; border: 1px solid rgba(112,159,255,.32); border-radius: 50%; transform: translateY(-50%); }
.command-ring--one { width: 31vw; height: 31vw; animation: spin 30s linear infinite; }.command-ring--two { width: 22vw; height: 22vw; border-style: dashed; animation: spinReverse 22s linear infinite; }
.command-core { position: absolute; right: calc(16% + 10.5vw); top: 50%; width: 10vw; height: 10vw; min-width: 110px; min-height: 110px; display: grid; place-items: center; transform: translate(50%,-50%); border: 1px solid rgba(255,216,123,.55); border-radius: 34%; color: #f2d07b; background: rgba(17,26,47,.82); box-shadow: 0 0 80px rgba(86,133,235,.27); font-size: 18px; font-weight: 900; letter-spacing: .16em; }
.command-core i { position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 28%; }
.message-node { width: 125px; padding: 15px; border-radius: 16px; color: #bfccea; font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.message-node i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #70a7ff; box-shadow: 0 0 14px #70a7ff; }
.message-node--one { right: 43%; top: 24%; }.message-node--two { right: 5%; top: 34%; }.message-node--three { right: 8%; top: 71%; }
.light-route { position: absolute; right: 9%; width: 42%; height: 1px; background: linear-gradient(90deg,transparent,rgba(110,163,255,.75),transparent); transform-origin: right; }
.light-route--one { top: 38%; transform: rotate(16deg); }.light-route--two { top: 67%; transform: rotate(-13deg); }
@keyframes scenePulse { 50% { opacity: .35; transform: scale(.7); } }
@keyframes railSignal { from { left: 0; opacity: 0; } 15%,85% { opacity: 1; } to { left: 100%; opacity: 0; } }

@media (max-width: 760px) {
  .hero-slide { --scene-x: 72%; align-items: end; }
  .hero-slide__depth { inset: -4% -24% 28% -10%; opacity: .66; filter: blur(6px) saturate(.78); }
  .hero-slide.is-active .hero-slide__depth { transform: scale(1.1) translate3d(-2%,0,0); filter: blur(9px) saturate(.88); }
  .hero-slide__shade { background: linear-gradient(180deg,rgba(2,5,10,.4),rgba(2,5,10,.62) 33%,rgba(2,5,10,.96) 67%,#02050a); }
  .hero-slide__content { width: calc(100% - 34px); padding: 112px 0 126px; }
  .hero-slide__eyebrow { margin-bottom: 14px; font-size: 9px; letter-spacing: .15em; }
  .hero-slide h1,.hero-slide h2 { font-size: clamp(42px,12vw,58px); line-height: 1; }
  .hero-slide__lead { margin-top: 18px; font-size: 18px; line-height: 1.38; }
  .hero-slide__value { margin-top: 12px; font-size: 14px; line-height: 1.52; }
  .hero-slide__assurance { font-size: 10px; }
  .hero-slide__actions { margin-top: 24px; gap: 10px; }
  .hero-slide__primary { min-width: 0; flex: 1; padding: 0 14px; }
  .hero-slide__next { min-width: 110px; padding: 0 13px; }
  .hero-slider__chrome { bottom: max(18px,env(safe-area-inset-bottom)); gap: 4px; padding: 5px; }
  .hero-slider__arrow,.hero-slider__pause { width: 44px; height: 44px; }
  .hero-slider__pagination button { width: 44px; height: 44px; }
  .hero-slider__pagination button.is-active span { width: 18px; }
  .hero-slider__scroll-cue { display: none; }
  .social-orbit { right: 4%; min-width: 160px; padding: 13px; font-size: 10px; }
  .control-panel,.work-card { width: 210px; height: 120px; min-height: 0; padding: 16px; }
  .command-ring--one { width: 64vw; height: 64vw; }.command-ring--two { width: 46vw; height: 46vw; }
  .command-core { right: calc(16% + 22vw); width: 22vw; height: 22vw; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider__track { scroll-behavior: auto; }
  .hero-slide__depth,.hero-slide.is-active .hero-slide__depth { transform: scale(1.08); filter: blur(7px) saturate(.82); transition: none; }
  .hero-slide__content,.hero-slide.is-active .hero-slide__content { opacity: 1; transform: none; transition: none; }
  .hero-slider__pause { display: none; }
  .service-flow circle { display: none; }
}

/* ── Visual direction v2: cinematic terrace reference ──────────────────── */
.hero-slide--creator::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -3%;
  background: url("assets/hero-luxury-terrace-v2.webp") center center / cover no-repeat;
  transform: scale(1.035);
  filter: blur(.3px) saturate(.94) brightness(.86);
  transition: transform 9s cubic-bezier(.2,.75,.2,1), filter 1.8s ease;
  will-change: transform;
}
.hero-slide--creator.is-active::before { transform: scale(1.09); filter: blur(1.15px) saturate(.98) brightness(.9); }
.hero-slide--creator .hero-slide__depth { opacity: .2; filter: blur(3px); }
.hero-slide--creator.is-active .hero-slide__depth { opacity: .32; filter: blur(5px); }
.hero-slide--creator .scene-glow { opacity: .18; }
.hero-slide--creator .hero-slide__shade {
  background:
    linear-gradient(90deg,rgba(1,5,12,.98) 0%,rgba(2,8,18,.88) 28%,rgba(2,8,18,.45) 52%,rgba(2,8,18,.08) 78%),
    linear-gradient(180deg,rgba(1,5,12,.46) 0%,transparent 36%,rgba(1,5,12,.23) 72%,rgba(1,5,12,.67) 100%);
}
.hero-slide--creator .hero-slide__value { color: #d5d9df; }

@media (min-width: 761px) {
  .site-header {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    min-height: 86px;
    padding: 0 clamp(38px,4.6vw,80px);
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    border-radius: 0;
    background: linear-gradient(90deg,rgba(2,7,16,.92),rgba(2,7,16,.72) 65%,rgba(8,7,7,.84));
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
  }
  .brand { gap: 13px; font-size: 19px; letter-spacing: .015em; }
  .brand-symbol { width: 42px; height: 42px; stroke: #efc66c; stroke-width: 1.9; filter: drop-shadow(0 0 13px rgba(239,198,108,.35)); }
  .desktop-nav { gap: clamp(28px,3.4vw,56px); }
  .desktop-nav a { color: #e7e8ec; font-size: 15px; }
  .header-actions .button-small {
    min-height: 52px;
    padding: 0 23px;
    border-color: rgba(242,189,76,.88);
    border-radius: 17px;
    color: #f6d78f;
    background: rgba(10,9,7,.36);
    box-shadow: 0 0 0 1px rgba(242,189,76,.12),0 0 23px rgba(242,159,48,.17),inset 0 0 20px rgba(242,189,76,.04);
  }
  .header-actions .button-small:hover { border-color: #ffe2a0; box-shadow: 0 0 28px rgba(242,159,48,.28); }
  .hero-slide__content { width: min(1400px,calc(100% - 160px)); padding-top: 154px; }
  .hero-slide h1,.hero-slide h2 { max-width: 860px; font-size: clamp(58px,5.35vw,86px); line-height: 1.01; }
  .hero-slide__lead { max-width: 720px; font-size: clamp(21px,1.65vw,28px); }
  .hero-slide__value { max-width: 650px; }
  .hero-slider__chrome {
    inset: 86px 0 0;
    left: 0;
    bottom: 0;
    transform: none;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: none;
  }
  .hero-slider__arrow {
    position: absolute;
    top: 50%;
    width: 66px;
    height: 66px;
    transform: translateY(-50%);
    border-color: rgba(221,231,245,.72);
    background: rgba(4,9,17,.46);
    box-shadow: 0 0 26px rgba(104,164,255,.12),inset 0 0 18px rgba(255,255,255,.025);
    font-size: 22px;
    pointer-events: auto;
  }
  .hero-slider__arrow:hover { transform: translateY(-50%) scale(1.04); }
  .hero-slider__arrow--prev { left: 30px; }
  .hero-slider__arrow--next { right: 30px; }
  .hero-slider__pagination {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    gap: 1px;
    pointer-events: auto;
  }
  .hero-slider__pagination button { width: 34px; }
  .hero-slider__pagination span { width: 9px; height: 9px; background: rgba(220,226,237,.48); }
  .hero-slider__pagination button.is-active span { width: 9px; background: #f3cc73; box-shadow: 0 0 22px #e6ad43,0 0 0 7px rgba(243,204,115,.06); }
  .hero-slider__pause {
    position: absolute;
    left: calc(50% + 88px);
    bottom: 50px;
    width: 34px;
    height: 34px;
    border-color: rgba(255,255,255,.12);
    opacity: .62;
    pointer-events: auto;
  }
  .hero-slider__scroll-cue {
    right: auto;
    left: 50%;
    bottom: 16px;
    width: 26px;
    height: 16px;
    transform: translateX(-50%);
    font-size: 0;
  }
  .hero-slider__scroll-cue>span {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(237,242,249,.9);
    border-bottom: 2px solid rgba(237,242,249,.9);
    background: none;
    transform: rotate(45deg) translate(-4px,-4px);
  }
}

@media (max-width: 760px) {
  .hero-slide--creator::before { inset: -2% -42% 20% -12%; background-position: 60% center; transform: scale(1.02); }
  .hero-slide--creator.is-active::before { transform: scale(1.075); filter: blur(1px) saturate(.96) brightness(.82); }
  .hero-slide--creator .hero-slide__shade {
    background: linear-gradient(180deg,rgba(2,7,15,.16),rgba(2,7,15,.45) 38%,rgba(2,7,15,.93) 62%,#02050a 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide--creator::before,.hero-slide--creator.is-active::before { transform: scale(1.04); filter: blur(.8px) saturate(.94) brightness(.86); transition: none; }
}
