:root {
  --bg: #050504;
  --ink: #f5f2e7;
  --muted: rgba(245, 242, 231, 0.62);
  --dim: rgba(245, 242, 231, 0.32);
  --line: rgba(245, 242, 231, 0.14);
  --yellow: #fff06a;
  --black: #090908;
  --card: #0d0d0b;
  --white: #f6f3e8;
  --danger: #dfff2b;
  --max: 430px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 240, 106, 0.12), transparent 34%),
    radial-gradient(circle at 95% 38%, rgba(223, 255, 43, 0.08), transparent 26%),
    var(--bg);
  color: var(--ink);
  font-family:
    "Arial Black",
    "Impact",
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 240, 106, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 240, 106, 0.035) 1px, transparent 1px);
  background-size: 22px 22px, 22px 22px, 88px 88px, 88px 88px;
  mask-image: linear-gradient(to bottom, #000 0 80%, transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

button,
.work-tile,
.video-card,
.video-feature,
.mobile-dock a {
  position: relative;
  overflow: hidden;
}

.ui-ripple {
  position: absolute;
  z-index: 4;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 240, 106, 0.34);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  animation: ripple 0.62s ease-out forwards;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: screen;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scanline {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.12;
  background: repeating-linear-gradient(to bottom, transparent 0 4px, rgba(255, 255, 255, 0.08) 5px);
  animation: scan 7s linear infinite;
}

.cursor-dot {
  position: fixed;
  z-index: 120;
  width: 18px;
  height: 18px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

.cursor-dot.is-active {
  width: 46px;
  height: 46px;
  border-color: var(--ink);
  mix-blend-mode: difference;
}

.site {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 14px 16px calc(82px + var(--safe-bottom));
}

@media (min-width: 760px) {
  .site {
    width: min(calc(100% - 48px), 1180px);
    margin-block: 22px;
    padding: 20px 24px 42px;
    border: 1px solid var(--line);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.56);
  }
}

.panel {
  position: relative;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 4px 0 16px;
  background: linear-gradient(to bottom, rgba(5, 5, 4, 0.95), rgba(5, 5, 4, 0));
}

.nav-logo {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.nav-logo span {
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.sound {
  grid-column: 1 / -1;
  justify-self: end;
  display: none;
  gap: 6px;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--dim);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sound span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dim);
}

.sound.is-on {
  color: var(--yellow);
  border-color: rgba(255, 240, 106, 0.55);
}

.sound.is-on span {
  background: var(--yellow);
  box-shadow: 0 0 16px var(--yellow);
}

.hero {
  display: grid;
  gap: 18px;
  min-height: calc(100dvh - 82px);
  padding-top: 12px;
  align-content: start;
}

.hero-hand {
  position: relative;
  z-index: 2;
  margin: 0 0 2px;
  color: var(--yellow);
  font-family: "KaiTi", "STKaiti", cursive;
  font-size: clamp(20px, 6.8vw, 30px);
  font-weight: 900;
  line-height: 1;
  text-align: left;
  text-shadow: 0 0 18px rgba(255, 240, 106, 0.24);
  transform: rotate(-2deg);
}

.title-wrap {
  margin-inline: -3px;
}

.mega-title {
  position: relative;
  margin: 0;
  font-size: clamp(54px, 17vw, 76px);
  font-style: italic;
  font-weight: 1000;
  line-height: 0.82;
  letter-spacing: -0.095em;
  text-transform: uppercase;
  white-space: nowrap;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.08));
}

.mega-title.indent {
  margin-left: 2px;
}

.mega-title::before,
.mega-title::after {
  position: absolute;
  inset: 0;
  content: attr(data-scramble);
  opacity: 0;
}

.mega-title.glitch::before {
  opacity: 0.5;
  color: var(--yellow);
  transform: translate(2px, -1px);
  clip-path: inset(0 0 58% 0);
}

.mega-title.glitch::after {
  opacity: 0.45;
  color: #8ff900;
  transform: translate(-2px, 1px);
  clip-path: inset(58% 0 0 0);
}

.hero-info {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 8px 12px;
  width: min(100%, 350px);
  margin: 18px 0 0;
  align-items: center;
}

.hero-info p {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 1000;
  line-height: 1.18;
  text-transform: uppercase;
}

