@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --navy-950: #030823;
  --navy-900: #07113b;
  --navy-800: #0c1955;
  --navy-700: #14266f;
  --cyan: #20d7d1;
  --cyan-dark: #03aaa9;
  --cyan-pale: #a9fffb;
  --orange: #ff9f0a;
  --orange-hot: #ff6633;
  --cream: #fff2cf;
  --ink: #091139;
  --white: #fffdf6;
  --muted: #aeb9dd;
  --line: rgba(201, 216, 255, .18);
  --shadow: #020718;
  --radius-xl: 44px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--navy-950);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--navy-900);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 20px;
  top: -80px;
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--cream);
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus { top: 18px; }

.ambient { position: absolute; inset: 0 0 auto; height: 1050px; overflow: hidden; pointer-events: none; }
.ambient__orb { position: absolute; border-radius: 999px; filter: blur(80px); opacity: .18; }
.ambient__orb--cyan { width: 500px; height: 500px; left: -280px; top: 160px; background: var(--cyan); }
.ambient__orb--orange { width: 480px; height: 480px; right: -250px; top: 60px; background: var(--orange); }
.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: linear-gradient(rgba(124, 145, 230, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 145, 230, .08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 90%);
}

.site-header {
  position: relative;
  z-index: 50;
  width: min(calc(100% - 40px), 1240px);
  height: 84px;
  margin: 18px auto 0;
  padding: 0 16px 0 18px;
  display: flex;
  align-items: center;
  gap: 34px;
  border: 1px solid rgba(171, 196, 255, .18);
  border-radius: 25px;
  background: rgba(5, 12, 47, .72);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .22), inset 0 1px rgba(255, 255, 255, .05);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  position: sticky;
  top: 12px;
  background: rgba(5, 12, 47, .9);
  box-shadow: 0 18px 70px rgba(1, 5, 24, .5), inset 0 1px rgba(255, 255, 255, .05);
}

.brand { display: flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 52px; height: 52px; border-radius: 14px; filter: drop-shadow(0 7px 10px rgba(0, 0, 0, .28)); }
.brand__copy { display: grid; gap: 1px; }
.brand__copy strong { font: 700 15px/1 "Space Grotesk", sans-serif; letter-spacing: .04em; }
.brand__copy small { color: var(--cyan); font: 800 9px/1.2 "Space Grotesk", sans-serif; letter-spacing: .23em; }

.site-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-nav a, .footer-links a { position: relative; color: #cad4f2; text-decoration: none; font-size: 14px; font-weight: 600; }
.site-nav a::after, .footer-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--cyan); transition: right .25s ease; }
.site-nav a:hover, .site-nav a:focus-visible, .footer-links a:hover { color: var(--white); }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .footer-links a:hover::after { right: 0; }

.menu-toggle { display: none; }

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  color: var(--white);
  text-decoration: none;
  font: 800 14px/1 "Space Grotesk", sans-serif;
  letter-spacing: .025em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-3px); }
