:root {
  --paper: #f7f1df;
  --paper-deep: #eee4ca;
  --paper-light: #fffdf5;
  --ink: #17213b;
  --ink-soft: #43506b;
  --line: #17213b;
  --blue: #5268ff;
  --blue-dark: #3347ca;
  --coral: #ff6f59;
  --coral-dark: #d34d3a;
  --mint: #6bd6a7;
  --mint-dark: #22855d;
  --yellow: #ffd76a;
  --purple: #9b77ed;
  --white: #ffffff;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-small: 3px 3px 0 var(--ink);
  --radius: 8px;
  --shell: 1180px;
  --font-body: "Noto Sans Thai", Tahoma, Arial, sans-serif;
  --font-myanmar: "Noto Sans Myanmar", "Myanmar Text", sans-serif;
  --font-pixel: "Press Start 2P", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(23, 33, 59, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 33, 59, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-myanmar {
  font-family: var(--font-myanmar);
  line-height: 1.8;
}

body.menu-is-open {
  overflow: hidden;
}

button,
a,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.22;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--blue-dark);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-small);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-grid {
  position: fixed;
  z-index: -3;
  inset: 0;
  pointer-events: none;
}

.page-grid::before,
.page-grid::after {
  position: absolute;
  width: 82px;
  height: 82px;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(90deg, var(--ink) 8px, transparent 8px),
    linear-gradient(var(--ink) 8px, transparent 8px);
  background-size: 16px 16px;
}

.page-grid::before {
  top: 18%;
  left: -38px;
}

.page-grid::after {
  right: -38px;
  bottom: 12%;
}

.cursor-glow {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--coral);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-20px, -20px, 0);
  transition: opacity 120ms ease;
}

.cursor-glow::before,
.cursor-glow::after {
  position: absolute;
  content: "";
  background: var(--coral);
}

.cursor-glow::before {
  top: 2px;
  left: -6px;
  width: 16px;
  height: 2px;
}

.cursor-glow::after {
  top: -6px;
  left: 2px;
  width: 2px;
  height: 16px;
}

@media (pointer: fine) {
  .cursor-glow.is-visible {
    opacity: 0.7;
  }
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section-pad {
  padding-block: 108px;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 2px solid var(--ink);
  background: rgba(247, 241, 223, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

.brand-mark span {
  display: block;
  background: var(--ink);
}

.brand-mark span:nth-child(1) {
  grid-area: 1 / 2 / 3 / 4;
}

.brand-mark span:nth-child(2) {
  grid-area: 2 / 1 / 4 / 3;
  background: var(--blue);
}

.brand-mark span:nth-child(3) {
  grid-area: 3 / 3 / 5 / 5;
  background: var(--coral);
}

.brand-mark span:nth-child(4) {
  grid-area: 2 / 2 / 4 / 4;
  border: 2px solid var(--ink);
  background: var(--yellow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: flex;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 3px 3px 0 var(--ink);
}

.language-button {
  min-height: 38px;
  padding: 7px 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.language-button + .language-button {
  border-left: 2px solid var(--ink);
}

.language-button.is-active {
  color: var(--white);
  background: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
}

.menu-close {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-close {
  display: block;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  padding-top: 82px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 58px;
  right: max(20px, calc((100vw - var(--shell)) / 2));
  width: 98px;
  height: 26px;
  border: 2px solid var(--ink);
  content: "";
  opacity: 0.6;
  background: repeating-linear-gradient(90deg, var(--mint) 0 8px, transparent 8px 16px);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: 76px;
}

.eyebrow,
.section-kicker,
.pixel-label,
.recommendation-label,
.chart-topline,
.screen-kicker {
  font-family: var(--font-pixel);
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 10px;
  font-size: 9px;
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  background: var(--mint);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--mint-dark);
  content: "";
  animation: status-pulse 1.8s steps(2, end) infinite;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: 59px;
  font-weight: 800;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 500;
}

body.is-myanmar .hero h1 {
  font-size: 52px;
  line-height: 1.35;
}

.hero-cta-row,
.spotlight-actions,
.final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  transition: transform 140ms ease, box-shadow 140ms ease, color 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 7px 7px 0 var(--ink);
}

.button-ghost {
  background: var(--paper-light);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-ghost:hover {
  color: var(--white);
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--blue);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--blue);
}

.button-replit {
  background: #f26207;
}

.button-notebook {
  color: var(--ink);
  background: var(--mint);
}

.button-gemini {
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: 4px 4px 0 var(--ink);
}

.icon-end {
  width: 18px;
  height: 18px;
  transition: transform 140ms ease;
}

.button:hover .icon-end,
.text-link:hover .icon {
  transform: translate(2px, -2px);
}

.hero-trust {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.mini-brand-row {
  display: flex;
}

.mini-brand-row span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -6px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--white);
}

.mini-brand-row span:first-child {
  margin-left: 0;
}

.mini-brand-row img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.hero-console {
  position: relative;
  max-width: 510px;
  padding: 18px 18px 24px;
  border: 3px solid var(--ink);
  background: #e9dfc4;
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(1.2deg);
}

.hero-console::before,
.hero-console::after {
  position: absolute;
  bottom: -14px;
  width: 42px;
  height: 12px;
  border: 3px solid var(--ink);
  border-top: 0;
  content: "";
  background: #cfc3a7;
}

.hero-console::before {
  left: 38px;
}

.hero-console::after {
  right: 38px;
}

.console-topbar {
  display: flex;
  height: 28px;
  align-items: center;
  gap: 6px;
}

.console-light {
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink);
}

.console-light-red {
  background: var(--coral);
}

.console-light-yellow {
  background: var(--yellow);
}

.console-light-green {
  background: var(--mint);
}

.console-label {
  margin-left: auto;
  font-family: var(--font-pixel);
  font-size: 8px;
}

.console-screen {
  position: relative;
  display: grid;
  min-height: 370px;
  overflow: hidden;
  align-items: center;
  padding: 38px 32px 68px;
  border: 3px solid var(--ink);
  background: #a6f1ce;
  grid-template-columns: 148px 1fr;
  gap: 26px;
  box-shadow: inset 0 0 0 6px #d8ffe8;
}

.screen-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(var(--ink) 2px, transparent 2px),
    linear-gradient(90deg, var(--ink) 2px, transparent 2px);
  background-size: 24px 24px;
}