.hero-info p:last-child {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.55;
}

.hero-info span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.action-btn {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2px;
  min-height: 54px;
  overflow: hidden;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  transition:
    transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.action-btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.28) 45%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.action-btn b {
  font-size: 12px;
  font-style: italic;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.04em;
}

.action-btn small {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.action-btn.primary {
  border-color: rgba(255, 240, 106, 0.78);
  background: var(--yellow);
  color: var(--black);
  box-shadow: 5px 5px 0 rgba(255, 240, 106, 0.18);
}

.action-btn.primary small {
  color: rgba(0, 0, 0, 0.62);
}

.action-btn.ghost {
  color: var(--ink);
}

.action-btn:hover,
.action-btn:active {
  transform: translateY(-3px);
  border-color: rgba(255, 240, 106, 0.85);
  box-shadow: 7px 7px 0 rgba(255, 240, 106, 0.13);
}

.action-btn:hover::before,
.action-btn:active::before {
  transform: translateX(120%);
}

.hero-device {
  position: relative;
  justify-self: center;
  width: min(220px, 62vw);
  margin-top: 2px;
}

.device-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  padding: 10px;
  border: 1px solid rgba(255, 240, 106, 0.34);
  border-radius: 28px;
  background:
    linear-gradient(#090908, #090908) padding-box,
    linear-gradient(135deg, rgba(255, 240, 106, 0.6), rgba(255, 255, 255, 0.08), rgba(255, 240, 106, 0.2)) border-box;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.58),
    0 0 60px rgba(255, 240, 106, 0.1);
}

.device-screen::before {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 3;
  width: 68px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transform: translateX(-50%);
}

.device-video {
  position: relative;
  display: grid;
  height: calc(100% - 76px);
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 240, 106, 0.26), transparent 28%),
    radial-gradient(circle at 60% 58%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(155deg, #030303, #101722 50%, #050505);
}

.device-video video,
.device-video img,
.video-screen video,
.video-screen img,
.mini-video video,
.mini-video img,
.tile-media video,
.tile-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.device-video video,
.device-video img {
  opacity: 0.76;
}

.device-video::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.38;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.22) 47%, transparent 52%),
    repeating-linear-gradient(to bottom, transparent 0 10px, rgba(255, 255, 255, 0.05) 11px);
  animation: adLight 3.8s ease-in-out infinite;
}

.device-video span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 7px;
  background: var(--yellow);
  color: var(--black);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.device-caption {
  display: grid;
  gap: 5px;
  padding: 12px 4px 0;
}

.device-caption strong {
  color: var(--yellow);
  font-size: 16px;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.device-caption p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.35;
}

.scroll-cue {
  position: absolute;
  bottom: 4px;
  left: 50%;
  display: grid;
  gap: 10px;
  justify-items: center;
  background: none;
  color: var(--dim);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 20px;
  background: var(--yellow);
  animation: down 1.2s ease-in-out infinite;
}

.section-grid {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  align-items: center;
}

.polaroid {
  margin: 0;
  padding: 7px 7px 10px;
  background: var(--white);
  color: var(--black);
  transform: rotate(-1.8deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.38);
}

.portrait {
  position: relative;
  display: grid;
  height: 142px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, #cfc8b8, transparent 21%),
    linear-gradient(145deg, #efeadc, #a9a091);
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  font-weight: 1000;
  line-height: 1.1;
  text-align: center;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.polaroid figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 9px;
}

.polaroid strong {
  font-family: "Brush Script MT", cursive;
  font-size: 13px;
}

.polaroid em {
  padding: 4px 6px;
  border: 1px solid var(--black);
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}

.label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px 3px;
  background: var(--yellow);
  color: var(--black);
  font-size: clamp(22px, 7.6vw, 32px);
  font-style: italic;
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: -0.08em;
  transform: rotate(-1deg);
}

.lead {
  margin: 0 0 13px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.lead strong {
  color: var(--yellow);
}

.info-list {
  display: grid;
  gap: 10px;
}

.info-list article {
  position: relative;
  padding-left: 14px;
  border-left: 2px solid var(--yellow);
}

.info-list span {
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
}

.info-list h3 {
  margin: 2px 0 5px;
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: -0.08em;
}

.info-list p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.tag-row span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--dim);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 900;
}

