:root {
  color-scheme: dark;
  --bg: #080a10;
  --surface: #10131d;
  --surface-2: #161a26;
  --text: #f7f7fb;
  --muted: #9ba2b5;
  --line: rgba(255, 255, 255, .09);
  --purple: #8d6cff;
  --purple-bright: #ad97ff;
  --mint: #64e9b0;
  --orange: #ff7657;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 28px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--purple); color: white; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: white;
  color: #090b12;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.noise {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(126, 91, 255, .08), transparent 68%);
  transform: translate(-50%, -50%);
  left: var(--mouse-x, -500px);
  top: var(--mouse-y, -500px);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(8, 10, 16, .72);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 750; letter-spacing: -.025em; }
.brand img { border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.brand i { color: var(--purple-bright); font-style: normal; }

.nav-links { display: flex; gap: 34px; margin-left: auto; }
.nav-links a { position: relative; color: #b9bfce; font-size: 14px; font-weight: 600; transition: color .25s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; border-radius: 2px; background: var(--mint); transition: right .3s var(--ease); }
.nav-links a:hover { color: white; }
.nav-links a:hover::after { right: 0; }

.language-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 39px);
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}
.language-button { position: relative; z-index: 2; height: 31px; border: 0; border-radius: 999px; background: transparent; color: #8e95a7; cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .08em; transition: color .25s; }
.language-button.is-active { color: #0b0d13; }
.language-indicator { position: absolute; z-index: 1; top: 4px; left: 4px; width: 39px; height: 31px; border-radius: 999px; background: var(--mint); box-shadow: 0 0 22px rgba(100,233,176,.28); transition: transform .35s var(--ease); }
.language-switch:has([data-language="nl"].is-active) .language-indicator { transform: translateX(39px); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 174px 0 54px;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 76px 0 0;
  opacity: .28;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 66px 66px;
}

.aurora { position: absolute; z-index: -2; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.aurora-one { width: 840px; height: 720px; right: -280px; top: -150px; background: radial-gradient(circle at 45% 45%, rgba(133,89,255,.28), rgba(101,63,235,.08) 43%, transparent 70%); animation: breathe 8s ease-in-out infinite alternate; }
.aurora-two { width: 600px; height: 480px; left: -310px; top: 390px; background: radial-gradient(circle, rgba(64,222,164,.12), transparent 68%); animation: breathe 10s ease-in-out 1.4s infinite alternate-reverse; }

@keyframes breathe { to { transform: translate3d(36px, 26px, 0) scale(1.08); opacity: .72; } }

.campaign-showcase {
  position: relative;
  z-index: 2;
  padding: 34px 0 96px;
  isolation: isolate;
}

.campaign-showcase::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(88vw, 1180px);
  height: 440px;
  left: 50%;
  top: 46%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(126, 91, 255, .22), rgba(100, 233, 176, .08) 38%, transparent 72%);
  filter: blur(54px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.campaign-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 1;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(171, 149, 255, .28);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(173,151,255,.22), rgba(255,255,255,.035) 42%, rgba(100,233,176,.14));
  box-shadow: 0 48px 120px rgba(0,0,0,.54), 0 0 0 1px rgba(255,255,255,.035) inset;
  transform: perspective(1400px) rotateX(1.3deg);
  transform-origin: center bottom;
  transition: transform .65s var(--ease), border-color .45s ease, box-shadow .65s var(--ease);
}

.campaign-frame:hover {
  border-color: rgba(173, 151, 255, .55);
  box-shadow: 0 58px 145px rgba(0,0,0,.62), 0 0 75px rgba(126,91,255,.18), 0 0 0 1px rgba(255,255,255,.06) inset;
  transform: perspective(1400px) rotateX(0) translateY(-7px) scale(1.008);
}

.campaign-frame > img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.025);
}

.campaign-glow {
  position: absolute;
  z-index: 2;
  inset: 8px;
  border-radius: 22px;
  box-shadow: inset 0 0 80px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.12);
  pointer-events: none;
}

.campaign-cta {
  position: absolute;
  z-index: 5;
  right: 30px;
  top: 27px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(11, 13, 21, .68);
  color: white;
  box-shadow: 0 14px 38px rgba(0,0,0,.38);
  font-size: 11px;
  font-weight: 750;
  backdrop-filter: blur(18px);
  transition: background .3s ease, color .3s ease, transform .35s var(--ease);
}

.campaign-cta svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .35s var(--ease);
}