.screen-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(0deg, transparent 0 5px, rgba(23, 33, 59, 0.05) 5px 6px);
}

.pixel-bot {
  position: relative;
  z-index: 1;
  width: 128px;
  height: 164px;
  animation: bot-hop 3.2s steps(2, end) infinite;
}

.bot-antenna {
  position: absolute;
  top: 0;
  left: 60px;
  width: 8px;
  height: 28px;
  background: var(--ink);
}

.bot-antenna::before {
  position: absolute;
  top: -8px;
  left: -4px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--ink);
  content: "";
  background: var(--coral);
}

.bot-head {
  position: absolute;
  top: 28px;
  left: 12px;
  display: flex;
  width: 104px;
  height: 66px;
  align-items: center;
  justify-content: space-around;
  border: 6px solid var(--ink);
  background: var(--paper-light);
  box-shadow: inset 0 -8px 0 var(--yellow);
}

.bot-head i {
  width: 18px;
  height: 18px;
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--ink);
}

.bot-body {
  position: absolute;
  top: 96px;
  left: 28px;
  width: 72px;
  height: 54px;
  border: 6px solid var(--ink);
  background: var(--blue);
}

.bot-body i {
  position: absolute;
  top: 14px;
  left: 26px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  background: var(--mint);
}

.bot-arm {
  position: absolute;
  top: 104px;
  width: 20px;
  height: 42px;
  border: 5px solid var(--ink);
  background: var(--coral);
}

.bot-arm-left {
  left: 4px;
  transform: rotate(8deg);
}

.bot-arm-right {
  right: 4px;
  transform: rotate(-8deg);
}

.screen-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen-kicker {
  width: fit-content;
  padding: 6px 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 8px;
}

.screen-copy strong {
  max-width: 220px;
  font-size: 27px;
  line-height: 1.28;
}

.screen-copy small {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.screen-meter {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-pixel);
  font-size: 7px;
}

.screen-meter > div {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}

.screen-meter i {
  height: 12px;
  border: 2px solid var(--ink);
  background: var(--blue);
}

.screen-meter i:nth-child(7),
.screen-meter i:nth-child(8) {
  background: transparent;
}

.console-controls {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 0;
}

.d-pad {
  position: relative;
  width: 68px;
  height: 68px;
}

.d-pad i {
  position: absolute;
  border: 3px solid var(--ink);
  background: var(--ink-soft);
}

.d-pad i:first-child {
  top: 22px;
  left: 0;
  width: 68px;
  height: 24px;
}

.d-pad i:last-child {
  top: 0;
  left: 22px;
  width: 24px;
  height: 68px;
}

.console-caption {
  padding: 7px 10px;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  font-family: var(--font-pixel);
  font-size: 7px;
}

.console-buttons {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  transform: rotate(-18deg);
}

.console-buttons i {
  display: block;
  width: 32px;
  height: 32px;
  border: 3px solid var(--ink);
  background: var(--coral);
  box-shadow: 3px 3px 0 var(--ink);
}