.button:focus-visible { outline: 3px solid var(--cyan-pale); outline-offset: 3px; }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.button--orange { color: #251305; background: linear-gradient(145deg, #ffc238, var(--orange)); border: 2px solid #ffe397; box-shadow: 0 7px 0 #b94e09, 0 16px 30px rgba(255, 132, 0, .22); }
.button--orange:hover { box-shadow: 0 5px 0 #b94e09, 0 20px 35px rgba(255, 132, 0, .3); }
.button--ghost { border: 1px solid rgba(190, 211, 255, .25); background: rgba(255, 255, 255, .045); }
.button--ghost:hover { background: rgba(255, 255, 255, .09); }
.button--compact { min-height: 50px; padding: 0 18px; font-size: 13px; }
.button--compact span { opacity: .7; }
.button--ghost-dark { border: 1px solid rgba(12, 25, 85, .2); color: var(--ink); background: rgba(12, 25, 85, .05); }
.button--cream { color: var(--ink); background: var(--cream); box-shadow: 0 7px 0 #d6bc76, 0 18px 35px rgba(0, 0, 0, .18); }

.hero {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  min-height: 710px;
  margin: 0 auto;
  padding: 95px 0 80px;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  align-items: center;
  gap: 65px;
}

.eyebrow, .section-kicker { color: var(--cyan); font: 800 11px/1 "Space Grotesk", sans-serif; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid rgba(36, 216, 210, .23); border-radius: 999px; background: rgba(18, 198, 195, .07); }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(32, 215, 209, .12), 0 0 15px var(--cyan); }

.hero h1, .section-heading h2, .integration-panel h2, .release-card h2, .community h2 {
  margin: 25px 0 0;
  font: 700 clamp(58px, 6.3vw, 92px)/.93 "Space Grotesk", sans-serif;
  letter-spacing: -.065em;
}

.hero h1 span { color: transparent; background: linear-gradient(95deg, var(--cyan-pale), var(--cyan) 40%, #ffc332 75%, var(--orange)); background-clip: text; -webkit-background-clip: text; }
.hero__lead { max-width: 590px; margin: 29px 0 0; color: #c3cce9; font-size: 18px; line-height: 1.67; }
.hero__actions { margin-top: 35px; display: flex; flex-wrap: wrap; gap: 15px; }
.hero__meta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 25px; color: #9fadd5; font: 700 11px/1 "Space Grotesk", sans-serif; letter-spacing: .07em; text-transform: uppercase; }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.meta-dot { width: 7px; height: 7px; border-radius: 2px; transform: rotate(45deg); }
.meta-dot--cyan { background: var(--cyan); }
.meta-dot--cream { background: var(--cream); }
.meta-dot--orange { background: var(--orange); }

.hero__visual { position: relative; perspective: 1200px; }
.official-icon-stage { position: relative; width: min(100%, 560px); margin: 0 auto; padding: 24px; }
.official-icon-stage::before { content: ""; position: absolute; inset: 9% 4% 4% 10%; z-index: -1; border-radius: 45%; background: radial-gradient(circle, rgba(32, 215, 209, .26), rgba(255, 159, 10, .12) 48%, transparent 72%); filter: blur(34px); }
.official-icon-button { width: 100%; padding: 0; display: block; border: 0; border-radius: 28%; background: transparent; cursor: pointer; filter: drop-shadow(0 35px 32px rgba(0, 0, 0, .42)); transform: rotate(1.5deg); transition: transform .22s cubic-bezier(.2,.8,.2,1), filter .22s ease; }
.official-icon-button img { width: 100%; height: auto; }
.official-icon-button:hover { transform: rotate(-1deg) translateY(-8px) scale(1.015); filter: drop-shadow(0 42px 36px rgba(0, 0, 0, .48)); }
.official-icon-button:focus-visible { outline: 4px solid var(--cyan-pale); outline-offset: 8px; }
.official-icon-button.is-active { animation: official-icon-press .55s cubic-bezier(.2,.8,.2,1); }
.official-icon-badge { position: absolute; z-index: 3; left: 2px; top: 15%; padding: 10px 13px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(179, 255, 248, .34); border-radius: 999px; color: #dffefa; background: rgba(5, 12, 47, .84); box-shadow: 0 9px 25px rgba(0, 0, 0, .24); backdrop-filter: blur(12px); font: 800 9px/1 "Space Grotesk", sans-serif; letter-spacing: .15em; }
.official-icon-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 13px var(--orange); }
.official-icon-hint { position: absolute; z-index: 3; right: 3%; bottom: 11%; margin: 0; padding: 9px 12px; border: 1px solid rgba(179, 255, 248, .22); border-radius: 12px; color: #aebce7; background: rgba(5, 12, 47, .78); backdrop-filter: blur(10px); font: 700 10px/1 "Space Grotesk", sans-serif; }
.official-icon-hint kbd { padding: 2px 5px; border: 1px solid rgba(255,255,255,.24); border-radius: 5px; color: var(--cream); background: rgba(255,255,255,.08); font: inherit; }
@keyframes official-icon-press { 45% { transform: rotate(-2deg) translateY(10px) scale(.95); filter: drop-shadow(0 15px 14px rgba(0,0,0,.38)) brightness(1.12); } }
.demo-frame { position: relative; padding: 7px; border: 2px solid rgba(119, 233, 255, .78); border-radius: 52px; background: linear-gradient(145deg, #2de9e2, #203b89 55%, #ffad0b); box-shadow: 0 0 0 5px #193176, 0 0 0 7px rgba(255, 246, 213, .9), 0 0 0 11px #08133f, 0 38px 80px rgba(0, 0, 0, .45); transform: rotate(1.6deg); }
.demo-frame__inner { position: relative; min-height: 500px; padding: 37px 34px 30px; overflow: hidden; border: 2px solid rgba(255, 242, 207, .8); border-radius: 42px; background: radial-gradient(circle at 50% 46%, #192c79 0%, #0b174e 70%); box-shadow: inset 0 0 60px rgba(0, 0, 0, .35); }
.visual-shadow { position: absolute; z-index: -1; left: 12%; right: 5%; bottom: -60px; height: 90px; border-radius: 50%; background: rgba(0, 0, 0, .4); filter: blur(25px); }
.pattern-marks { position: absolute; inset: 0; color: #4053a4; font: 700 35px/1 "Space Grotesk", sans-serif; opacity: .65; }
.pattern-marks i { position: absolute; font-style: normal; }
.pattern-marks i:nth-child(1) { left: 8%; top: 8%; }
.pattern-marks i:nth-child(2) { left: 28%; top: 15%; transform: rotate(28deg); }
.pattern-marks i:nth-child(3) { right: 26%; top: 8%; }
.pattern-marks i:nth-child(4) { right: 10%; top: 13%; }
.pattern-marks i:nth-child(5) { left: 13%; bottom: 18%; transform: rotate(-38deg); }
.pattern-marks i:nth-child(6) { left: 36%; bottom: 7%; }
.pattern-marks i:nth-child(7) { right: 36%; bottom: 15%; }
.pattern-marks i:nth-child(8) { right: 8%; bottom: 8%; }
.demo-label { position: relative; z-index: 2; display: flex; align-items: center; gap: 9px; color: #d7e1ff; font: 800 10px/1 "Space Grotesk", sans-serif; letter-spacing: .22em; }
.demo-label span { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 16px var(--orange); }

.key-flow { position: relative; z-index: 2; min-height: 360px; display: grid; grid-template-columns: 1fr 86px 1fr; align-items: center; gap: 5px; }
.keycap { position: relative; width: 175px; height: 175px; padding: 0; border: 0; border-radius: 35px; transform: rotate(-8deg); filter: drop-shadow(0 20px 14px rgba(0, 0, 0, .42)); transition: transform .12s ease, filter .12s ease; }
button.keycap { cursor: pointer; }
.keycap::before { content: ""; position: absolute; inset: 10px -4px -13px 4px; z-index: -1; border-radius: 35px; }
.keycap--cyan { justify-self: end; color: var(--cream); background: linear-gradient(150deg, #38f0e8, #07a7b3); box-shadow: inset 0 0 0 3px #071a3e, inset 0 0 0 7px rgba(218, 255, 252, .8); }
.keycap--cyan::before { background: #04798f; box-shadow: inset 0 -8px rgba(0, 0, 0, .14); }
.keycap--orange { justify-self: start; transform: rotate(9deg) translateY(32px); background: linear-gradient(145deg, #ffc029, #f58208); box-shadow: inset 0 0 0 3px #4f2404, inset 0 0 0 7px #ffe087; }
.keycap--orange::before { background: #c95405; box-shadow: inset 0 -8px rgba(0, 0, 0, .14); }
.keycap__face { position: absolute; inset: 15px; display: grid; place-content: center; justify-items: center; gap: 5px; border: 2px solid rgba(255, 255, 255, .36); border-radius: 25px; }
.keycap__face svg { width: 70px; fill: var(--cream); stroke: var(--ink); stroke-width: 4px; stroke-linejoin: round; }
.keycap__face strong { color: var(--cream); font: 800 41px/1 "Space Grotesk", sans-serif; letter-spacing: -.04em; text-shadow: 3px 3px 0 #4e2305, -2px -2px 0 #4e2305, 2px -2px 0 #4e2305, -2px 2px 0 #4e2305; }
.keycap__face small { color: rgba(4, 16, 51, .7); font: 800 9px/1 "Space Grotesk", sans-serif; letter-spacing: .15em; }
.keycap--orange .keycap__face small { color: rgba(64, 29, 2, .62); }
.keycap.is-pressed { transform: rotate(-8deg) translateY(10px) scale(.97); filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .4)); }
.keycap--orange.is-pressed { transform: rotate(9deg) translateY(42px) scale(.97); }
.flow-arrow { position: relative; color: var(--orange-hot); transform: translateY(12px); }
.flow-arrow svg { position: relative; z-index: 2; width: 90px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 9; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 5px 0 #621d16); }
.flow-arrow span { position: absolute; left: 13px; top: 16px; width: 65px; height: 18px; border-radius: 20px; background: rgba(255, 90, 44, .22); filter: blur(10px); }
.key-flow.is-active .flow-arrow { animation: arrow-pulse .52s ease; }
.demo-status { position: relative; z-index: 3; min-height: 41px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(168, 190, 255, .18); border-radius: 15px; color: #aebce7; background: rgba(2, 8, 36, .5); font: 700 11px/1 "Space Grotesk", sans-serif; letter-spacing: .05em; }
.status-light { width: 7px; height: 7px; border-radius: 50%; background: #60709e; transition: .2s ease; }
.key-flow.is-active + .demo-status .status-light { background: var(--cyan); box-shadow: 0 0 15px var(--cyan); }

@keyframes arrow-pulse { 45% { transform: translateX(10px) translateY(12px) scale(1.08); filter: brightness(1.3); } }

.feature-strip { position: relative; z-index: 3; overflow: hidden; padding: 19px 0; color: var(--ink); background: linear-gradient(90deg, var(--cyan), var(--cyan-pale)); border-top: 3px solid #adfffb; border-bottom: 6px solid #068d91; transform: rotate(-.8deg) scale(1.01); }
.feature-strip__track { width: max-content; display: flex; align-items: center; gap: 27px; font: 800 13px/1 "Space Grotesk", sans-serif; letter-spacing: .12em; animation: ticker 26s linear infinite; }
.feature-strip__track i { color: #078283; font-style: normal; font-size: 22px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { position: relative; width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 145px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .65fr; gap: 80px; align-items: end; margin-bottom: 62px; }
.section-heading h2, .integration-panel h2, .release-card h2, .community h2 { color: var(--ink); font-size: clamp(45px, 5.5vw, 72px); }
.section-heading h2 em, .integration-panel h2 em, .release-card h2 em, .community h2 em { color: var(--cyan-dark); font-style: normal; }
.section-heading p { margin: 0 0 8px; color: #536083; font-size: 16px; line-height: 1.7; }
.section-kicker { color: #0b999c; }

.section--features { width: 100%; max-width: none; padding-inline: max(20px, calc((100% - var(--max)) / 2)); color: var(--ink); background: var(--cream); }
.feature-grid { display: grid; grid-template-columns: 1.3fr .8fr; grid-template-rows: repeat(2, minmax(270px, auto)); gap: 20px; }
.feature-card { position: relative; min-width: 0; padding: 30px; overflow: hidden; border: 2px solid rgba(12, 25, 85, .12); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .42); box-shadow: 0 12px 0 rgba(20, 38, 111, .1); }
.feature-card--wide { grid-row: 1 / 3; padding: 36px; background: linear-gradient(155deg, #1bd8d2, #08aeb3); border-color: #076f7d; box-shadow: 0 13px 0 #056d79, 0 26px 50px rgba(3, 138, 143, .23); }
.feature-card__top { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.feature-number { color: rgba(9, 17, 57, .42); font: 800 12px/1 "Space Grotesk", sans-serif; }
.feature-chip { padding: 8px 11px; border: 1px solid rgba(9, 17, 57, .17); border-radius: 999px; font: 800 9px/1 "Space Grotesk", sans-serif; letter-spacing: .12em; }
.feature-card h3 { margin: 23px 0 8px; font: 700 27px/1.05 "Space Grotesk", sans-serif; letter-spacing: -.04em; }
.feature-card p { margin: 0; color: #526080; font-size: 14px; line-height: 1.62; }
.feature-card--wide p { max-width: 500px; color: rgba(5, 30, 59, .72); font-size: 16px; }
.mini-remap { min-height: 330px; display: flex; align-items: center; justify-content: center; gap: 25px; }
.mini-key { width: 135px; height: 135px; display: grid; place-items: center; border: 4px solid var(--ink); border-radius: 29px; color: var(--ink); font: 800 28px/1 "Space Grotesk", sans-serif; box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .48), 0 12px 0 rgba(7, 27, 66, .35); }
.mini-key--cyan { background: #5df4ea; transform: rotate(-7deg); }
.mini-key--orange { background: #ffad15; transform: rotate(7deg); }
.mini-arrow { color: var(--orange-hot); font: 800 58px/1 "Space Grotesk", sans-serif; text-shadow: 0 4px #6f2922; }
.scope-list { display: grid; gap: 10px; margin: 33px 0 26px; }
.scope-list span { min-height: 40px; padding: 0 12px; display: flex; align-items: center; gap: 10px; border-radius: 11px; background: rgba(12, 25, 85, .06); color: #4c577b; font-size: 12px; font-weight: 700; }
.scope-list i { width: 9px; height: 9px; border-radius: 3px; background: var(--cyan-dark); }
.scope-list b { margin-left: auto; color: #008b8c; font: 800 9px/1 "Space Grotesk", sans-serif; }
.indicator-preview { position: relative; min-height: 115px; margin: 22px 0; border: 1px dashed rgba(12, 25, 85, .22); border-radius: 17px; background: repeating-linear-gradient(90deg, rgba(12,25,85,.035), rgba(12,25,85,.035) 1px, transparent 1px, transparent 22px); }
.indicator-preview span { position: absolute; left: 50%; top: 43%; padding: 8px 12px; transform: translate(-50%, -50%); border: 2px solid var(--cyan-dark); border-radius: 9px; color: var(--cream); background: var(--navy-800); font: 800 11px/1 "Space Grotesk", sans-serif; box-shadow: 0 5px 0 rgba(5, 12, 47, .27); white-space: nowrap; }
.indicator-crosshair::before, .indicator-crosshair::after { content: ""; position: absolute; left: 50%; top: 43%; background: rgba(7, 151, 155, .22); }
.indicator-crosshair::before { width: 1px; height: 100%; top: 0; }
.indicator-crosshair::after { width: 100%; height: 1px; left: 0; }

.automation { width: 100%; max-width: none; padding-inline: max(20px, calc((100% - var(--max)) / 2)); background: linear-gradient(160deg, #081342, #101e62 60%, #07103a); }
.automation::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: radial-gradient(circle, #3c4e9e 1.5px, transparent 1.5px); background-size: 34px 34px; mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent); }
.automation > * { position: relative; z-index: 1; }
.section-heading--light h2 { color: var(--white); }
.section-heading--light h2 em { color: var(--orange); }
.section-heading--light p { color: #b2bedf; }
.section-heading--light .section-kicker { color: var(--cyan); }
.automation-grid { display: grid; grid-template-columns: 1.16fr 1fr 1fr; gap: 19px; }
.auto-card { min-width: 0; min-height: 390px; padding: 28px; display: flex; flex-direction: column; border: 1px solid rgba(167, 187, 255, .19); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .055); box-shadow: inset 0 1px rgba(255, 255, 255, .055), 0 20px 60px rgba(0, 0, 0, .16); }
.auto-card--percent { border-color: rgba(33, 215, 209, .45); background: linear-gradient(150deg, rgba(32, 215, 209, .15), rgba(255, 255, 255, .04)); }
.auto-card--complete { border-color: rgba(255, 166, 15, .38); }
.auto-card header { display: flex; align-items: center; justify-content: space-between; color: #9eacd4; font: 800 10px/1 "Space Grotesk", sans-serif; letter-spacing: .14em; }
.auto-card header strong { color: var(--cyan); font-size: 28px; letter-spacing: -.05em; }
.auto-card h3 { margin: auto 0 9px; font: 700 26px/1.05 "Space Grotesk", sans-serif; letter-spacing: -.04em; }
.auto-card p { margin: 0; color: #9eabd2; font-size: 14px; line-height: 1.6; }
.progress-visual { margin: 55px 0 40px; }
.progress-track { position: relative; height: 17px; border: 2px solid #526298; border-radius: 999px; background: #050c30; box-shadow: inset 0 3px 7px rgba(0, 0, 0, .4); }
.progress-track span { display: block; width: 50%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan-dark), var(--cyan-pale)); box-shadow: 0 0 20px rgba(32, 215, 209, .4); }
.progress-track i { position: absolute; left: 50%; top: 50%; width: 28px; height: 28px; border: 4px solid var(--cream); border-radius: 9px; background: var(--orange); box-shadow: 0 5px 0 #a84007; transform: translate(-50%, -50%) rotate(45deg); }
.progress-labels { margin-top: 18px; display: flex; justify-content: space-between; color: #64729e; font: 700 9px/1 "Space Grotesk", sans-serif; letter-spacing: .08em; }
.progress-labels b { color: var(--orange); }
.death-icon { width: 37px; height: 37px; display: grid; place-items: center; border: 2px solid #ffb19c; border-radius: 50%; color: #ff8c6d !important; background: rgba(255, 96, 57, .13); }
.complete-icon { color: var(--orange) !important; }
.auto-key-row { margin: 65px 0 55px; display: grid; grid-template-columns: 1fr auto 62px; gap: 10px; align-items: center; }
.auto-key-row span { padding: 13px; border-radius: 11px; color: #adb8db; background: rgba(255, 255, 255, .06); font: 700 10px/1 "Space Grotesk", sans-serif; }
.auto-key-row i { color: var(--orange-hot); font-style: normal; font-size: 22px; }
.auto-key-row b, .finish-line span { height: 48px; display: grid; place-items: center; border: 2px solid #ffe298; border-radius: 12px; color: var(--ink); background: var(--orange); box-shadow: 0 5px 0 #9c3d05; font: 800 14px/1 "Space Grotesk", sans-serif; }
.finish-line { position: relative; margin: 51px 0 54px; min-height: 85px; display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border-radius: 15px; background: #fff; }
.finish-line i:nth-child(odd) { background: var(--navy-950); }
.finish-line span { position: absolute; right: 15px; top: 18px; width: 62px; }

.integrations { padding-top: 120px; padding-bottom: 120px; }
.integration-panel { min-height: 570px; padding: 70px; display: grid; grid-template-columns: 1fr .87fr; gap: 75px; align-items: center; overflow: hidden; border: 3px solid #111f63; border-radius: var(--radius-xl); color: var(--ink); background: linear-gradient(135deg, #fff5d8, #e8fffb); box-shadow: 0 13px 0 #08133f, 0 30px 65px rgba(0, 0, 0, .28); }
.integration-panel h2 { margin-top: 18px; }
.integration-panel__copy > p { max-width: 560px; margin: 23px 0 0; color: #536083; line-height: 1.7; }
.integration-badges { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.integration-badges span { padding: 10px 13px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(12,25,85,.15); border-radius: 12px; background: rgba(255,255,255,.55); color: #354060; font-size: 11px; font-weight: 800; }
.integration-badges i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; color: white; font-style: normal; font: 800 11px/1 "Space Grotesk", sans-serif; }
.eclipse-mark { background: #7252d8; }
.qol-mark { background: var(--cyan-dark); }
.settings-window { border: 4px solid #0b174e; border-radius: 27px; background: #132361; box-shadow: 0 13px 0 #050b29, 0 30px 50px rgba(5, 11, 41, .25); transform: rotate(2.5deg); }
.settings-window__bar { height: 60px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid #263982; color: #dfe7ff; font: 800 11px/1 "Space Grotesk", sans-serif; letter-spacing: .15em; }
.settings-window__bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.settings-window__bar b { font-size: 20px; }
.settings-window__content { padding: 15px 19px 24px; display: grid; gap: 10px; }
.settings-window__content > div { min-height: 58px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; border: 1px solid #31448e; border-radius: 14px; color: #b9c5e8; background: #0c194e; font-size: 12px; font-weight: 700; }
.settings-window__content b { min-width: 60px; padding: 9px 10px; border: 2px solid #b9fff9; border-radius: 9px; color: var(--ink); background: var(--cyan); text-align: center; font: 800 11px/1 "Space Grotesk", sans-serif; }
.settings-window__content .orange-value { border-color: #ffe4a2; background: var(--orange); }
.toggle-on { position: relative; width: 48px; height: 25px; border-radius: 999px; background: var(--cyan-dark); }
.toggle-on::after { content: ""; position: absolute; right: 3px; top: 3px; width: 19px; height: 19px; border-radius: 50%; background: var(--cream); box-shadow: 0 2px 5px rgba(0,0,0,.25); }

.install { padding-top: 70px; }
.install .section-heading { align-items: center; }
.text-link { justify-self: end; color: var(--cyan-pale); text-decoration: none; font-weight: 800; }
.text-link:hover { color: var(--orange); }
.install .section-heading h2 { color: var(--white); }
.install .section-heading h2 em { color: var(--cyan); }
.install .section-kicker { color: var(--orange); }
.install-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: steps; }
.install-steps li { position: relative; min-height: 340px; padding: 28px; border: 1px solid rgba(168, 190, 255, .18); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .045); }
.install-steps li::after { content: ""; position: absolute; right: -21px; top: 50%; z-index: 3; width: 20px; border-top: 2px dashed #38509a; }
.install-steps li:last-child::after { display: none; }
.step-number { color: #7180ad; font: 800 11px/1 "Space Grotesk", sans-serif; }
.step-icon { width: 82px; height: 82px; margin: 45px 0 35px; display: grid; place-items: center; border-radius: 22px; font: 800 34px/1 "Space Grotesk", sans-serif; box-shadow: 0 8px 0 rgba(0,0,0,.25); transform: rotate(-3deg); }
.step-icon--download { color: var(--ink); border: 3px solid var(--cyan-pale); background: var(--cyan); }
.step-icon--folder { color: var(--ink); border: 3px solid #ffe5a2; background: var(--orange); transform: rotate(3deg); }
.step-icon--folder svg { width: 57px; overflow: visible; filter: drop-shadow(0 5px 0 rgba(79, 36, 4, .28)); }
.step-icon--folder path { stroke: var(--ink); stroke-width: 4; stroke-linejoin: round; }
.step-icon--folder .folder-back { fill: var(--cyan); }
.step-icon--folder .folder-front { fill: var(--cream); }
.step-icon--folder .folder-shine { fill: none; stroke: var(--orange-hot); stroke-width: 3; stroke-linecap: round; }
.step-icon--play { color: var(--ink); border: 3px solid #fff8de; background: var(--cream); }
.install-steps h3 { margin: 0 0 9px; font: 700 24px/1 "Space Grotesk", sans-serif; letter-spacing: -.03em; }
.install-steps p { margin: 0; color: #9ba8cf; font-size: 14px; line-height: 1.6; }
.install-steps code { padding: 2px 5px; border-radius: 4px; color: var(--cyan-pale); background: rgba(32, 215, 209, .1); font-size: 12px; }

.release-section { padding: 30px 20px 130px; }
.release-card { width: min(100%, var(--max)); min-height: 340px; margin: 0 auto; padding: 50px 60px; display: grid; grid-template-columns: 190px 1fr; align-items: center; gap: 50px; border: 3px solid #0d1b58; border-radius: var(--radius-xl); color: var(--ink); background: var(--cream); box-shadow: 0 13px 0 #061039, 0 35px 70px rgba(0, 0, 0, .25); }
.release-card__icon { width: 170px; height: 170px; display: grid; place-items: center; border: 2px solid rgba(12,25,85,.12); border-radius: 38px; background: linear-gradient(145deg, #d8fffb, #fff0bd); transform: rotate(-4deg); }
.release-card__icon img { width: 132px; border-radius: 30px; filter: drop-shadow(0 16px 14px rgba(4, 12, 47, .2)); }
.release-card h2 { margin-top: 14px; font-size: clamp(38px, 4.7vw, 60px); }
.release-card h2 em { color: var(--orange-hot); }
.release-card p { max-width: 700px; margin: 17px 0 0; color: #566180; line-height: 1.65; }
.release-card__links { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

.community { position: relative; min-height: 560px; padding: 120px 20px; display: grid; place-items: center; overflow: hidden; text-align: center; background: linear-gradient(135deg, #1ad5cf, #04aaa9); border-top: 7px solid #8dfff9; }
.community::after { content: ""; position: absolute; inset: 18px; border: 3px solid rgba(5, 43, 70, .5); border-radius: var(--radius-xl); pointer-events: none; }
.community__content { position: relative; z-index: 2; max-width: 850px; }
.community .section-kicker { color: #075c68; }
.community h2 { margin-top: 19px; font-size: clamp(50px, 6vw, 78px); }
.community h2 em { color: var(--cream); text-shadow: 0 5px #087f83; }
.community p { margin: 22px auto 31px; color: #0a5368; font-size: 17px; font-weight: 600; }
.community__marks span { position: absolute; z-index: 1; color: rgba(3, 83, 98, .21); font: 800 75px/1 "Space Grotesk", sans-serif; }
.community__marks span:nth-child(1) { left: 8%; top: 20%; }
.community__marks span:nth-child(2) { right: 12%; top: 14%; transform: rotate(30deg); }
.community__marks span:nth-child(3) { right: 7%; bottom: 15%; }
.community__marks span:nth-child(4) { left: 16%; bottom: 11%; }
.community__marks span:nth-child(5) { left: 27%; top: 11%; transform: rotate(-35deg); }

.site-footer { min-height: 110px; padding: 25px max(24px, calc((100% - 1240px) / 2)); display: flex; align-items: center; gap: 40px; border-top: 1px solid rgba(159, 182, 255, .14); background: var(--navy-950); }
.brand--footer img { width: 42px; height: 42px; border-radius: 11px; }
.site-footer p { margin: 0 auto; color: #68769f; font-size: 11px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; }

.reveal { opacity: 1; transform: none; }
.reveal.visible { animation: reveal-in .7s cubic-bezier(.2,.7,.2,1) both; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1050px) {
  .site-header { gap: 18px; }
  .site-nav { gap: 18px; }
  .brand__copy { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; gap: 75px; }
  .hero__copy { max-width: 760px; }
  .hero__visual { width: min(100%, 650px); margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr .7fr; gap: 40px; }
  .automation-grid { grid-template-columns: 1fr 1fr; }
  .auto-card--percent { grid-column: 1 / 3; min-height: 360px; }
  .integration-panel { padding: 55px; gap: 45px; }
}

@media (max-width: 760px) {
  :root { --radius-xl: 32px; --radius-lg: 25px; }
  .site-header { width: calc(100% - 24px); height: 72px; margin-top: 12px; padding: 0 11px 0 12px; border-radius: 20px; }
  .brand img { width: 46px; height: 46px; border-radius: 12px; }
  .header-download { min-height: 43px; margin-left: auto; padding: 0 13px; font-size: 11px; }
  .header-download span { display: none; }
  .menu-toggle { width: 43px; height: 43px; display: grid; place-content: center; gap: 4px; border: 1px solid rgba(190, 211, 255, .22); border-radius: 13px; background: rgba(255, 255, 255, .05); }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 2px; border-radius: 2px; background: var(--white); transition: .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: absolute; top: 80px; left: 0; right: 0; margin: 0; padding: 16px; display: grid; gap: 0; border: 1px solid rgba(171,196,255,.2); border-radius: 20px; background: rgba(5, 12, 47, .98); box-shadow: 0 25px 50px rgba(0,0,0,.4); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }

  .hero { width: calc(100% - 32px); min-height: auto; padding: 70px 0 85px; gap: 70px; }
  .hero h1 { font-size: clamp(50px, 17vw, 72px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__meta { gap: 15px; }
  .official-icon-stage { padding: 7px; }
  .official-icon-badge { left: -4px; top: 12%; }
  .official-icon-hint { right: 0; bottom: 8%; }
  .demo-frame { border-radius: 37px; }
  .demo-frame__inner { min-height: 410px; padding: 27px 20px 22px; border-radius: 29px; }
  .key-flow { min-height: 300px; grid-template-columns: 1fr 54px 1fr; }
  .keycap { width: 125px; height: 125px; border-radius: 26px; }
  .keycap::before { border-radius: 25px; }
  .keycap__face { inset: 12px; border-radius: 18px; }
  .keycap__face svg { width: 50px; }
  .keycap__face strong { font-size: 30px; }
  .flow-arrow svg { width: 62px; stroke-width: 10; }
  .demo-status { font-size: 9px; }

  .section { width: calc(100% - 32px); padding: 100px 0; }
  .section--features, .automation { width: 100%; padding-inline: 16px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 42px; }
  .section-heading h2, .integration-panel h2, .release-card h2, .community h2 { font-size: clamp(43px, 13vw, 62px); }
  .section-heading p { font-size: 15px; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature-card--wide { grid-row: auto; padding: 25px; }
  .mini-remap { min-height: 265px; gap: 13px; }
  .mini-key { width: 105px; height: 105px; border-radius: 23px; font-size: 22px; }
  .mini-arrow { font-size: 39px; }
  .automation-grid { grid-template-columns: 1fr; }
  .auto-card, .auto-card--percent { grid-column: auto; min-height: 360px; }
  .integration-panel { padding: 38px 24px; grid-template-columns: 1fr; gap: 55px; }
  .settings-window { transform: rotate(1deg); }
  .install .section-heading { align-items: start; }
  .text-link { justify-self: start; }
  .install-steps { grid-template-columns: 1fr; }
  .install-steps li { min-height: 290px; }
  .install-steps li::after { display: none; }
  .step-icon { margin: 38px 0 30px; }
  .release-section { padding-inline: 16px; }
  .release-card { padding: 38px 24px; grid-template-columns: 1fr; gap: 32px; }
  .release-card__icon { width: 145px; height: 145px; }
  .release-card__icon img { width: 112px; }
  .release-card__links { display: grid; }
  .community { padding-inline: 28px; }
  .site-footer { padding: 32px 24px; flex-direction: column; gap: 22px; text-align: center; }
  .site-footer p { margin: 0; }
}

@media (max-width: 420px) {
  .header-download { display: none; }
  .menu-toggle { margin-left: auto; }
  .keycap { width: 108px; height: 108px; }
  .keycap__face strong { font-size: 26px; }
  .key-flow { grid-template-columns: 1fr 42px 1fr; }
  .flow-arrow svg { width: 48px; }
  .mini-key { width: 88px; height: 88px; border-width: 3px; }
  .mini-arrow { font-size: 31px; }
  .integration-badges { display: grid; }
}

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