.campaign-frame:hover .campaign-cta { background: var(--mint); color: #07120e; transform: translateX(-3px); }
.campaign-frame:hover .campaign-cta svg { transform: translateX(4px); }

.campaign-sheen {
  position: absolute;
  z-index: 3;
  inset: 8px;
  overflow: hidden;
  border-radius: 22px;
  pointer-events: none;
}

.campaign-sheen::after {
  content: "";
  position: absolute;
  width: 28%;
  height: 180%;
  top: -40%;
  left: -45%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.11), transparent);
  transform: rotate(14deg);
  transition: left 1s var(--ease);
}

.campaign-frame:hover .campaign-sheen::after { left: 118%; }

.hero-layout { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 64px; }
.hero-copy { position: relative; z-index: 2; }

.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; color: var(--mint); font-size: 11px; font-weight: 800; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.eyebrow > span:first-child { width: 24px; height: 1px; background: currentColor; box-shadow: 0 0 9px currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-weight: 780; line-height: .98; letter-spacing: -.055em; }
h1 { max-width: 730px; margin-bottom: 28px; font-size: clamp(56px, 6.1vw, 90px); }
h2 { margin-bottom: 26px; font-size: clamp(45px, 5.1vw, 70px); }
h1 em, h2 em { color: transparent; font-style: normal; background: linear-gradient(105deg, #b7a3ff 5%, #7955fc 50%, #60e7b0 115%); background-clip: text; -webkit-background-clip: text; }

.hero-lead { max-width: 590px; margin-bottom: 34px; color: #b7bdcc; font-size: clamp(18px, 1.8vw, 21px); line-height: 1.65; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { position: relative; display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 12px; padding: 0 22px; overflow: hidden; border: 1px solid transparent; border-radius: 16px; font-size: 14px; font-weight: 750; transition: transform .3s var(--ease), border-color .3s, background .3s, box-shadow .3s; }
.button svg, .text-link svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { background: linear-gradient(135deg, #9c83ff, #7652f3); color: white; box-shadow: 0 14px 42px rgba(110,76,234,.28), inset 0 1px rgba(255,255,255,.25); }
.button-primary::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.24) 48%, transparent 70%); transform: translateX(-130%); transition: transform .7s var(--ease); }
.button-primary:hover::before { transform: translateX(130%); }
.button-primary:hover { box-shadow: 0 18px 52px rgba(110,76,234,.42), inset 0 1px rgba(255,255,255,.3); transform: translateY(-2px); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.035); color: #d8dbe5; }
.button-ghost:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.07); transform: translateY(-2px); }

.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 27px; color: #858da1; font-size: 12px; font-weight: 600; }
.hero-meta > span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 15px; fill: none; stroke: var(--mint); stroke-width: 2; }

.hero-visual { position: relative; perspective: 1400px; }
.app-window { position: relative; z-index: 2; margin: 0; transform: rotateY(-8deg) rotateX(2deg) rotateZ(1deg); transform-style: preserve-3d; transition: transform .7s var(--ease); }
.hero-visual:hover .app-window { transform: rotateY(-3deg) rotateX(1deg) rotateZ(0deg) translateY(-5px); }
.app-window::before { content: ""; position: absolute; z-index: -1; inset: 6% 3% -5%; border-radius: 42px; background: #000; filter: blur(36px); opacity: .7; transform: translateZ(-20px); }
.app-window::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 22px; pointer-events: none; box-shadow: inset 0 1px rgba(255,255,255,.2); }
.app-window img { width: 100%; border-radius: 22px; box-shadow: 0 45px 100px rgba(0,0,0,.55); }
.window-glow { position: absolute; z-index: -1; inset: -12%; border-radius: 40%; background: radial-gradient(circle, rgba(126,91,255,.23), transparent 65%); filter: blur(18px); }

.visual-orbit { position: absolute; z-index: -1; border: 1px solid rgba(153,129,255,.14); border-radius: 50%; transform: rotate(-22deg); }
.orbit-one { width: 670px; height: 340px; top: 18%; left: -6%; }
.orbit-two { width: 540px; height: 540px; top: -11%; left: 3%; border-color: rgba(100,233,176,.09); }