.console-buttons i:last-child {
  background: var(--blue);
}

.floating-file {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 56px;
  height: 70px;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-pixel);
  font-size: 7px;
  animation: file-float 4s steps(3, end) infinite;
}

.floating-file::before {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  border-bottom: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  content: "";
  background: var(--yellow);
}

.file-one {
  top: 72px;
  right: -42px;
  color: var(--coral-dark);
}

.file-two {
  bottom: 78px;
  left: -40px;
  color: var(--mint-dark);
  animation-delay: -1.3s;
}

.file-three {
  right: -16px;
  bottom: -34px;
  color: var(--blue-dark);
  animation-delay: -2.4s;
}

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  color: var(--white);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 48px;
  align-items: center;
  animation: ticker-move 28s linear infinite;
}

.ticker-track span {
  padding-inline: 28px;
  font-family: var(--font-pixel);
  font-size: 8px;
  letter-spacing: 0.07em;
}

.ticker-track i {
  width: 8px;
  height: 8px;
  background: var(--yellow);
}

.section-heading {
  display: flex;
  margin-bottom: 46px;
  align-items: flex-start;
  gap: 22px;
}

.section-number {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-pixel);
  font-size: 10px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 9px;
}

.section-heading h2 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 800;
}

body.is-myanmar .section-heading h2 {
  line-height: 1.45;
}

.replit-spotlight {
  background: var(--paper-light);
}

.spotlight-panel {
  display: grid;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.spotlight-main {
  padding: 42px;
}

.product-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.large-lockup {
  margin-bottom: 24px;
}

.logo-frame {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

.logo-frame img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.large-lockup .logo-frame {
  width: 76px;
  height: 76px;
}

.large-lockup .logo-frame img {
  width: 43px;
  height: 43px;
}

.replit-frame {
  background: #fff0e5;
}

.gemini-frame {
  background: #eeedff;
}

.notebook-frame {
  background: #d8ffea;
}

.pixel-label {
  display: block;
  margin-bottom: 8px;
  color: var(--coral-dark);
  font-size: 8px;
}

.product-lockup h3 {
  margin: 0;
  font-size: 28px;
}

.spotlight-intro {
  max-width: 740px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 500;
}

.capability-grid {
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--ink);
}

.capability-grid article {
  display: grid;
  min-height: 150px;
  padding: 22px;
  align-content: start;
  background: var(--paper-light);
}

.capability-grid .icon {
  margin-bottom: 16px;
  color: var(--blue-dark);
}

.capability-grid strong {
  margin-bottom: 6px;
  font-size: 16px;
}

.capability-grid span {
  color: var(--ink-soft);
  font-size: 14px;
}

.accuracy-note {
  display: flex;
  padding: 18px;
  align-items: flex-start;
  gap: 14px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.accuracy-note .icon {
  margin-top: 3px;
}

.accuracy-note p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.spotlight-actions {
  margin-top: 28px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  border-bottom: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 140ms ease;
}

.mission-board {
  padding: 34px 28px;
  border-left: 3px solid var(--ink);
  color: #d9ffe9;
  background-color: #162f31;
  background-image:
    linear-gradient(rgba(107, 214, 167, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 214, 167, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

.mission-board-head {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-pixel);
  font-size: 8px;
}

.blink-dot {
  width: 10px;
  height: 10px;
  background: var(--mint);
  animation: blink 1.1s steps(1, end) infinite;
}

.mission-board ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0;
}

.mission-board li {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: flex-start;
  gap: 16px;
}

.mission-board li::before {
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 14px;
  width: 2px;
  content: "";
  background: rgba(217, 255, 233, 0.26);
}

.mission-board li:last-child::before {
  display: none;
}

.mission-board li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid rgba(217, 255, 233, 0.5);
  background: #162f31;
  font-family: var(--font-pixel);
  font-size: 6px;
}

.mission-board li.is-complete > span,
.mission-board li.is-active > span {
  border-color: var(--mint);
  color: var(--ink);
  background: var(--mint);
}

.mission-board li.is-active > span {
  box-shadow: 0 0 0 4px rgba(107, 214, 167, 0.22);
}

.mission-board li div {
  display: flex;
  padding-top: 3px;
  flex-direction: column;
}

.mission-board li strong {
  font-size: 15px;
}

.mission-board li small {
  margin-top: 2px;
  color: rgba(217, 255, 233, 0.55);
  font-family: var(--font-pixel);
  font-size: 6px;
}

.plan-card {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid var(--mint);
  background: rgba(107, 214, 167, 0.08);
}

.plan-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--mint);
  font-family: var(--font-pixel);
  font-size: 7px;
}

.plan-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 16px;
}

