@font-face {
  font-family: Poppins;
  src: url(fonts/Poppins-Regular.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url(fonts/Poppins-Bold.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url(fonts/Poppins-BoldItalic.woff2) format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
:root {
  --bg: #0b0d14;
  --surface: #131722;
  --line: #ffffff13;
  --text: #f4f2ec;
  --muted: #a6adbd;
  --blue: #7188ff;
  --amber: #ffb44a;
  --radius: 22px;
  --shell: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    14px/1.8 Poppins,
    sans-serif;
  overflow-x: clip;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
video:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 6px;
}
::selection {
  background: var(--amber);
  color: #0b0d14;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
svg {
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
h2 {
  font-size: clamp(34px, 4.5vw, 59px);
}
h3 {
  font-size: clamp(27px, 3vw, 39px);
}
em {
  font-weight: 700;
}
button {
  border: 0;
}
.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 36px;
}
.section-space {
  padding-block: 110px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.7;
  margin-bottom: 25px;
}
.skip {
  position: absolute;
  top: -70px;
  left: 20px;
  z-index: 1000;
  background: var(--text);
  color: var(--bg);
  padding: 10px 20px;
}
.skip:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0b0d14eb;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -1px;
}
.wordmark-dot {
  color: var(--amber);
}
.wordmark img {
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 34px;
  color: #c2c6d0;
  font-size: 12px;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--amber);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--text);
  color: #11131a;
  border-radius: 10px;
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  background: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px #0004;
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button.small {
  padding: 12px 18px;
  font-size: 11px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 36px;
  min-height: 740px;
  padding-block: 60px 78px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  animation: enter 0.8s both;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 15px #ffb44a66;
}
.version-tag {
  color: var(--muted);
  border: 1px solid #ffffff20;
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 9px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(43px, 4.5vw, 66px);
  line-height: 1.1;
  letter-spacing: -0.065em;
  margin-bottom: 30px;
  white-space: nowrap;
}
.hero h1 em {
  position: relative;
  color: var(--blue);
  font-size: 0.98em;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  height: 5px;
  bottom: -8px;
  left: 5px;
  right: 10px;
  border-radius: 50%;
  background: var(--amber);
  transform: rotate(-2deg);
  transform-origin: left;
  animation: underline-in 1.1s 0.5s both;
}
.hero-intro {
  max-width: 455px;
  font-size: 15px;
  line-height: 1.9;
  color: #b9becc;
}
.hero-intro strong {
  color: var(--text);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.watch-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-decoration: none;
}
.play-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #ffffff36;
  font-size: 10px;
  padding-left: 2px;
  transition:
    background 0.2s,
    color 0.2s;
}
.watch-link:hover .play-icon {
  background: var(--amber);
  color: var(--bg);
}
.hero-details {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: #8d96a9;
  font-size: 9px;
}
.hero-details span + span::before {
  content: "·";
  margin-right: 14px;
  color: var(--amber);
}
.playground {
  --ink: #173a52;
  --paper: #f0f5f5;
  position: relative;
  height: 590px;
  border: 1px solid #ffffff10;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 55% 45%, #35487245, transparent 66%),
    linear-gradient(#ffffff04 1px, transparent 1px),
    linear-gradient(90deg, #ffffff04 1px, transparent 1px);
  background-size:
    auto,
    42px 42px,
    42px 42px;
  isolation: isolate;
  animation: enter 0.85s 0.15s both;
}
.playground::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 45%),
    #7b8dff16,
    transparent 42%
  );
  pointer-events: none;
}
.playground[data-theme="forest"] {
  --ink: #174334;
  --paper: #f6f5ee;
}
.playground[data-theme="plum"] {
  --ink: #543061;
  --paper: #fbf5fa;
}
.playground[data-theme="copper"] {
  --ink: #76452e;
  --paper: #fff8ed;
}
.board-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 25px;
  font-size: 8px;
  letter-spacing: 0.13em;
  color: #75819a;
}
.board-label > span:last-child {
  font-size: 24px;
  color: var(--blue);
}
.board-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  border-color: var(--blue);
}
.board-corner.tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
  border-radius: 20px 0 0;
}
.board-corner.br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-radius: 0 0 20px;
}
.orbit-word {
  position: absolute;
  left: 24px;
  top: 175px;
  font-size: clamp(34px, 3vw, 49px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
  color: #ffffff08;
  white-space: nowrap;
  z-index: -1;
}
.code-ticket {
  position: absolute;
  top: 76px;
  left: 50%;
  width: 300px;
  padding: 18px 20px 16px;
  border-radius: 15px;
  background: var(--paper);
  color: var(--ink);
  box-shadow:
    10px 35px 65px #0007,
    0 0 0 1px #ffffff30;
  transform: translateX(-50%) rotate(5deg);
  transition:
    background 0.35s,
    color 0.35s,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  animation: ticket-arrive 1s 0.2s both;
}
.playground:hover .code-ticket {
  transform: translateX(-50%) rotate(1deg) translateY(-5px);
}
.ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.75;
}
.ticket-top > span:last-child {
  font-size: 18px;
}
.ticket-mark {
  font-size: 23px;
  line-height: 1;
}
.playground-code {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.ticket-bottom {
  border-top: 1px dashed #0003;
  padding-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticket-bottom strong {
  display: block;
  font-size: 21px;
  letter-spacing: -0.04em;
  line-height: 1.4;
}
.ticket-bottom small {
  font-size: 7px;
  opacity: 0.7;
}
.ticket-number {
  font-size: 34px;
  font-weight: 700;
  opacity: 0.2;
  letter-spacing: -0.08em;
}
.floating-note {
  position: absolute;
  z-index: 3;
  padding: 13px 16px;
  border: 1px solid #ffffff16;
  border-radius: 10px;
  background: #181e2af0;
  box-shadow: 0 15px 30px #0004;
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.note-top {
  right: 14px;
  top: 89px;
  transform: rotate(-6deg);
  animation: float-note 7s 1s ease-in-out infinite;
}
.note-bottom {
  left: 22px;
  bottom: 134px;
  transform: rotate(-4deg);
  animation: float-note 8s 2s ease-in-out infinite;
}
.note-bottom > span {
  color: var(--amber);
  font-size: 22px;
}
.tiny-check {
  background: #80988622;
  color: #b4d5b8;
  border-radius: 50%;
  padding: 1px 5px;
}
.palette-control {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
}
.palette-control > p {
  font-size: 10px;
  color: #98a1b4;
  margin-bottom: 13px;
}
.palettes {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 12px;
}
.palette {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #a7b0c3;
  background: transparent;
  font-size: 8px;
  border: 1px solid #ffffff12;
  border-radius: 30px;
  padding: 8px 10px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.palette > span {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--swatch);
}
.palette.selected {
  color: white;
  background: #ffffff0b;
  border-color: #ffffff50;
}
.palette:hover {
  border-color: var(--amber);
  color: white;
}
.process-ribbon {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #10141f;
  transform: none;
  margin-inline: 0;
}
.ribbon-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.ribbon-track > span {
  font-size: 29px;
  letter-spacing: 0.03em;
  font-weight: 700;
  word-spacing: 34px;
  white-space: nowrap;
  padding: 16px 34px;
  color: #b9bed0;
}
.ribbon-track i {
  font-style: normal;
  color: var(--blue);
}
.section-heading {
  position: relative;
}
.section-heading .section-intro {
  max-width: 430px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin-top: 22px;
}
.muted-word {
  color: #70798d;
}
.workspace-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 45px;
  border-bottom: 1px solid #ffffff1a;
}
.workspace-tabs button {
  background: transparent;
  color: #8e97ac;
  text-align: left;
  padding: 21px 15px;
  font-size: 12px;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 14px;
  transition:
    color 0.2s,
    background 0.2s;
}
.workspace-tabs button > span {
  font-size: 9px;
  color: #677188;
}
.workspace-tabs button > i {
  font-style: normal;
  margin-left: auto;
  opacity: 0;
}
.workspace-tabs button[aria-selected="true"] {
  color: var(--text);
  border-color: var(--amber);
  background: linear-gradient(transparent, #ffb44a07);
}
.workspace-tabs button[aria-selected="true"] > span {
  color: var(--amber);
}
.workspace-tabs button[aria-selected="true"] > i {
  opacity: 1;
}
.workspace-tabs button:hover {
  color: white;
}
.workspace-panel {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 58px;
  align-items: center;
  padding-top: 38px;
  animation: panel-in 0.4s both;
}
.workspace-panel[hidden] {
  display: none;
}
.app-shot {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(140deg, #7188ff22, #171c2800);
  border: 1px solid #ffffff13;
  box-shadow: 0 40px 80px #0003;
}
.app-shot img {
  width: 100%;
  height: auto;
  border-radius: 11px;
}
.mini-index {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
}
.panel-copy h3 {
  margin: 18px 0 20px;
  font-size: clamp(27px, 3vw, 38px);
}
.panel-copy > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  font-size: 10px;
  color: #c1c7d4;
}
.check-list li {
  padding: 7px 0;
}
.check-list li::before {
  content: "✓";
  color: var(--blue);
  margin-right: 11px;
}
.text-link {
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid #ffffff30;
  padding-bottom: 7px;
  display: inline-flex;
  gap: 25px;
}
.text-link:hover {
  color: var(--amber);
}
.possibilities {
  background: #10141d;
  border-block: 1px solid var(--line);
}
.section-heading.compact h2 em {
  color: var(--amber);
}
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.bento-card {
  padding: 34px 36px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  border: 1px solid #ffffff0d;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: #ffffff30;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #9ca7bd;
}
.card-top > span:last-child {
  font-size: 28px;
  line-height: 1;
}
.bento-card h3 {
  font-size: 33px;
  margin-bottom: 15px;
}
.bento-card p {
  font-size: 11px;
  line-height: 1.9;
  max-width: 400px;
  color: #b4bbca;
}
.dynamic-card {
  background: #1a2543;
}
.route-demo {
  display: flex;
  align-items: center;
  margin: 36px 0 27px;
  gap: 12px;
  font-size: 10px;
  color: #c6d1ff;
}
.route-origin {
  border: 1px solid #748bed66;
  padding: 8px 11px;
  border-radius: 5px;
  font-size: 8px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.route-line {
  position: relative;
  width: 55px;
  height: 1px;
  background: #728bdf;
}
.route-line::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: route 3s ease infinite;
}
.route-destination {
  height: 27px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ffffff20;
  min-width: 117px;
}
.route-destination span {
  height: 27px;
  line-height: 27px;
  flex-shrink: 0;
  animation: destinations 9s steps(1) infinite;
}
.wifi-card {
  background: #eee9dd;
  color: #18362d;
}
.wifi-card .card-top {
  color: #57776b;
}
.wifi-card p {
  color: #54665c;
}
.wifi-card h3 em {
  color: #457d63;
}
.wifi-symbol {
  height: 86px;
  position: relative;
  margin: 22px 0 16px;
  width: 95px;
}
.wifi-symbol span {
  position: absolute;
  border: 3px solid #759885;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
  aspect-ratio: 1;
  top: 0;
  left: 0;
  width: 86px;
  animation: wifi-wave 3s ease-in-out infinite;
}
.wifi-symbol span:nth-child(2) {
  width: 60px;
  top: 14px;
  left: 13px;
  animation-delay: 0.3s;
}
.wifi-symbol span:nth-child(3) {
  width: 34px;
  top: 28px;
  left: 26px;
  animation-delay: 0.6s;
}
.wifi-symbol i {
  position: absolute;
  top: 57px;
  left: 38px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #457d63;
}
.formats-card {
  background: #211e2d;
}
.format-stack {
  display: flex;
  gap: 0;
  align-items: center;
  margin: 34px 0 35px;
  padding-left: 10px;
}
.format-stack span {
  width: 65px;
  height: 72px;
  display: grid;
  place-items: center;
  background: #ddd2ef;
  color: #433058;
  font-weight: 700;
  font-size: 13px;
  border-radius: 7px;
  transform: rotate(-12deg);
  box-shadow: 0 8px 20px #0003;
  border: 1px solid #ffffff77;
  transition: transform 0.3s;
}
.format-stack span:nth-child(2) {
  background: #8e80bc;
  color: white;
  transform: rotate(4deg);
  margin-left: -9px;
}
.format-stack span:nth-child(3) {
  background: #f0b95e;
  color: #403119;
  transform: rotate(16deg);
  margin-left: -9px;
}
.formats-card:hover .format-stack span:first-child {
  transform: rotate(-18deg) translateX(-5px);
}
.formats-card:hover .format-stack span:last-child {
  transform: rotate(22deg) translateX(5px);
}
.scan-card {
  background: #181f2b;
}
.scan-graphic {
  width: 94px;
  height: 88px;
  position: relative;
  display: grid;
  place-items: center;
  margin: 22px 0 23px;
}
.scan-bracket {
  position: absolute;
  inset: 0;
  border: 1px solid #ffffff30;
  border-radius: 8px;
}
.scan-dots {
  font-size: 62px;
  line-height: 1;
  color: #8298c7;
}
.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  box-shadow: 0 0 15px #ffb44a55;
  z-index: 2;
  animation: scan 3.5s ease-in-out infinite;
}
.scan-card h3 em {
  color: var(--blue);
}
.section-footnote {
  font-size: 10px;
  color: #838fa4;
  max-width: 760px;
  margin-top: 25px;
}
.demo-heading,
.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 36px;
}
.duration-tag {
  border: 1px solid #ffffff1a;
  color: var(--amber);
  padding: 9px 15px;
  font-size: 11px;
  border-radius: 50px;
  white-space: nowrap;
}
.duration-tag span {
  font-size: 8px;
  margin-right: 8px;
}
.cinema {
  background: #090b12;
  border-radius: 17px;
  overflow: hidden;
  border: 1px solid #ffffff1d;
  box-shadow: 0 40px 80px #0004;
}
.cinema-bar {
  height: 40px;
  background: #181d29;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  font-size: 7px;
  letter-spacing: 0.12em;
  color: #78839a;
}
.cinema-bar > span:first-child {
  display: flex;
  gap: 5px;
}
.cinema-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #555e73;
}
.cinema-bar i:first-child {
  background: #ca9274;
}
.cinema-bar i:nth-child(2) {
  background: #c4b182;
}
.cinema-bar i:last-child {
  background: #86a691;
}
.cinema video {
  display: block;
  width: 100%;
  height: auto;
}
.demo-description {
  font-size: 10px;
  color: #8793a9;
  margin-top: 22px;
  max-width: 780px;
}
.gallery {
  padding-top: 20px;
}
.gallery-heading > p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.9;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.gallery-item {
  display: block;
  text-decoration: none;
  background: #121824;
  border: 1px solid #ffffff0f;
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: #8e9dca50;
}
.gallery-item img {
  width: 100%;
  height: auto;
}
.gallery-item > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 10px;
}
.gallery-item strong {
  font-weight: 400;
  color: #b0bbcf;
}
.gallery-item i {
  font-style: normal;
  color: var(--amber);
  font-size: 22px;
  line-height: 1;
}
.final-cta {
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: clip;
}
.final-cta .eyebrow {
  justify-content: center;
}
.final-cta h2 {
  font-size: clamp(48px, 7vw, 87px);
  margin-bottom: 32px;
}
.final-cta h2 em {
  color: var(--amber);
}
.final-cta > p:last-child {
  font-size: 10px;
  color: var(--muted);
  margin-top: 22px;
}
.cta-corner {
  position: absolute;
  top: 110px;
  left: 10%;
  width: 105px;
  height: 105px;
  border: 13px solid #7188ff12;
  border-radius: 25px;
  transform: rotate(-13deg);
  z-index: -1;
}
.cta-corner::after {
  content: "";
  position: absolute;
  inset: 15px;
  background: #7188ff12;
  border-radius: 5px;
}
.footer {
  border-top: 1px solid var(--line);
  padding-block: 35px;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.footer > .wordmark {
  font-size: 18px;
  gap: 0;
}
.footer > span {
  font-size: 9px;
  color: #737e92;
}
.footer nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
  font-size: 10px;
}
.footer nav a {
  text-decoration: none;
  color: #9aa5b9;
}
.footer p {
  width: 100%;
  font-size: 8px;
  color: #677187;
  letter-spacing: 0.05em;
}
.lightbox {
  border: 1px solid #ffffff28;
  border-radius: 15px;
  background: #10141f;
  color: var(--text);
  padding: 18px;
  max-width: 95vw;
  max-height: 95vh;
  width: max-content;
  box-shadow: 0 30px 80px #0008;
}
.lightbox::backdrop {
  background: #06080fe8;
  backdrop-filter: blur(9px);
}
.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 14px;
}
.lightbox-bar h2 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}
.lightbox button {
  background: #ffffff08;
  color: white;
  border: 1px solid #ffffff20;
  border-radius: 6px;
  font-size: 10px;
  padding: 8px 13px;
}
.lightbox-image,
.lightbox img {
  width: auto;
  height: auto;
  max-width: 88vw;
  max-height: 73vh;
  object-fit: contain;
  border-radius: 7px;
}
.lightbox-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 10px;
  color: var(--muted);
}
.lightbox-close span {
  margin-left: 12px;
  font-size: 17px;
}
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.js .reveal.in-view {
  opacity: 1;
  transform: none;
}
.motion-paused .ribbon-track,
.motion-paused .floating-note,
.motion-paused .route-line::before,
.motion-paused .route-destination span,
.motion-paused .wifi-symbol span,
.motion-paused .scan-line {
  animation-play-state: paused;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes underline-in {
  from {
    transform: rotate(-2deg) scaleX(0);
  }
  to {
    transform: rotate(-2deg) scaleX(1);
  }
}
@keyframes ticket-arrive {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(25px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) rotate(5deg);
  }
}
@keyframes float-note {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes route {
  0% {
    left: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes destinations {
  0%,
  100% {
    transform: translateY(0);
  }
  33% {
    transform: translateY(-27px);
  }
  66% {
    transform: translateY(-54px);
  }
}
@keyframes wifi-wave {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes scan {
  0%,
  100% {
    top: 10px;
  }
  50% {
    top: 77px;
  }
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1500px) {
  .hero h1 {
    font-size: 72px;
  }
}
@media (max-width: 1100px) {
  .hero {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: clamp(40px, 4.7vw, 54px);
  }
  .hero-intro {
    font-size: 13px;
  }
  .hero-actions {
    gap: 18px;
  }
  .button {
    font-size: 11px;
    padding: 16px 19px;
  }
  .hero-details {
    font-size: 8px;
    gap: 8px;
  }
  .hero-details span + span::before {
    margin-right: 8px;
  }
  .code-ticket {
    width: 285px;
    top: 105px;
  }
  .playground {
    height: 560px;
  }
  .note-top {
    right: 7px;
    top: 85px;
  }
  .note-bottom {
    left: 8px;
    bottom: 130px;
  }
  .board-label {
    font-size: 7px;
  }
  .workspace-panel {
    gap: 35px;
  }
  .panel-copy h3 {
    font-size: 30px;
  }
}
@media (max-width: 850px) {
  .shell {
    padding-inline: 25px;
  }
  .nav-links {
    gap: 20px;
    font-size: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 60px 50px;
  }
  .hero-copy {
    max-width: 600px;
  }
  .hero h1 {
    font-size: clamp(43px, 7.6vw, 65px);
  }
  .hero-intro {
    font-size: 14px;
    max-width: 510px;
  }
  .playground {
    max-width: 560px;
    width: 100%;
    justify-self: center;
    height: 555px;
  }
  .code-ticket {
    width: 300px;
    top: 85px;
  }
  .note-top {
    right: 28px;
  }
  .note-bottom {
    left: 25px;
    bottom: 130px;
  }
  .section-space {
    padding-block: 75px;
  }
  .workspace-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .app-shot {
    max-width: 690px;
  }
  .panel-copy {
    max-width: 500px;
  }
  .panel-copy h3 {
    font-size: 36px;
  }
  .workspace-tabs button {
    font-size: 10px;
    gap: 8px;
    padding-inline: 8px;
  }
  .bento-card {
    padding: 27px;
    min-height: 330px;
  }
  .bento-card h3 {
    font-size: 28px;
  }
  .bento-card p {
    font-size: 10px;
  }
  .route-demo {
    gap: 7px;
  }
  .route-line {
    width: 35px;
  }
  .route-destination {
    min-width: 95px;
    font-size: 9px;
  }
  .gallery {
    padding-top: 10px;
  }
  .gallery-grid {
    gap: 16px;
  }
  .gallery-heading {
    display: block;
  }
  .gallery-heading > p {
    margin-top: 20px;
  }
  .final-cta h2 {
    font-size: 68px;
  }
  .footer > span {
    display: none;
  }
}
@media (max-width: 540px) {
  .shell {
    padding-inline: 20px;
  }
  .nav {
    height: 73px;
    gap: 10px;
  }
  .nav-links {
    display: none;
  }
  .wordmark {
    font-size: 20px;
  }
  .wordmark img {
    width: 27px;
    height: 27px;
  }
  .button.small {
    padding: 10px 12px;
    font-size: 9px;
    gap: 10px;
  }
  .hero {
    padding-top: 45px;
    gap: 35px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.09em;
    gap: 8px;
  }
  .hero h1 {
    font-size: clamp(37px, 9.9vw, 52px);
    margin-bottom: 25px;
    white-space: normal;
  }
  .hero h1 em {
    white-space: nowrap;
  }
  .hero-intro {
    font-size: 12px;
  }
  .hero-actions {
    gap: 17px;
    margin-top: 27px;
  }
  .hero-actions .button {
    font-size: 10px;
    padding: 15px 16px;
    gap: 10px;
  }
  .watch-link {
    font-size: 9px;
    gap: 7px;
  }
  .play-icon {
    width: 29px;
    height: 29px;
    font-size: 8px;
  }
  .hero-details {
    gap: 7px;
    font-size: 7px;
    line-height: 2;
  }
  .hero-details span + span::before {
    margin-right: 7px;
  }
  .playground {
    height: 520px;
  }
  .board-label {
    padding: 20px 17px;
    font-size: 6px;
    letter-spacing: 0.09em;
  }
  .code-ticket {
    top: 93px;
    width: 255px;
    padding: 15px 17px 13px;
  }
  .ticket-top {
    font-size: 5px;
  }
  .ticket-bottom strong {
    font-size: 18px;
  }
  .ticket-bottom small {
    font-size: 6px;
  }
  .ticket-number {
    font-size: 28px;
  }
  .note-top {
    top: 76px;
    right: 5px;
    font-size: 8px;
    padding: 10px 12px;
  }
  .note-bottom {
    left: 5px;
    bottom: 118px;
    font-size: 7px;
    padding: 10px 12px;
  }
  .palette-control {
    bottom: 18px;
  }
  .palette-control > p {
    font-size: 9px;
    margin-bottom: 10px;
  }
  .palette {
    font-size: 7px;
    padding: 8px;
    gap: 5px;
  }
  .palettes {
    gap: 4px;
  }
  .orbit-word {
    font-size: 35px;
  }
  .ribbon-track > span {
    font-size: 22px;
    padding: 12px 22px;
    word-spacing: 20px;
  }
  .section-space {
    padding-block: 62px;
  }
  .eyebrow {
    font-size: 8px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 36px;
  }
  .section-heading .section-intro {
    font-size: 11px;
  }
  .workspace-tabs {
    margin-top: 30px;
  }
  .workspace-tabs button {
    display: block;
    font-size: 9px;
    line-height: 1.6;
    padding: 15px 8px;
  }
  .workspace-tabs button > span {
    display: block;
    margin-bottom: 5px;
    font-size: 8px;
  }
  .workspace-tabs button > i {
    display: none;
  }
  .workspace-panel {
    padding-top: 24px;
  }
  .app-shot {
    padding: 9px;
    border-radius: 13px;
  }
  .app-shot img {
    border-radius: 7px;
  }
  .panel-copy h3 {
    font-size: 32px;
  }
  .panel-copy > p {
    font-size: 11px;
  }
  .check-list {
    margin: 18px 0;
    font-size: 9px;
  }
  .bento {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
  }
  .bento-card {
    min-height: 330px;
    padding: 27px;
  }
  .bento-card h3 {
    font-size: 32px;
  }
  .bento-card p {
    font-size: 11px;
  }
  .card-top {
    font-size: 7px;
  }
  .section-footnote {
    font-size: 9px;
  }
  .demo-heading {
    gap: 15px;
    align-items: flex-start;
  }
  .demo-heading h2 {
    font-size: 32px;
  }
  .duration-tag {
    font-size: 8px;
    padding: 7px 9px;
    gap: 3px;
    margin-top: 35px;
  }
  .cinema-bar {
    height: 30px;
    padding-inline: 10px;
    font-size: 5px;
  }
  .cinema-bar > span:last-child {
    display: none;
  }
  .demo-description {
    font-size: 9px;
    line-height: 1.9;
  }
  .gallery {
    padding-top: 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item > span {
    padding: 13px 17px;
  }
  .gallery-heading h2 {
    font-size: 32px;
  }
  .gallery-heading > p {
    font-size: 10px;
  }
  .final-cta h2 {
    font-size: 55px;
  }
  .final-cta > .eyebrow {
    font-size: 7px;
  }
  .final-cta > p:last-child {
    font-size: 9px;
  }
  .cta-corner {
    width: 80px;
    height: 80px;
    border-width: 9px;
    left: 0;
    top: 75px;
  }
  .footer {
    padding-block: 28px;
    gap: 18px;
  }
  .footer nav {
    gap: 16px;
    font-size: 8px;
  }
  .footer > .wordmark {
    font-size: 16px;
  }
  .lightbox {
    padding: 10px;
  }
  .lightbox-bar h2 {
    font-size: 10px;
  }
  .lightbox button {
    font-size: 9px;
    padding: 7px;
  }
  .lightbox img {
    max-width: 88vw;
    max-height: 72vh;
  }
  .lightbox-bar {
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
  .code-ticket {
    transform: translateX(-50%) rotate(3deg);
  }
  .playground:hover .code-ticket {
    transform: translateX(-50%) rotate(3deg);
  }
  .ribbon-track {
    transform: none;
  }
  .route-line::before {
    left: 45%;
    opacity: 1;
  }
  .wifi-symbol span {
    opacity: 1;
  }
  .scan-line {
    top: 40px;
  }
}
/* Keep the export badge outside the ticket's readable label. */
.note-bottom {
  left: 8px;
  max-width: 118px;
  white-space: normal;
  font-size: 8px;
  line-height: 1.7;
  padding: 11px 12px;
  gap: 8px;
}
@media (max-width: 1100px) {
  .note-bottom {
    display: none;
  }
}
@media (max-width: 1100px) {
  .code-ticket {
    top: 70px;
  }
}
@media (max-width: 850px) {
  .code-ticket {
    top: 70px;
    width: 285px;
  }
}
@media (max-width: 540px) {
  .code-ticket {
    top: 80px;
    width: 235px;
  }
}

body.dialog-open {
  overflow: hidden;
}
.motion-toggle {
  color: #98a3b8;
  background: transparent;
  border: 1px solid #ffffff18;
  border-radius: 5px;
  padding: 5px 9px;
  font-size: 8px;
}
.motion-toggle:hover {
  color: var(--amber);
}
.motion-toggle:disabled {
  cursor: default;
  opacity: 0.65;
}
/* Dynamic Links: one stable code, an explicitly edited destination, then a scan. */
.dynamic-section {
  padding-top: 95px;
}
.dynamic-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 40px;
}
.dynamic-heading h2 em {
  color: var(--amber);
}
.dynamic-heading > p {
  font-size: 13px;
  color: #b5bfd1;
  line-height: 1.95;
  max-width: 440px;
  padding-bottom: 4px;
}
.dynamic-demo {
  background: linear-gradient(135deg, #192641, #101824 72%);
  border: 1px solid #7b92c62e;
  border-radius: 24px;
  padding: 35px 38px;
  box-shadow: 0 35px 70px #0003;
  position: relative;
  overflow: hidden;
}
.dynamic-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.dynamic-toolbar h3 {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.035em;
  margin-top: 8px;
}
.example-label {
  color: #8595b1;
  font-size: 9px;
  border: 1px solid #ffffff16;
  border-radius: 20px;
  padding: 6px 11px;
  white-space: nowrap;
}
.destination-editor {
  border-top: 1px solid #ffffff10;
  border-bottom: 1px solid #ffffff10;
  padding: 22px 0;
}
.destination-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.destination-options button {
  background: #ffffff05;
  color: #aebbd2;
  font-size: 10px;
  border: 1px solid #ffffff15;
  padding: 10px 15px;
  border-radius: 7px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.destination-options button[aria-pressed="true"] {
  background: #8198ed19;
  border-color: #8099ed8c;
  color: #f4f2ec;
}
.destination-options button:hover {
  border-color: var(--amber);
}
.destination-options button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.destination-field {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #080e1b88;
  border: 1px solid #ffffff10;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 10px;
}
.destination-field > span:first-child {
  color: #8290aa;
  font-size: 9px;
}
.destination-field code {
  font:
    12px/1.7 Poppins,
    sans-serif;
  color: #d9e1f3;
  overflow-wrap: anywhere;
}
.destination-field > span:last-child {
  margin-left: auto;
  color: #a7c5b7;
  font-size: 9px;
  white-space: nowrap;
}
.dynamic-flow {
  display: grid;
  grid-template-columns: minmax(205px, 0.8fr) 115px minmax(320px, 1.3fr);
  align-items: center;
  gap: 22px;
  padding: 35px 8px 30px;
}
.print-station {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.dynamic-paper {
  width: 220px;
  max-width: 100%;
  padding: 15px 16px;
  background: #f3f0e6;
  color: #203444;
  border-radius: 13px;
  box-shadow: 0 18px 35px #0005;
  transform: rotate(-3deg);
  position: relative;
}
.paper-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #20344420;
  padding-bottom: 11px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.paper-top > span:last-child {
  font-size: 6px;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
.fixed-qr-wrap {
  position: relative;
}
.dynamic-fixed-code {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  color: #203444;
}
.dynamic-scan-beam {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 3px;
  background: #48789f;
  box-shadow: 0 0 18px #48789f70;
  opacity: 0;
  top: 12%;
  pointer-events: none;
}
.paper-bottom {
  border-top: 1px solid #20344420;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  font-size: 10px;
  line-height: 1.45;
  font-weight: 700;
}
.paper-bottom > span:last-child {
  font-size: 25px;
}
.unchanged-badge {
  font-size: 9px;
  color: #c2cfdf;
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 5px;
}
.unchanged-badge > span {
  color: #aac5b2;
}
.simulate-scan.button {
  padding: 12px 20px;
  font-size: 10px;
  gap: 9px;
  margin-top: 3px;
  min-width: 154px;
  min-height: 45px;
}
.simulate-scan:disabled {
  cursor: wait;
  transform: none;
  box-shadow: none;
}
.dynamic-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: start;
  margin-top: 141px;
  gap: 7px;
}
.bridge-node {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid #8b9edd55;
  border-radius: 10px;
  background: #223151;
  color: #b5c7ff;
  font-size: 23px;
  flex-shrink: 0;
}
.bridge-line {
  height: 1px;
  width: 27px;
  background: #829bd955;
  position: relative;
}
.bridge-line i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 13px #ffb44a66;
}
.dynamic-bridge small {
  position: absolute;
  top: 53px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6px;
  letter-spacing: 0.13em;
  color: #7c8dad;
  white-space: nowrap;
}
.destination-browser {
  align-self: center;
  border: 1px solid #ffffff1b;
  border-radius: 13px;
  overflow: hidden;
  background: #131c2b;
  box-shadow: 0 17px 35px #0003;
}
.destination-browser-bar {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 43px;
  padding: 12px 14px;
  background: #0c1320;
  font-size: 8px;
  color: #99a9c4;
}
.destination-browser-bar > span:last-child {
  margin-left: auto;
  font-size: 17px;
}
.browser-lights {
  display: flex;
  gap: 4px;
}
.browser-lights i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #586984;
}
.browser-lights i:first-child {
  background: #c88e77;
}
.browser-lights i:nth-child(2) {
  background: #c3ac7e;
}
.browser-lights i:last-child {
  background: #88a797;
}
#scanned-url {
  overflow-wrap: anywhere;
}
.destination-page {
  --page-bg: #e5eadb;
  --page-ink: #344e3c;
  --plate: #bccbae;
  position: relative;
  background: var(--page-bg);
  color: var(--page-ink);
  min-height: 330px;
  transition:
    background 0.25s,
    color 0.25s;
}
.destination-page[data-result-theme="autumn"] {
  --page-bg: #eddfcf;
  --page-ink: #6a422d;
  --plate: #d7b28e;
}
.destination-page[data-result-theme="holiday"] {
  --page-bg: #e9e1ed;
  --page-ink: #563b69;
  --plate: #c9b6d2;
}
.destination-result {
  padding: 25px 28px 28px;
  min-height: 330px;
}
.destination-result[hidden],
.destination-waiting[hidden] {
  display: none;
}
.destination-eyebrow {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.destination-result h4 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.055em;
  margin: 18px 0 12px;
}
.destination-result > p:not(.destination-eyebrow) {
  font-size: 10px;
  opacity: 0.75;
}
.destination-link-label {
  display: inline-flex;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  padding: 7px 0;
  font-size: 8px;
  margin-top: 10px;
}
.season-art {
  height: 65px;
  position: relative;
  width: 115px;
  margin-top: 16px;
}
.season-art span {
  display: block;
  width: 61px;
  height: 61px;
  border: 1px solid var(--page-ink);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1px;
  opacity: 0.35;
}
.season-art i {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--plate);
  position: absolute;
  left: 9px;
  top: 10px;
  box-shadow: inset 0 0 0 1px #0000000a;
}
.season-art b {
  display: block;
  width: 19px;
  height: 38px;
  border-radius: 70% 5% 70% 5%;
  background: var(--page-ink);
  opacity: 0.7;
  position: absolute;
  left: 62px;
  top: 24px;
  transform: rotate(27deg);
}
.destination-waiting {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
  color: #b9c6dd;
  background: #162139;
}
.destination-waiting > span {
  color: var(--amber);
  font-size: 42px;
  margin-bottom: 20px;
}
.destination-waiting h4 {
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.destination-waiting p {
  font-size: 10px;
  max-width: 235px;
  line-height: 1.8;
  color: #8e9fbd;
}
.scan-result-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  min-height: 43px;
  font-size: 8px;
  color: #99acc9;
}
.result-dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #9dbfa9;
}
.dynamic-demo[data-awaiting="true"] .result-dot {
  background: var(--amber);
}
.dynamic-bottom {
  border-top: 1px solid #ffffff12;
  padding-top: 23px;
}
.dynamic-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #a4b4cf;
  font-size: 9px;
}
.dynamic-steps li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.dynamic-steps li > span {
  font-size: 8px;
  color: var(--amber);
  border: 1px solid #ffffff18;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.dynamic-bottom > p {
  font-size: 9px;
  margin-top: 18px;
  color: #8496b4;
  min-height: 18px;
}
.dynamic-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 30px;
}
.dynamic-benefits p {
  font-size: 11px;
  line-height: 1.9;
  color: #96a2b8;
}
.dynamic-benefits strong {
  display: block;
  color: #e8ebf2;
  font-size: 12px;
  margin-bottom: 6px;
}
.dynamic-footnote {
  font-size: 8px;
  color: #707f96;
  max-width: 740px;
  line-height: 1.9;
  margin-top: 22px;
}
.dynamic-demo.is-scanning .dynamic-scan-beam {
  animation: dynamic-scan 0.75s ease-in-out both;
}
.dynamic-demo.is-scanning .bridge-line.first i {
  animation: dynamic-travel 0.4s 0.4s ease both;
}
.dynamic-demo.is-scanning .bridge-line.last i {
  animation: dynamic-travel 0.4s 0.7s ease both;
}
.dynamic-demo.just-scanned .destination-result {
  animation: destination-arrive 0.4s ease both;
}
.dynamic-demo.is-scanning .bridge-node {
  border-color: var(--amber);
  color: var(--amber);
}
.analytics-card {
  background: #1a2543;
}
.analytics-illustration {
  display: flex;
  align-items: flex-end;
  height: 82px;
  gap: 11px;
  width: 210px;
  margin: 28px 0 26px;
}
.analytics-illustration i {
  flex: 1;
  background: #7895d7;
  border-radius: 3px 3px 0 0;
  height: 35%;
  transform-origin: bottom;
}
.analytics-illustration i:nth-child(2) {
  height: 52%;
}
.analytics-illustration i:nth-child(3) {
  height: 44%;
}
.analytics-illustration i:nth-child(4) {
  height: 68%;
}
.analytics-illustration i:nth-child(5) {
  height: 57%;
}
.analytics-illustration i:nth-child(6) {
  height: 85%;
}
.analytics-illustration i:nth-child(7) {
  height: 100%;
  background: var(--amber);
}
.analytics-card .text-link {
  margin-top: 21px;
  font-size: 9px;
}
/* Gallery: a controlled carousel; images open only in the modal. */
.screenshot-carousel {
  max-width: 1100px;
  margin: 0 auto;
}
.carousel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 18px;
  font-size: 8px;
  letter-spacing: 0.13em;
  color: #8f9bb2;
}
.carousel-arrows {
  display: flex;
  gap: 9px;
}
.carousel-arrows button {
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff24;
  border-radius: 50%;
  background: #ffffff04;
  color: #d8dfed;
  font-size: 20px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.carousel-arrows button:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: #ffb44a09;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 16px;
  touch-action: pan-y;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  align-items: stretch;
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  padding: 0 12px;
}
.slide-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid #ffffff18;
  border-radius: 15px;
  overflow: hidden;
  background: #0e1220;
  position: relative;
  user-select: none;
}
.slide-open img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.enlarge-hint {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 9px 13px;
  background: #101725dd;
  color: #e5eafa;
  border: 1px solid #ffffff25;
  border-radius: 7px;
  font-size: 9px;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.enlarge-hint > span {
  font-size: 17px;
}
.slide-open:hover .enlarge-hint,
.slide-open:focus-visible .enlarge-hint {
  opacity: 1;
  transform: none;
}
.carousel-slide figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 23px 4px 19px;
  min-height: 92px;
}
.carousel-slide figcaption small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #8090ad;
  margin-bottom: 8px;
}
.carousel-slide figcaption strong {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.slide-counter {
  font-size: 10px;
  color: #7f8da5;
  white-space: nowrap;
}
.carousel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 3px 8px 0;
  border-top: 1px solid #ffffff12;
}
.carousel-bottom > p {
  font-size: 9px;
  color: #7989a5;
}
.carousel-dots {
  display: flex;
  gap: 0;
}
.carousel-dots button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 44px;
  background: transparent;
  padding: 0;
}
.carousel-dots button span {
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: #49556b;
  transition:
    width 0.2s,
    background 0.2s;
}
.carousel-dots button[aria-pressed="true"] span {
  width: 20px;
  background: var(--amber);
}
.carousel-dots button:hover span {
  background: #bdc9e1;
}
@keyframes dynamic-scan {
  0% {
    top: 12%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 84%;
    opacity: 0;
  }
}
@keyframes dynamic-travel {
  0% {
    left: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes destination-arrive {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1100px) {
  .dynamic-flow {
    grid-template-columns: minmax(190px, 0.8fr) 80px minmax(270px, 1.3fr);
    gap: 15px;
    padding-inline: 0;
  }
  .dynamic-demo {
    padding: 30px;
  }
  .dynamic-heading {
    gap: 40px;
  }
  .dynamic-paper {
    width: 205px;
  }
  .dynamic-bridge {
    gap: 3px;
  }
  .bridge-line {
    width: 17px;
  }
  .bridge-node {
    width: 33px;
    height: 33px;
  }
  .dynamic-bridge small {
    font-size: 5px;
  }
  .destination-result {
    padding: 23px;
  }
  .dynamic-toolbar h3 {
    font-size: 18px;
  }
}
@media (max-width: 850px) {
  .dynamic-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .dynamic-heading > p {
    font-size: 12px;
    max-width: 620px;
  }
  .dynamic-demo {
    padding: 25px;
  }
  .dynamic-flow {
    grid-template-columns: minmax(170px, 0.8fr) 58px minmax(230px, 1.1fr);
    gap: 12px;
  }
  .dynamic-paper {
    width: 185px;
  }
  .dynamic-bridge {
    margin-top: 125px;
  }
  .bridge-line {
    width: 9px;
  }
  .bridge-node {
    width: 31px;
    height: 31px;
  }
  .destination-result h4 {
    font-size: 28px;
  }
  .destination-steps {
    gap: 12px;
  }
  .dynamic-steps {
    font-size: 8px;
    gap: 12px;
  }
  .dynamic-benefits {
    gap: 20px;
  }
  .dynamic-benefits p {
    font-size: 10px;
  }
  .dynamic-benefits strong {
    font-size: 11px;
  }
  .destination-field {
    gap: 10px;
  }
  .destination-field code {
    font-size: 10px;
  }
  .dynamic-toolbar h3 {
    font-size: 16px;
  }
  .example-label {
    font-size: 7px;
  }
  .dynamic-section {
    padding-top: 65px;
  }
}
@media (max-width: 640px) {
  .dynamic-flow {
    grid-template-columns: 1fr;
    padding-top: 28px;
    gap: 18px;
  }
  .dynamic-toolbar {
    align-items: flex-start;
    gap: 15px;
  }
  .dynamic-toolbar h3 {
    font-size: 17px;
  }
  .example-label {
    max-width: 65px;
    white-space: normal;
    line-height: 1.4;
    border-radius: 6px;
    text-align: center;
    padding: 6px;
  }
  .dynamic-paper {
    width: 207px;
  }
  .dynamic-bridge {
    width: 70px;
    height: 50px;
    margin: 2px auto 15px;
    align-self: center;
    transform: rotate(90deg);
  }
  .dynamic-bridge small {
    display: none;
  }
  .bridge-line {
    width: 15px;
  }
  .destination-browser {
    width: 100%;
    max-width: 440px;
    margin: auto;
  }
  .dynamic-steps {
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 9px;
  }
  .dynamic-bottom > p {
    font-size: 9px;
  }
  .destination-field {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 12px;
  }
  .destination-field > span:first-child {
    flex: 0 0 100%;
  }
  .destination-field code {
    font-size: 10px;
  }
  .destination-options {
    gap: 5px;
  }
  .destination-options button {
    font-size: 8px;
    padding: 9px 10px;
    flex: 1;
  }
  .destination-field > span:last-child {
    font-size: 8px;
  }
  .dynamic-benefits {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 24px;
  }
  .dynamic-benefits strong {
    display: inline;
    font-size: 11px;
    margin-right: 3px;
  }
  .dynamic-demo {
    padding: 23px 18px;
    border-radius: 17px;
  }
  .dynamic-heading h2 {
    font-size: 37px;
  }
  .dynamic-toolbar .mini-index {
    font-size: 7px;
  }
  .dynamic-bottom {
    padding-top: 20px;
  }
  .carousel-slide {
    padding-inline: 0;
  }
  .carousel-topline {
    padding-inline: 0;
  }
  .carousel-slide figcaption {
    padding: 18px 2px;
    min-height: 90px;
  }
  .carousel-slide figcaption strong {
    font-size: 15px;
    line-height: 1.45;
    display: block;
  }
  .carousel-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-inline: 0;
  }
  .carousel-bottom > p {
    font-size: 8px;
    margin-top: 0;
  }
  .enlarge-hint {
    opacity: 1;
    transform: none;
    font-size: 7px;
    padding: 6px 9px;
    bottom: 10px;
    right: 10px;
  }
  .enlarge-hint > span {
    font-size: 12px;
  }
  .carousel-arrows button {
    width: 42px;
    height: 42px;
  }
  .carousel-slide figcaption small {
    font-size: 7px;
  }
  .dynamic-footnote {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }
  .dynamic-demo.is-scanning .dynamic-scan-beam,
  .dynamic-demo.is-scanning .bridge-line i {
    animation: none;
    opacity: 0;
  }
  .dynamic-demo.just-scanned .destination-result {
    animation: none;
  }
  .enlarge-hint {
    transition: none;
  }
}
.motion-paused .dynamic-scan-beam,
.motion-paused .bridge-line i,
.motion-paused .destination-result {
  animation: none !important;
}

/* The story plays in place; its printed QR never changes. */
.story-toggle {
  border: 1px solid #ffffff30;
  background: transparent;
  color: var(--muted);
  border-radius: 100px;
  padding: 10px 15px;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
}
.story-toggle:hover {
  color: var(--text);
  border-color: #f5bd64;
}
.editor-label {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.editor-label span {
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.65;
}
.destination-field {
  transition:
    background 0.45s,
    box-shadow 0.45s;
}
.is-editing .destination-field {
  background: #3b3024;
  box-shadow:
    0 0 0 1px #f5bd6480,
    0 0 30px #f5bd6410;
}
.scan-caption {
  min-height: 24px;
  color: #b6bfd4;
  font-size: 11px;
  text-align: center;
}
.dynamic-steps li {
  opacity: 0.45;
  transition: opacity 0.3s;
}
.dynamic-steps li.is-current {
  opacity: 1;
}
.dynamic-steps li.is-current > span {
  border-color: #f5bd64;
  color: #f5bd64;
}
.story-stopped *,
.story-stopped *::before,
.story-stopped *::after {
  animation-play-state: paused !important;
}
@media (max-width: 640px) {
  .story-toggle {
    font-size: 9px;
    padding: 8px 10px;
  }
  .dynamic-toolbar {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  .destination-field,
  .dynamic-steps li {
    transition: none;
  }
}