.system-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin-block: 48px;
  padding: 14px 13px;
  border: 1px solid var(--line);
  background: #11110f;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.system-card small {
  color: var(--dim);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.system-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  line-height: 1.45;
}

.contact-lines {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.contact-lines a {
  width: fit-content;
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.system-card > p {
  grid-column: 1 / -1;
  justify-self: end;
}

.cta {
  background: none;
  color: var(--ink);
  font-size: 17px;
  font-style: italic;
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-align: right;
}

.strategy {
  margin: 0 0 48px;
}

.section-head.compact {
  margin-bottom: 12px;
}

.workflow-grid {
  display: grid;
  gap: 8px;
}

.workflow-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  min-height: 86px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 240, 106, 0.06), transparent 42%),
    #090908;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.workflow-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 30%, rgba(255, 240, 106, 0.18) 48%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.workflow-card span {
  grid-row: 1 / span 2;
  color: var(--yellow);
  font-size: 22px;
  font-style: italic;
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.workflow-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.05em;
}

.workflow-card p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
}

.workflow-card:hover,
.workflow-card:active {
  border-color: rgba(255, 240, 106, 0.62);
  background:
    linear-gradient(90deg, rgba(255, 240, 106, 0.11), transparent 48%),
    #0d0d0b;
  transform: translateY(-3px);
}

.workflow-card:hover::before,
.workflow-card:active::before {
  transform: translateX(120%);
}

.offers {
  margin: 0 0 48px;
}

.offer-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 10px;
}

.offer-btn {
  min-height: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.offer-btn.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.offer-btn:hover,
.offer-btn:active {
  transform: translateY(-2px);
}

.offer-panel {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 240, 106, 0.26);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 240, 106, 0.13), transparent 28%),
    #090908;
}

.offer-panel.is-changing {
  animation: panelSwitch 0.32s ease;
}

.offer-index {
  display: grid;
  min-height: 54px;
  place-items: center;
  background: var(--yellow);
  color: var(--black);
  font-size: 26px;
  font-style: italic;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.08em;
}

.offer-kicker {
  margin: 0 0 4px;
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-panel h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.06em;
}

.offer-panel p:not(.offer-kicker) {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.58;
}

.offer-panel ul {
  display: grid;
  gap: 5px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.offer-panel li {
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.offer-panel li::before {
  margin-right: 6px;
  color: var(--yellow);
  content: "■";
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: end;
  margin-bottom: 18px;
}

.section-head span {
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section-head h2 {
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: -0.09em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 10px;
  line-height: 1.55;
}

.work-tabs {
  position: sticky;
  top: 50px;
  z-index: 30;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  margin: 0 -16px 14px;
  padding: 6px 16px 10px;
  background: linear-gradient(to bottom, rgba(5, 5, 4, 0.92), rgba(5, 5, 4, 0));
  scrollbar-width: none;
}

.work-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.tab-btn.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.tab-btn:active,
.tab-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 240, 106, 0.72);
}

.work-tile.is-hidden,
.video-card.is-hidden,
.video-feature.is-hidden {
  display: none;
}

.work-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 0 0 14px;
}

.work-proof article {
  min-height: 62px;
  padding: 9px 7px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 240, 106, 0.08), transparent),
    #080807;
}

.work-proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 17px;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.06em;
}

.work-proof span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 7.5px;
  font-weight: 800;
  line-height: 1.25;
}

.bar-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 17px 0 9px;
  padding: 10px 9px 8px;
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.45);
}

.bar-title.yellow {
  background: var(--yellow);
  color: var(--black);
  transform: rotate(-0.8deg);
}

.bar-title.white {
  background: var(--white);
  color: var(--black);
  transform: rotate(0.8deg);
}

.bar-title strong {
  font-size: 18px;
  font-style: italic;
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.bar-title em {
  color: rgba(0, 0, 0, 0.55);
  font-family: Arial, sans-serif;
  font-size: 6.5px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
}

.image-grid,
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.video-grid {
  display: flex;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-grid::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 44%;
  scroll-snap-align: start;
}

.video-card.horizontal-card {
  flex-basis: 72%;
}

.video-card.horizontal-card .mini-video {
  aspect-ratio: 16 / 9;
}

.work-tile,
.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #060606;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
}