.plan-card p {
  margin: 0;
  color: rgba(217, 255, 233, 0.7);
  font-size: 13px;
}

.chooser-section {
  background: var(--paper-deep);
}

.task-picker {
  display: grid;
  margin-bottom: 26px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.task-button {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 10px;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: transform 140ms ease, color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.task-button:hover {
  transform: translateY(-3px);
  box-shadow: 3px 6px 0 var(--ink);
}

.task-button.is-active {
  color: var(--white);
  background: var(--blue);
  box-shadow: 5px 5px 0 var(--ink);
}

.task-button .icon {
  width: 23px;
  height: 23px;
}

.recommendation {
  margin-bottom: 46px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--ink);
}

.recommendation-label {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--ink);
  font-size: 8px;
}

.recommendation-result {
  display: grid;
  min-height: 108px;
  align-items: center;
  padding: 20px;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
}

.small-frame {
  width: 58px;
  height: 58px;
  box-shadow: none;
}

.recommendation-result > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.recommendation-result span {
  font-size: 14px;
  font-weight: 800;
}

.recommendation-result strong {
  font-size: 20px;
}

.filter-row {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-chip {
  min-height: 44px;
  padding: 8px 13px;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.filter-chip.is-active {
  color: var(--white);
  background: var(--ink);
  box-shadow: 3px 3px 0 var(--blue);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 30px;
  flex-direction: column;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--ink);
}

.product-card[hidden] {
  display: none;
}

.product-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 66px;
  height: 10px;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  content: "";
  background: var(--card-accent, var(--blue));
}

.product-card-top {
  display: flex;
  margin-bottom: 22px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-card .product-lockup h3 {
  font-size: 24px;
}

.product-card .logo-frame {
  background: var(--card-soft, var(--paper));
}

.product-card-badge {
  padding: 6px 8px;
  border: 2px solid var(--ink);
  background: var(--card-soft, var(--yellow));
  font-family: var(--font-pixel);
  font-size: 6px;
  white-space: nowrap;
}

.product-best {
  display: grid;
  margin-bottom: 18px;
  padding: 14px 0;
  border-block: 2px dashed rgba(23, 33, 59, 0.3);
  grid-template-columns: 92px 1fr;
  gap: 12px;
}

.product-best span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.product-best strong {
  font-size: 15px;
}

.product-description {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 15px;
}

.product-tags {
  display: flex;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 7px;
}

.product-tags span {
  padding: 5px 8px;
  border: 1px solid var(--ink);
  background: var(--card-soft, var(--paper));
  font-size: 11px;
  font-weight: 800;
}

.free-strip {
  display: flex;
  margin-bottom: 16px;
  padding: 12px 14px;
  align-items: center;
  gap: 12px;
  border-left: 5px solid var(--card-accent, var(--blue));
  background: var(--paper-deep);
}

.free-strip .icon {
  color: var(--card-accent, var(--blue));
}

.free-strip div {
  display: flex;
  flex-direction: column;
}

.free-strip span {
  color: var(--ink-soft);
  font-family: var(--font-pixel);
  font-size: 6px;
}

.free-strip strong {
  font-size: 13px;
}

.feature-list {
  display: grid;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 14px;
}

.feature-list .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--mint-dark);
}

.card-limit {
  display: flex;
  margin: auto 0 20px;
  padding-top: 16px;
  align-items: flex-start;
  gap: 8px;
  border-top: 2px solid rgba(23, 33, 59, 0.14);
  color: var(--ink-soft);
  font-size: 12px;
}

.card-limit .icon {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--coral-dark);
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-actions .button {
  flex: 1;
  color: var(--white);
  background: var(--card-accent, var(--blue));
  box-shadow: 4px 4px 0 var(--ink);
}

.product-actions .text-link {
  min-width: fit-content;
}

.empty-state {
  padding: 32px;
  border: 2px dashed var(--ink);
  background: var(--paper-light);
  text-align: center;
  font-weight: 700;
}