.floating-pill { position: absolute; z-index: 5; display: flex; align-items: center; gap: 7px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; background: rgba(18,21,32,.85); box-shadow: 0 18px 50px rgba(0,0,0,.4); backdrop-filter: blur(14px); color: #dce0ea; font-size: 11px; font-weight: 700; letter-spacing: .02em; animation: float 5s ease-in-out infinite; }
.floating-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); }
.floating-pill kbd { padding: 3px 6px; border: 1px solid rgba(255,255,255,.14); border-radius: 5px; background: rgba(255,255,255,.07); color: white; font-family: inherit; font-size: 8px; }
.floating-pill b { color: #686f82; }
.pill-top { top: -17px; right: 35px; }
.pill-bottom { bottom: 28px; left: -36px; animation-delay: -2.2s; }
@keyframes float { 50% { transform: translateY(-9px); } }

.platform-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.platform-strip > div { display: flex; align-items: center; gap: 16px; min-height: 84px; padding: 0 28px; border-right: 1px solid var(--line); }
.platform-strip > div:first-child { padding-left: 0; }
.platform-strip > div:last-child { border-right: 0; }
.platform-strip span { color: #51586b; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.platform-strip strong { font-size: 13px; letter-spacing: .04em; }

.section { position: relative; padding: 142px 0; }
.section-heading { display: grid; grid-template-columns: 1fr .65fr; align-items: end; margin-bottom: 64px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 460px; margin: 0 0 8px auto; color: var(--muted); font-size: 17px; }

.features { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018) 50%, transparent); }
.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.bento-card { position: relative; min-height: 410px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); box-shadow: inset 0 1px rgba(255,255,255,.04); transition: transform .45s var(--ease), border-color .45s, background .45s; }
.bento-card:hover { transform: translateY(-6px); border-color: rgba(154,130,255,.26); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.022)); }
.bento-large { min-height: 500px; grid-row: span 2; }
.bento-wide { min-height: 335px; grid-column: 1 / -1; display: grid; grid-template-columns: .75fr 1.25fr; gap: 35px; align-items: center; }
.card-number { position: absolute; top: 36px; right: 36px; color: #5e6578; font-family: ui-monospace, monospace; font-size: 11px; }
.card-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 66px; border: 1px solid rgba(154,130,255,.28); border-radius: 14px; background: rgba(133,102,255,.11); color: #aa92ff; }
.card-icon.mint { border-color: rgba(100,233,176,.25); background: rgba(100,233,176,.09); color: var(--mint); }
.card-icon.orange { border-color: rgba(255,118,87,.25); background: rgba(255,118,87,.09); color: var(--orange); }
.card-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.bento-card h3 { margin-bottom: 12px; font-size: clamp(23px, 2.3vw, 31px); line-height: 1.15; letter-spacing: -.035em; }
.bento-card p { max-width: 540px; margin-bottom: 0; color: var(--muted); }

.button-map-demo { position: absolute; right: -22px; bottom: -12px; left: 34px; display: flex; align-items: center; gap: 28px; padding: 28px; border: 1px solid var(--line); border-radius: 22px 0 0 0; background: rgba(7,9,14,.62); }
.mouse-shape { position: relative; flex: 0 0 auto; width: 70px; height: 96px; border: 1px solid rgba(255,255,255,.2); border-radius: 35px 35px 30px 30px; background: #191d29; box-shadow: inset 0 0 22px rgba(0,0,0,.5); }
.mouse-shape::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 48%; width: 1px; background: rgba(255,255,255,.16); }
.mouse-shape i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 12px var(--purple); }
.mouse-shape i:nth-child(1) { left: 14px; top: 18px; }
.mouse-shape i:nth-child(2) { right: 14px; top: 18px; background: var(--mint); box-shadow: 0 0 12px var(--mint); }
.mouse-shape i:nth-child(3) { right: -4px; top: 54px; background: var(--orange); box-shadow: 0 0 12px var(--orange); }
.map-lines { min-width: 0; display: grid; gap: 7px; color: #8d94a7; font-family: ui-monospace, monospace; font-size: 9px; letter-spacing: .035em; }
.map-lines span { white-space: nowrap; }
.map-lines b { margin: 0 5px; color: var(--mint); }

.device-stack { position: absolute; right: 30px; bottom: 30px; left: 30px; display: grid; gap: 8px; }
.device-stack span { display: flex; align-items: center; justify-content: space-between; padding: 12px 15px; border: 1px solid var(--line); border-radius: 11px; background: rgba(0,0,0,.15); color: #7e8699; font-family: ui-monospace, monospace; font-size: 9px; letter-spacing: .08em; }
.device-stack i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 10px var(--mint); }

.tray-demo { position: absolute; right: 30px; bottom: 30px; display: flex; align-items: center; gap: 14px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 12px; background: rgba(0,0,0,.2); color: #596074; font-size: 7px; }
.tray-demo img { width: 27px; border-radius: 8px; box-shadow: 0 0 24px rgba(133,102,255,.25); }
.tray-demo span:last-child { font-size: 16px; }

.bento-wide .card-icon { margin-bottom: 42px; }
.preset-cloud { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; perspective: 800px; }
.preset-cloud span { display: flex; align-items: center; gap: 18px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; background: rgba(4,6,10,.3); color: #cbd0dc; font-size: 12px; transform: rotate(-1deg); transition: transform .3s var(--ease), border-color .3s; }
.preset-cloud span:nth-child(even) { transform: rotate(1.5deg); }
.preset-cloud span:hover { z-index: 2; transform: rotate(0) translateY(-3px); border-color: rgba(100,233,176,.3); }
kbd { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.preset-cloud kbd { color: var(--mint); font-size: 9px; }

.workflow { overflow: hidden; }
.workflow::before { content: ""; position: absolute; z-index: -1; width: 700px; height: 700px; left: -380px; top: 0; border-radius: 50%; background: radial-gradient(circle, rgba(126,91,255,.12), transparent 68%); }
.workflow-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.workflow-copy { position: sticky; top: 150px; }
.workflow-copy > p { max-width: 480px; color: var(--muted); font-size: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; color: var(--mint); font-size: 13px; font-weight: 750; }
.text-link svg { transition: transform .3s var(--ease); }
.text-link:hover svg { transform: translateX(5px); }

.steps { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { display: grid; grid-template-columns: 74px 1fr; gap: 28px; min-height: 205px; padding: 35px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.step-number { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--purple-bright); font-family: ui-monospace, monospace; font-size: 11px; transition: background .3s, color .3s, transform .3s; }
.steps li:hover .step-number { background: var(--purple); color: white; transform: rotate(8deg); }
.steps h3 { margin: 4px 0 10px; font-size: 26px; letter-spacing: -.035em; }
.steps p { max-width: 480px; color: var(--muted); }

.shortcuts { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); transform: rotate(-1deg) scale(1.02); }
.marquee { padding: 21px 0; }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 30px; animation: marquee 34s linear infinite; }
.marquee-track span { display: flex; align-items: center; gap: 11px; color: #b5bbca; font-size: 13px; font-weight: 650; white-space: nowrap; }
.marquee-track kbd { padding: 6px 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 7px; background: rgba(255,255,255,.04); color: white; font-size: 9px; }
.marquee-track i { color: var(--purple); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.download { padding-bottom: 110px; }
.download-card { position: relative; min-height: 535px; display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: center; padding: 72px; overflow: hidden; border: 1px solid rgba(154,130,255,.2); border-radius: 38px; background: linear-gradient(135deg, #171329, #0f121b 55%, #101c1a); box-shadow: inset 0 1px rgba(255,255,255,.08), 0 50px 120px rgba(0,0,0,.35); }
.download-card::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.035); border-radius: 28px; pointer-events: none; }
.download-aurora { position: absolute; width: 620px; height: 620px; left: -250px; top: -280px; border-radius: 50%; background: radial-gradient(circle, rgba(138,99,255,.34), transparent 66%); }
.download-logo { position: absolute; right: 43%; top: 40px; width: 86px; transform: rotate(9deg); filter: drop-shadow(0 24px 35px rgba(0,0,0,.4)); animation: float 5s ease-in-out infinite; }
.download-copy, .download-actions { position: relative; z-index: 2; }
.download-copy h2 { font-size: clamp(48px, 5.6vw, 76px); }
.download-copy p { max-width: 570px; margin-bottom: 0; color: #aab1c2; font-size: 17px; }
.download-actions { display: flex; flex-direction: column; align-items: stretch; gap: 17px; }
.button-large { min-height: 66px; font-size: 15px; }
.download-notes { display: flex; justify-content: space-between; color: #747d91; font-size: 10px; font-weight: 650; }
.terminal-command { position: relative; display: flex; align-items: center; gap: 12px; width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; background: rgba(0,0,0,.24); color: #858da0; cursor: pointer; text-align: left; transition: border-color .25s, color .25s; }
.terminal-command:hover { border-color: rgba(100,233,176,.24); color: #c9cfda; }
.terminal-command code { flex: 1; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.terminal-command svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.copy-feedback { position: absolute; right: 12px; padding: 3px 7px; border-radius: 6px; background: var(--mint); color: #0a1912; font-size: 9px; font-weight: 800; opacity: 0; transform: translateY(6px); transition: opacity .2s, transform .2s; }
.terminal-command.is-copied svg { opacity: 0; }
.terminal-command.is-copied .copy-feedback { opacity: 1; transform: translateY(0); }

.site-footer { border-top: 1px solid var(--line); }
.footer-layout { min-height: 100px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; color: #676f82; font-size: 11px; }
.footer-layout .brand { color: #dce0e8; font-size: 13px; }
.footer-layout p { margin: 0; text-align: center; }
.footer-layout p:last-child { text-align: right; }
.footer-layout p a { color: var(--mint); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-late { transition-delay: .15s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 760px); }
  .nav-links { display: none; }
  .hero { padding-top: 145px; }
  .hero-layout { grid-template-columns: 1fr; gap: 80px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .hero-meta { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { width: min(90%, 650px); margin-inline: auto; }
  .platform-strip { margin-top: 100px; }
  .platform-strip > div { padding-inline: 16px; }
  .campaign-showcase { padding: 18px 0 78px; }
  .campaign-frame { border-radius: 24px; }
  .campaign-frame > img, .campaign-glow, .campaign-sheen { border-radius: 17px; }
  .campaign-cta { top: 20px; right: 20px; }
  .section-heading { display: block; }
  .section-heading > p { margin: 26px 0 0; }
  .bento-card { min-height: 425px; }
  .bento-large { min-height: 530px; }
  .bento-wide { grid-template-columns: 1fr; }
  .workflow-layout { grid-template-columns: 1fr; gap: 70px; }
  .workflow-copy { position: static; }
  .download-card { grid-template-columns: 1fr; padding: 60px 48px; }
  .download-logo { right: 50px; top: 35px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); --radius: 22px; }
  .nav { height: 68px; }
  .brand { font-size: 13px; }
  .brand img { width: 38px; height: 38px; }
  .site-header .language-switch { grid-template-columns: repeat(2, 35px); }
  .site-header .language-indicator { width: 35px; }
  .language-switch:has([data-language="nl"].is-active) .language-indicator { transform: translateX(35px); }
  .hero { padding: 128px 0 38px; }
  h1 { font-size: clamp(48px, 14.5vw, 68px); }
  h2 { font-size: clamp(40px, 12vw, 55px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-meta { gap: 11px 18px; }
  .hero-visual { width: 100%; }
  .app-window { transform: rotateY(-4deg) rotateX(2deg) rotateZ(1deg); }
  .floating-pill { display: none; }
  .platform-strip { grid-template-columns: repeat(2, 1fr); margin-top: 70px; }
  .platform-strip > div { min-height: 66px; padding: 0 12px; }
  .platform-strip > div:nth-child(2) { border-right: 0; }
  .platform-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .campaign-showcase { padding: 8px 0 58px; }
  .campaign-frame { padding: 4px; border-radius: 16px; transform: none; }
  .campaign-frame:hover { transform: translateY(-3px); }
  .campaign-frame > img, .campaign-glow, .campaign-sheen { border-radius: 11px; }
  .campaign-glow, .campaign-sheen { inset: 4px; }
  .campaign-cta { top: 11px; right: 11px; min-height: 31px; padding: 0 11px; font-size: 8px; }
  .campaign-cta svg { width: 12px; }
  .section { padding: 100px 0; }
  .section-heading { margin-bottom: 40px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: auto; grid-row: auto; }
  .bento-card, .bento-large { min-height: 430px; padding: 28px; }
  .bento-wide { display: block; min-height: auto; }
  .bento-wide .card-copy { margin-bottom: 42px; }
  .preset-cloud { justify-content: flex-start; }
  .preset-cloud span { width: 100%; justify-content: space-between; }
  .button-map-demo { left: 28px; padding: 22px; gap: 17px; }
  .mouse-shape { width: 56px; height: 79px; }
  .map-lines { font-size: 7px; }
  .steps li { grid-template-columns: 58px 1fr; gap: 18px; min-height: 190px; }
  .step-number { width: 48px; height: 48px; }
  .download-card { min-height: 600px; gap: 48px; padding: 48px 25px 30px; border-radius: 27px; }
  .download-logo { position: relative; top: auto; right: auto; width: 70px; margin-bottom: 30px; }
  .download-copy h2 { font-size: clamp(42px, 13vw, 58px); }
  .download-notes { flex-direction: column; gap: 3px; }
  .footer-layout { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; text-align: center; }
  .footer-layout .brand { justify-content: center; }
  .footer-layout p:last-child { text-align: center; }
}

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