.work-tile:hover,
.video-card:hover,
.work-tile:active,
.video-card:active {
  border-color: rgba(255, 240, 106, 0.65);
  filter: brightness(1.12);
  transform: translateY(-5px) rotate(-0.8deg);
}

.tile-media {
  position: relative;
  display: grid;
  height: 132px;
  place-items: center;
  overflow: hidden;
}

.tile-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 36%),
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.26), transparent 32%);
}

.tile-media::after {
  position: relative;
  z-index: 2;
  content: "";
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.7));
}

.tile-media.real-image,
.tile-media.real-video,
.mini-video.real-video {
  background: #050505;
}

.tile-media.real-image {
  background-image:
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.52)),
    var(--bg-img);
  background-position: center;
  background-size: cover;
}

.tile-media.real-image::after,
.tile-media.real-video::after,
.mini-video.real-video::before {
  display: none;
}

.tile-media.real-video::before,
.mini-video.real-video::after {
  z-index: 2;
}

.tile-media.earbud {
  background:
    radial-gradient(circle at 40% 30%, #e8e8e8, transparent 18%),
    linear-gradient(145deg, #0f1116, #6f7374 48%, #050506);
}

.tile-media.earbud::after {
  width: 82px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(145deg, #f8f8f8, #707070);
  transform: rotate(-18deg);
  box-shadow: 40px 12px 0 -8px #cfcfcf;
}

.tile-media.silk {
  background:
    radial-gradient(circle at 80% 10%, #fff, transparent 18%),
    linear-gradient(145deg, #d9d9d9, #fbfbfb 54%, #777);
}

.tile-media.silk::after {
  width: 58px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(145deg, #e5e5e5, #111);
  transform: rotate(22deg);
}

.tile-media.carbon {
  background:
    repeating-linear-gradient(155deg, #0a0d11 0 8px, #222630 8px 16px),
    #050505;
}

.tile-media.carbon::after {
  width: 90px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fafafa, #333);
  transform: rotate(13deg);
  box-shadow: -34px 20px 0 -18px #c9c9c9;
}

.tile-media.black {
  background: radial-gradient(circle at 54% 42%, #525862, #050505 58%);
}

.tile-media.black::after {
  width: 116px;
  height: 76px;
  border-radius: 999px;
  background: linear-gradient(135deg, #030303, #383d44 55%, #000);
  transform: rotate(-28deg);
}

.tile-media.white {
  background: radial-gradient(circle at 45% 42%, #fff, #d5d5d5 38%, #777 68%);
}

.tile-media.white::after {
  width: 62px;
  height: 96px;
  border-radius: 20px;
  background: linear-gradient(145deg, #111, #7a7a7a);
  transform: rotate(-12deg);
}

.tile-media.battery {
  background: linear-gradient(135deg, #050506, #eef3ff 52%, #111);
}

.tile-media.battery::after {
  width: 72px;
  height: 112px;
  border-radius: 20px;
  background: linear-gradient(145deg, #191a1d, #8a8d91);
  transform: rotate(-12deg);
}

.work-tile h3,
.video-card h3,
.video-feature h3 {
  margin: 9px 8px 4px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: -0.04em;
}

.work-tile p,
.video-card p {
  margin: 0 8px 10px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 7.5px;
  line-height: 1.45;
}

.video-feature {
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #050505;
  cursor: pointer;
}

.video-screen {
  position: relative;
  width: min(100%, 230px);
  aspect-ratio: 9 / 16;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 45% 20%, rgba(255, 255, 255, 0.15), transparent 21%),
    radial-gradient(circle at 55% 52%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(155deg, #010101, #111721 42%, #020202);
}

.video-poster,
.poster-card {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 240, 106, 0.18), transparent 26%),
    linear-gradient(145deg, #080808, #151b22 54%, #020202);
}

.video-poster::before,
.poster-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.46;
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(255, 255, 255, 0.16) 44%, transparent 52%),
    repeating-linear-gradient(to bottom, transparent 0 10px, rgba(255, 255, 255, 0.04) 11px);
}

.video-poster span,
.poster-card span,
.video-thumb span {
  position: relative;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(255, 240, 106, 0.42);
  background: rgba(0, 0, 0, 0.36);
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-align: center;
}

.poster-card.horizontal {
  background:
    radial-gradient(circle at 65% 30%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(110deg, #050505, #1d2228 48%, #080808);
}

.poster-card.vertical {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 240, 106, 0.16), transparent 24%),
    linear-gradient(155deg, #050505, #111823 50%, #020202);
}

.video-thumb {
  position: relative;
  background: #050505;
}

.video-thumb::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at 50% 35%, transparent, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.video-thumb span {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 8px;
}

.liquid {
  position: absolute;
  inset: 22px 28px 48px;
  opacity: 0.8;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(194, 212, 219, 0.24), transparent 30%),
    radial-gradient(ellipse at 82% 40%, rgba(194, 212, 219, 0.2), transparent 34%);
  filter: blur(1px);
  animation: liquid 5s ease-in-out infinite;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  animation: pulseRing 1.8s ease-in-out infinite;
}

.video-play::before {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.video-play:hover,
.video-play:active {
  border-color: var(--yellow);
  box-shadow: 0 0 36px rgba(255, 240, 106, 0.26);
}

.video-control {
  position: absolute;
  right: 10px;
  bottom: 12px;
  left: 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 900;
}

.video-control i {
  height: 2px;
  background: linear-gradient(90deg, var(--ink) 0 38%, rgba(255, 255, 255, 0.24) 38%);
}

.mini-video {
  position: relative;
  aspect-ratio: 9 / 16;
  height: auto;
  overflow: hidden;
  background: #080808;
}

.mini-video::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.72;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent);
}

.mini-video::after {
  position: absolute;
  right: 8px;
  bottom: 7px;
  left: 8px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--ink) 0 24%, rgba(255, 255, 255, 0.2) 24%);
}

.mini-video.cave {
  background: linear-gradient(145deg, #010101, #101923, #050505);
}

.mini-video.robot {
  background:
    linear-gradient(25deg, transparent 49%, #8a1111 50%, transparent 52%),
    radial-gradient(circle at 52% 38%, #ccd4e4, transparent 18%),
    #06080d;
}

.mini-video.corridor {
  background:
    repeating-linear-gradient(90deg, #0d1118 0 18px, #050505 18px 36px),
    #090909;
}

.mini-video.object {
  background:
    radial-gradient(circle at 50% 48%, #757a7e, transparent 14%),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.1), transparent 35%),
    #050505;
}

.capability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 54px;
}

.note {
  min-height: 198px;
  padding: 13px 10px;
  color: var(--black);
  box-shadow: 0 16px 0 rgba(0, 0, 0, 0.42);
}

.yellow-note {
  background: var(--yellow);
  transform: rotate(-1.6deg);
}

.white-note {
  background: var(--white);
  transform: rotate(1.8deg);
}

.note-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.35);
}

.note h2 {
  margin: 0;
  font-size: 18px;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.note-head span {
  font-family: "Brush Script MT", cursive;
  font-size: 15px;
}

.note ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.note li {
  display: grid;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.note li strong {
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
}

.note li span {
  font-family: Arial, sans-serif;
  font-size: 7px;
  line-height: 1.35;
  opacity: 0.58;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-top: 14px;
}

.tool-grid span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 2px solid rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  font-size: 13px;
  font-style: italic;
  font-weight: 1000;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 68px;
  padding-bottom: 22px;
  color: var(--dim);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 900;
}

.footer a {
  color: var(--yellow);
}

.mobile-dock {
  position: fixed;
  right: 18px;
  bottom: calc(16px + var(--safe-bottom));
  left: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 36px), 394px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 8, 0.78);
  backdrop-filter: blur(18px);
}

.mobile-dock a {
  padding: 12px 0 11px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

.mobile-dock a:last-child {
  border-right: 0;
}

.mobile-dock a.active {
  background: var(--yellow);
  color: var(--black);
}

.mobile-dock a {
  position: relative;
  overflow: hidden;
}

.mobile-dock a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 0.42s ease;
}

.mobile-dock a:active::after {
  transform: translateX(120%);
}

.preview {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: end center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.preview.is-open {
  opacity: 1;
  pointer-events: auto;
}

.preview-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.preview-card {
  position: relative;
  width: min(100%, 394px);
  padding: 10px;
  border: 1px solid rgba(255, 240, 106, 0.4);
  background: var(--black);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(28px) rotate(1deg);
  transition: transform 0.22s ease;
}

.preview.is-open .preview-card {
  transform: translateY(0) rotate(-0.8deg);
}

.preview-card button {
  position: absolute;
  top: -14px;
  right: -10px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  font-size: 24px;
  font-weight: 900;
}

.preview-media {
  height: min(58vh, 250px);
  background:
    radial-gradient(circle at 48% 38%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(145deg, #080808, #262b31, #020202);
}

.preview-media img,
.preview-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.preview-media video {
  height: calc(100% - 34px);
}

.preview-source-link {
  display: grid;
  height: 34px;
  place-items: center;
  background: var(--yellow);
  color: var(--black);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.preview-gallery {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  background: #050505;
}

.preview-gallery figure {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  scroll-snap-align: center;
}

.preview-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preview-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.preview-card p {
  margin: 14px 0 4px;
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.preview-card h2 {
  margin: 0 0 8px;
  font-size: 27px;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.preview-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.65;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(76px + var(--safe-bottom));
  z-index: 110;
  padding: 10px 14px;
  border: 1px solid rgba(255, 240, 106, 0.45);
  background: var(--yellow);
  color: var(--black);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.tilt {
  transform-style: preserve-3d;
  transition: transform 0.18s ease;
}

@media (max-width: 374px) {
  .site {
    padding-inline: 12px;
  }

  .section-grid,
  .section-head,
  .capability {
    grid-template-columns: 1fr;
  }

  .polaroid {
    width: 160px;
    justify-self: center;
  }

  .mega-title {
    font-size: clamp(48px, 16.2vw, 62px);
  }

  .hero-device {
    width: min(190px, 58vw);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) {
  .nav {
    grid-template-columns: 1fr auto auto;
    gap: 28px;
    padding: 10px 0 22px;
  }

  .nav-logo,
  .nav-links,
  .sound {
    font-size: 11px;
  }

  .sound {
    grid-column: auto;
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 44px;
    min-height: 680px;
    padding-top: 74px;
    align-items: center;
  }

  .hero-main {
    min-width: 0;
  }

  .hero-hand {
    font-size: clamp(30px, 4vw, 54px);
  }

  .mega-title {
    font-size: clamp(104px, 12.4vw, 184px);
    line-height: 0.76;
    letter-spacing: -0.11em;
  }

  .hero-info {
    grid-template-columns: 190px 1fr;
    width: min(100%, 660px);
    margin-top: 30px;
  }

  .hero-info p {
    font-size: 18px;
  }

  .hero-info p:last-child {
    font-size: 12px;
  }

  .hero-actions {
    width: min(100%, 520px);
    margin-top: 26px;
  }

  .action-btn {
    min-height: 66px;
    padding: 14px 16px;
  }

  .action-btn b {
    font-size: 16px;
  }

  .hero-device {
    width: 320px;
    justify-self: end;
  }

  .scroll-cue {
    left: 24px;
    bottom: 28px;
    transform: none;
    justify-items: start;
    text-align: left;
  }

  .about {
    padding-top: 40px;
  }

  .section-grid {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 60px;
    max-width: 980px;
    margin: 0 auto;
  }

  .portrait {
    height: 320px;
    font-size: 20px;
  }

  .polaroid {
    padding: 12px 12px 18px;
  }

  .polaroid strong {
    font-size: 20px;
  }

  .label {
    font-size: 58px;
  }

  .lead {
    max-width: 680px;
    font-size: 18px;
  }

  .info-list {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .info-list h3 {
    font-size: 26px;
  }

  .info-list p {
    font-size: 13px;
  }

  .tag-row span {
    font-size: 10px;
    padding: 7px 10px;
  }

  .system-card {
    grid-template-columns: 1fr auto 1.1fr;
    margin: 96px auto;
    padding: 22px 24px;
    max-width: 980px;
  }

  .system-card > p {
    grid-column: auto;
    justify-self: end;
    max-width: 360px;
    font-size: 11px;
  }

  .contact-lines a {
    font-size: 12px;
  }

  .cta {
    font-size: 28px;
  }

  .section-head {
    grid-template-columns: 1fr 360px;
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: 58px;
  }

  .section-head p {
    font-size: 13px;
  }

  .strategy {
    max-width: 980px;
    margin: 0 auto 92px;
  }

  .workflow-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .workflow-card {
    grid-template-columns: 1fr;
    min-height: 190px;
    padding: 18px;
    align-content: space-between;
  }

  .workflow-card span {
    font-size: 44px;
  }

  .workflow-card h3 {
    font-size: 22px;
  }

  .workflow-card p {
    font-size: 11px;
  }

  .offers {
    max-width: 980px;
    margin: 0 auto 92px;
  }

  .offer-switch {
    display: flex;
    width: fit-content;
    gap: 10px;
    margin-bottom: 16px;
  }

  .offer-btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 10px;
  }

  .offer-panel {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 28px;
    min-height: 240px;
    padding: 26px;
  }

  .offer-index {
    min-height: 120px;
    font-size: 64px;
  }

  .offer-kicker {
    font-size: 10px;
  }

  .offer-panel h3 {
    font-size: 38px;
  }

  .offer-panel p:not(.offer-kicker) {
    max-width: 640px;
    font-size: 14px;
  }

  .offer-panel ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
  }

  .offer-panel li {
    padding: 12px;
    border: 1px solid var(--line);
    font-size: 12px;
    line-height: 1.45;
  }

  .bar-title {
    margin: 28px 0 16px;
    padding: 16px 18px 14px;
  }

  .work-proof {
    gap: 14px;
    margin-bottom: 24px;
  }

  .work-proof article {
    min-height: 96px;
    padding: 18px;
  }

  .work-proof strong {
    font-size: 30px;
  }

  .work-proof span {
    font-size: 11px;
  }

  .bar-title strong {
    font-size: 34px;
  }

  .bar-title em {
    font-size: 9px;
  }

  .image-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    overflow: visible;
    padding-bottom: 0;
  }

  .video-card {
    flex: initial;
  }

  .video-card.horizontal-card {
    grid-column: span 2;
  }

  .tile-media {
    height: 240px;
  }

  .work-tile h3,
  .video-card h3,
  .video-feature h3 {
    margin: 14px 14px 6px;
    font-size: 16px;
  }

  .work-tile p,
  .video-card p {
    margin: 0 14px 16px;
    font-size: 11px;
  }

  .video-feature {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    align-items: end;
    padding: 18px;
  }

  .video-screen {
    width: 100%;
    max-width: 330px;
    height: auto;
  }

  .video-feature h3 {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .mini-video {
    height: 164px;
  }

  .capability {
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    gap: 28px;
    margin: 110px auto 0;
  }

  .note {
    min-height: 260px;
    padding: 24px 22px;
  }

  .note h2 {
    font-size: 34px;
  }

  .note li strong {
    font-size: 12px;
  }

  .note li span {
    font-size: 10px;
  }

  .tool-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .tool-grid span {
    min-height: 64px;
    font-size: 20px;
  }

  .mobile-dock {
    display: none;
  }

  .preview {
    place-items: center;
  }

  .preview-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 20px;
    width: min(calc(100% - 64px), 880px);
    padding: 16px;
  }

  .preview-media {
    height: 470px;
    grid-row: 1 / span 4;
  }

  .preview-card p,
  .preview-card h2,
  .preview-card span {
    grid-column: 2;
  }

  .preview-card p {
    align-self: start;
    margin-top: 4px;
  }

  .preview-card h2 {
    font-size: 48px;
    align-self: start;
  }

  .preview-card span {
    font-size: 14px;
    max-width: 340px;
    align-self: start;
  }

  .footer {
    font-size: 10px;
  }
}

@media (pointer: coarse) {
  .cursor-dot {
    display: none;
  }
}

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

@keyframes scan {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(20px);
  }
}

@keyframes down {
  50% {
    transform: translateY(10px);
    opacity: 0.4;
  }
}

@keyframes liquid {
  50% {
    transform: scale(1.08) rotate(2deg);
    filter: blur(4px);
  }
}

@keyframes pulseRing {
  50% {
    box-shadow: 0 0 0 9px rgba(255, 240, 106, 0.05), 0 0 34px rgba(255, 240, 106, 0.18);
  }
}

@keyframes adLight {
  50% {
    transform: translateX(18%) skewX(-8deg);
    opacity: 0.62;
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(24);
  }
}

@keyframes panelSwitch {
  from {
    opacity: 0.55;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