.benchmark-section {
  color: #eafff2;
  background-color: #142a2e;
  background-image:
    linear-gradient(rgba(107, 214, 167, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 214, 167, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.benchmark-section .section-number {
  color: var(--ink);
  background: var(--mint);
}

.benchmark-section .section-kicker {
  color: var(--mint);
}

.benchmark-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
}

.benchmark-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.winner-chip {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 10px 12px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border: 2px solid var(--mint);
  color: var(--ink);
  background: var(--mint);
  box-shadow: 4px 4px 0 #071719;
  font-size: 12px;
}

.winner-chip strong {
  font-size: 12px;
}

.benchmark-copy h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 28px;
}

.benchmark-copy > p {
  margin-bottom: 24px;
  color: rgba(234, 255, 242, 0.72);
}

.benchmark-tabs {
  display: flex;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 8px;
}

.benchmark-tab {
  min-height: 40px;
  padding: 8px 12px;
  border: 2px solid var(--mint);
  color: var(--mint);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.benchmark-tab.is-active {
  color: var(--ink);
  background: var(--mint);
  box-shadow: 3px 3px 0 #071719;
}

.benchmark-copy .text-link {
  margin-top: auto;
  border-color: var(--mint);
  color: var(--mint);
}

.chart-card {
  display: flex;
  min-height: 420px;
  padding: 28px;
  flex-direction: column;
  border: 3px solid var(--mint);
  background: #0e2023;
  box-shadow: 8px 8px 0 #071719;
}

.chart-topline {
  display: flex;
  margin-bottom: 34px;
  justify-content: space-between;
  gap: 16px;
  color: rgba(234, 255, 242, 0.6);
  font-size: 7px;
}

.bar-chart {
  display: grid;
  flex: 1;
  align-content: center;
  gap: 28px;
}

.chart-row {
  display: grid;
  align-items: center;
  grid-template-columns: 130px minmax(0, 1fr) 60px;
  gap: 14px;
}

.chart-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.chart-label img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.chart-label > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.chart-label small {
  margin-top: 2px;
  color: rgba(234, 255, 242, 0.48);
  font-size: 9px;
  font-weight: 600;
}

.bar-track {
  position: relative;
  height: 24px;
  border: 2px solid rgba(234, 255, 242, 0.4);
  background: rgba(234, 255, 242, 0.04);
}

.bar-track::before,
.bar-track::after {
  position: absolute;
  z-index: 1;
  top: -2px;
  bottom: -2px;
  width: 1px;
  content: "";
  background: rgba(234, 255, 242, 0.15);
}

.bar-track::before {
  left: 33.333%;
}

.bar-track::after {
  left: 66.666%;
}

.bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--bar-color, var(--mint));
  transition: width 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bar-fill::after {
  position: absolute;
  top: 3px;
  right: 4px;
  width: 7px;
  height: 14px;
  content: "";
  background: rgba(255, 255, 255, 0.45);
}

.chart-value {
  color: var(--white);
  font-family: var(--font-pixel);
  font-size: 8px;
  text-align: right;
}

.chart-axis {
  display: flex;
  margin: 15px 60px 0 144px;
  justify-content: space-between;
  color: rgba(234, 255, 242, 0.45);
  font-family: var(--font-pixel);
  font-size: 6px;
}

.benchmark-note {
  display: flex;
  margin-top: 38px;
  padding: 18px 20px;
  align-items: flex-start;
  gap: 14px;
  border: 2px solid rgba(107, 214, 167, 0.5);
  color: rgba(234, 255, 242, 0.72);
  background: rgba(107, 214, 167, 0.05);
  font-size: 13px;
}

.benchmark-note p {
  margin: 0;
}

.notebook-section {
  background: var(--paper-light);
}

.notebook-hero {
  display: grid;
  margin-bottom: 48px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: #d8ffea;
  box-shadow: 9px 9px 0 var(--ink);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.notebook-copy {
  padding: 42px;
}

.notebook-copy .product-lockup {
  margin-bottom: 22px;
}

.notebook-copy .pixel-label {
  color: var(--mint-dark);
}

.notebook-lead {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 17px;
}

.source-flow {
  display: grid;
  margin-bottom: 28px;
  align-items: stretch;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
}

.source-flow div {
  display: flex;
  min-height: 78px;
  padding: 13px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  text-align: center;
}

.source-flow span {
  font-size: 11px;
  font-weight: 800;
}

.source-flow > i {
  position: relative;
  align-self: center;
  height: 2px;
  background: var(--ink);
}

.source-flow > i::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  content: "";
  transform: rotate(45deg);
}

.notebook-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-left: 3px solid var(--ink);
  background-color: var(--blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.notebook-stack,
.notebook-page {
  position: absolute;
  width: 260px;
  height: 340px;
  border: 3px solid var(--ink);
}

.notebook-stack-back {
  top: 84px;
  left: calc(50% - 150px);
  background: var(--coral);
  transform: rotate(-7deg);
  box-shadow: 8px 8px 0 var(--ink);
}

.notebook-stack-mid {
  top: 70px;
  left: calc(50% - 125px);
  background: var(--yellow);
  transform: rotate(6deg);
  box-shadow: 8px 8px 0 var(--ink);
}

.notebook-page {
  top: 62px;
  left: calc(50% - 130px);
  padding: 42px 28px 25px 42px;
  background: var(--paper-light);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1deg);
}

.page-holes {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 12px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.page-holes i {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  background: var(--blue);
}

.page-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 7px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-pixel);
  font-size: 6px;
}

.notebook-page strong {
  display: block;
  margin-bottom: 22px;
  font-family: var(--font-pixel);
  font-size: 16px;
  line-height: 1.7;
}

.page-lines {
  display: grid;
  gap: 10px;
}

.page-lines i {
  height: 5px;
  background: var(--paper-deep);
}

.page-lines i:nth-child(2) {
  width: 82%;
}

.page-lines i:nth-child(3) {
  width: 92%;
}

.page-lines i:nth-child(4) {
  width: 66%;
}

.citation-pins {
  display: flex;
  margin-top: 24px;
  gap: 8px;
}

.citation-pins span {
  display: grid;
  width: 34px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--mint);
  font-family: var(--font-pixel);
  font-size: 6px;
}

.pixel-pencil {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: 170px;
  height: 20px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-35deg);
}

.pixel-pencil::before {
  position: absolute;
  top: -3px;
  left: -24px;
  width: 22px;
  height: 20px;
  border-block: 3px solid var(--ink);
  content: "";
  background: var(--coral);
}

.pixel-pencil::after {
  position: absolute;
  top: -3px;
  right: -21px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid var(--ink);
  content: "";
}

.studio-grid {
  display: grid;
  margin-bottom: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.studio-grid article {
  min-height: 205px;
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}

.studio-grid article:nth-child(2) {
  background: #fff0e5;
}

.studio-grid article:nth-child(3) {
  background: #eeedff;
}

.studio-grid article:nth-child(4) {
  background: #fff6d5;
}

.studio-grid .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: var(--blue-dark);
}

.studio-grid h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.studio-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.notebook-details {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
}

.detail-card {
  padding: 28px;
  border: 3px solid var(--ink);
  background: var(--paper);
}

.source-card {
  box-shadow: 6px 6px 0 var(--blue);
}

.limit-card {
  box-shadow: 6px 6px 0 var(--mint-dark);
}

.detail-card-head {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 12px;
}

.detail-card-head h3 {
  margin: 0;
  font-size: 21px;
}

.detail-card ul {
  display: grid;
  margin: 0;
  padding-left: 20px;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

.limit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--ink);
}

.limit-grid div {
  display: flex;
  min-height: 88px;
  padding: 13px;
  justify-content: center;
  flex-direction: column;
  background: var(--paper-light);
}

.limit-grid strong {
  font-family: var(--font-pixel);
  font-size: 15px;
}

.limit-grid span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
}

.limit-card > p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.notebook-note {
  background: #d8ffea;
}

.gemini-free {
  background: var(--paper-deep);
}

.free-panel {
  padding: 42px;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 10px 10px 0 var(--blue-dark);
}

.free-panel-title {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  gap: 18px;
}

.free-panel-title h2 {
  margin: 0;
  font-size: 34px;
}

.free-feature-grid {
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--ink);
}

.free-feature-grid article {
  position: relative;
  display: grid;
  min-height: 150px;
  padding: 24px;
  align-items: flex-start;
  background: var(--paper);
  grid-template-columns: auto 1fr;
  gap: 16px;
}

.free-feature-grid article > .icon {
  width: 28px;
  height: 28px;
  color: var(--blue-dark);
}

.free-feature-grid article > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.free-feature-grid strong {
  padding-right: 76px;
  font-size: 16px;
}

.free-feature-grid div span {
  color: var(--ink-soft);
  font-size: 13px;
}

.availability {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 7px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--mint);
  font-size: 9px;
  font-weight: 800;
}

.is-limited .availability {
  background: var(--coral);
}

.free-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.free-panel-footer p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.sources-section {
  background: var(--paper);
}

.compact-heading {
  margin-bottom: 34px;
}

.source-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.source-link-grid a {
  display: grid;
  min-height: 116px;
  padding: 20px;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 4px 4px 0 var(--ink);
  grid-template-columns: 1fr auto;
  gap: 5px 12px;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.source-link-grid a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--blue);
}

.source-link-grid span {
  grid-column: 1;
  color: var(--blue-dark);
  font-family: var(--font-pixel);
  font-size: 7px;
}

.source-link-grid strong {
  grid-column: 1;
  font-size: 15px;
}

.source-link-grid .icon {
  grid-area: 1 / 2 / 3 / 3;
}

.final-cta {
  padding-top: 30px;
  background: var(--paper);
}

.final-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 50px;
  align-items: center;
  border: 3px solid var(--ink);
  color: var(--white);
  background: var(--blue);
  box-shadow: 10px 10px 0 var(--ink);
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 30px;
}

.final-panel::after {
  position: absolute;
  right: -30px;
  bottom: -44px;
  width: 190px;
  height: 110px;
  border: 12px solid rgba(255, 255, 255, 0.12);
  content: "";
  transform: rotate(-8deg);
}

.final-panel .section-kicker {
  color: var(--yellow);
}

.final-panel h2 {
  margin-bottom: 12px;
  font-size: 31px;
}

.final-panel p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.final-pixel-art {
  display: grid;
  width: 96px;
  height: 96px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

.final-pixel-art span {
  border: 2px solid var(--ink);
  background: var(--yellow);
}

.final-pixel-art span:nth-child(1) {
  grid-area: 1 / 2 / 3 / 4;
}

.final-pixel-art span:nth-child(2) {
  grid-area: 2 / 1 / 4 / 3;
  background: var(--mint);
}

.final-pixel-art span:nth-child(3) {
  grid-area: 2 / 3 / 4 / 5;
  background: var(--coral);
}

.final-pixel-art span:nth-child(4) {
  grid-area: 3 / 2 / 5 / 4;
  background: var(--paper-light);
}

.final-pixel-art span:nth-child(5),
.final-pixel-art span:nth-child(6) {
  z-index: 2;
  width: 12px;
  height: 12px;
  align-self: center;
  border: 0;
  background: var(--ink);
}

.final-pixel-art span:nth-child(5) {
  grid-area: 2 / 2;
  justify-self: end;
}

.final-pixel-art span:nth-child(6) {
  grid-area: 2 / 3;
  justify-self: start;
}

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

.site-footer {
  border-top: 3px solid var(--ink);
  background: var(--paper-light);
}

.footer-inner {
  display: grid;
  min-height: 150px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
}

.footer-brand {
  min-width: 280px;
}

.footer-meta {
  max-width: 520px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.footer-meta p {
  margin: 0;
}

.footer-privacy,
.footer-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.footer-privacy {
  margin-top: 7px !important;
}

.footer-privacy .icon,
.footer-admin-link .icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.footer-admin-link {
  margin-top: 9px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.noscript {
  position: fixed;
  z-index: 2000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes status-pulse {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 0.6; transform: scale(1); }
}

@keyframes blink {
  0%, 52% { opacity: 1; }
  53%, 100% { opacity: 0.2; }
}

@keyframes bot-hop {
  0%, 70%, 100% { transform: translateY(0); }
  78%, 90% { transform: translateY(-8px); }
}

@keyframes file-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes ticker-move {
  to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
  .hero-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: 50px;
  }

  body.is-myanmar .hero h1 {
    font-size: 45px;
  }

  .desktop-nav a {
    padding-inline: 8px;
  }

  .task-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .task-button {
    min-height: 70px;
  }

  .studio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-panel {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .final-buttons {
    grid-column: 2;
  }
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    z-index: 999;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border-bottom: 0 solid var(--ink);
    background: var(--paper-light);
    opacity: 0;
    transition: max-height 240ms ease, opacity 180ms ease, border-width 180ms ease;
  }

  .mobile-nav.is-open {
    max-height: 340px;
    border-bottom-width: 3px;
    opacity: 1;
  }

  .mobile-nav a {
    padding: 16px 22px;
    border-top: 1px solid rgba(23, 33, 59, 0.15);
    font-weight: 800;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-console {
    width: min(100%, 560px);
    max-width: none;
    margin-inline: auto;
  }

  .spotlight-panel,
  .notebook-hero {
    grid-template-columns: 1fr;
  }

  .mission-board,
  .notebook-visual {
    border-top: 3px solid var(--ink);
    border-left: 0;
  }

  .mission-board ol {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .mission-board li {
    min-height: 100px;
    flex-direction: column;
    gap: 9px;
  }

  .mission-board li::before {
    top: 14px;
    right: -10px;
    bottom: auto;
    left: 30px;
    width: calc(100% - 10px);
    height: 2px;
  }

  .mission-board li div {
    padding-top: 0;
  }

  .plan-card {
    max-width: 640px;
  }

  .benchmark-layout {
    grid-template-columns: 1fr;
  }

  .benchmark-copy .text-link {
    margin-top: 0;
  }

  .notebook-visual {
    min-height: 470px;
  }

  .notebook-details {
    grid-template-columns: 1fr;
  }

  .source-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    padding-block: 34px;
    grid-template-columns: 1fr auto;
  }

  .footer-meta {
    grid-area: 2 / 1 / 3 / 3;
    margin: 0;
    text-align: left;
  }

  .footer-privacy,
  .footer-admin-link {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section-pad {
    padding-block: 76px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy small {
    display: none;
  }

  .mobile-nav {
    top: 70px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero::before {
    display: none;
  }

  .hero h1,
  body.is-myanmar .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-number {
    width: 48px;
    height: 48px;
  }

  .spotlight-main,
  .notebook-copy,
  .free-panel {
    padding: 28px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .filter-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-chips {
    justify-content: flex-start;
  }

  .free-feature-grid {
    grid-template-columns: 1fr;
  }

  .free-panel-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .free-panel-title h2 {
    font-size: 29px;
  }

  .final-panel {
    padding: 36px 28px;
    grid-template-columns: 1fr;
  }

  .final-pixel-art {
    width: 80px;
    height: 80px;
  }

  .final-buttons {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .language-button {
    min-width: 44px;
    min-height: 44px;
    padding-inline: 8px;
    font-size: 11px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero h1,
  body.is-myanmar .hero h1 {
    font-size: 35px;
  }

  .hero-cta-row .button,
  .spotlight-actions .button,
  .final-buttons .button {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-console {
    padding: 12px 12px 18px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .console-screen {
    min-height: 380px;
    padding: 32px 22px 72px;
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pixel-bot {
    height: 150px;
  }

  .screen-copy {
    align-items: center;
    text-align: center;
  }

  .screen-copy strong {
    font-size: 22px;
  }

  .screen-meter {
    right: 18px;
    left: 18px;
  }

  .file-one {
    top: 65px;
    right: -8px;
  }

  .file-two {
    bottom: 68px;
    left: -8px;
  }

  .file-three {
    display: none;
  }

  .section-heading {
    gap: 16px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-number {
    width: 42px;
    height: 42px;
    font-size: 8px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .spotlight-panel,
  .notebook-hero,
  .recommendation,
  .free-panel,
  .final-panel {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .spotlight-main,
  .notebook-copy,
  .free-panel {
    padding: 22px;
  }

  .large-lockup .logo-frame {
    width: 64px;
    height: 64px;
  }

  .product-lockup h3,
  .large-lockup .product-lockup h3 {
    font-size: 23px;
  }

  .spotlight-intro,
  .notebook-lead {
    font-size: 15px;
  }

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

  .capability-grid article {
    min-height: 0;
  }

  .mission-board {
    padding: 26px 20px;
  }

  .mission-board ol {
    grid-template-columns: 1fr;
  }

  .mission-board li {
    min-height: 72px;
    flex-direction: row;
    gap: 14px;
  }

  .mission-board li::before {
    top: 30px;
    right: auto;
    bottom: 0;
    left: 14px;
    width: 2px;
    height: auto;
  }

  .task-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .task-button {
    min-height: 88px;
    flex-direction: column;
  }

  .recommendation-result {
    grid-template-columns: auto 1fr;
  }

  .recommendation-result strong {
    font-size: 16px;
  }

  .recommendation-result .button {
    grid-column: 1 / 3;
  }

  .product-card {
    padding: 22px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .product-card:hover {
    box-shadow: 7px 7px 0 var(--ink);
  }

  .product-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-best {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .chart-card {
    min-height: 440px;
    padding: 20px 16px;
  }

  .chart-row {
    grid-template-columns: 1fr 50px;
    gap: 7px 10px;
  }

  .chart-label {
    grid-column: 1 / 3;
  }

  .bar-track {
    grid-column: 1;
  }

  .chart-value {
    grid-column: 2;
  }

  .chart-axis {
    margin-right: 50px;
    margin-left: 0;
  }

  .source-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .source-flow > i {
    width: 2px;
    height: 16px;
    justify-self: center;
  }

  .source-flow > i::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .notebook-visual {
    min-height: 420px;
  }

  .notebook-stack,
  .notebook-page {
    width: 220px;
    height: 305px;
  }

  .notebook-stack-back {
    top: 68px;
    left: calc(50% - 128px);
  }

  .notebook-stack-mid {
    top: 62px;
    left: calc(50% - 104px);
  }

  .notebook-page {
    top: 56px;
    left: calc(50% - 110px);
  }

  .notebook-page strong {
    font-size: 13px;
  }

  .pixel-pencil {
    right: 2px;
    bottom: 30px;
    width: 130px;
  }

  .studio-grid {
    grid-template-columns: 1fr;
  }

  .studio-grid article {
    min-height: 0;
  }

  .limit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .free-panel-title {
    align-items: flex-start;
  }

  .free-feature-grid strong {
    padding-right: 0;
  }

  .availability {
    position: static;
    width: fit-content;
    margin-top: 12px;
    grid-column: 1 / 3;
  }

  .source-link-grid {
    grid-template-columns: 1fr;
  }

  .final-panel h2 {
    font-size: 27px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    min-width: 0;
  }

  .footer-brand .brand-copy small {
    display: block;
  }

  .footer-meta {
    grid-area: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .ticker-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
