@font-face {
  font-family: "JetBrains Mono";
  src: url("/public/fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/public/fonts/JetBrainsMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/public/fonts/JetBrainsMono-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --canvas: #201d1d;
  --surface: #302c2c;
  --surface-deep: #1a1817;
  --text: #fdfcfc;
  --ash: #9a9898;
  --mute: #646262;
  --line: rgba(253, 252, 252, .14);
  --blue: #78A9FF;
  --blue-hover: #92B9FF;
  --button-radius: 8px;
  --button-radius-small: 6px;
  --media-radius: 8px;
  --media-edge-inset: 6px;
  --feature-item-height: 86px;
  --feature-picker-height: 86px;
  --theme-mono: "JetBrains Mono", monospace;
  font-family: var(--theme-mono);
  color: var(--text);
  background: var(--canvas);
}

* { box-sizing: border-box; }
html { scrollbar-color: #4a4545 var(--canvas); scrollbar-width: thin; }
html, body { min-height: 100%; margin: 0; }
body, button, input, select, textarea { font-family: var(--theme-mono); }
body { min-width: 320px; }
a { color: inherit; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--canvas); }
::-webkit-scrollbar-thumb { border: 2px solid var(--canvas); border-radius: 999px; background: #4a4545; }
::-webkit-scrollbar-thumb:hover { background: #5b5555; }
::-webkit-scrollbar-corner { background: var(--canvas); }

.page-shell {
  display: flex;
  flex-direction: column;
  width: min(1200px, calc(100% - 80px));
  min-height: 100vh;
  margin: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
}

.brand { display: inline-flex; align-items: center; gap: 9px; font: 600 16px/1 var(--theme-mono); letter-spacing: -.06em; text-decoration: none; }
.brand-icon { display: block; width: 30px; height: 30px; object-fit: contain; }
.brand > span > span { color: var(--blue); }
.header-status, footer, .panel-label, .eyebrow, .fallback { font-size: 12px; }
.header-status { color: var(--ash); }
.header-nav { display: flex; align-items: center; gap: 24px; font-size: 12px; letter-spacing: .05em; }
.header-nav a, .nav-button { color: var(--ash); text-decoration: none; transition: color .2s; }
.nav-button { padding: 0; border: 0; border-radius: var(--button-radius-small); background: transparent; font: inherit; letter-spacing: inherit; cursor: pointer; }
.header-nav a:hover, .header-nav a:focus-visible, .nav-button:hover, .nav-button:focus-visible { color: var(--blue); }
.header-nav a:focus-visible, .nav-button:focus-visible { outline: 1px solid var(--blue); outline-offset: 3px; }

.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr); align-items: end; gap: clamp(40px, 7vw, 96px); padding: clamp(64px, 9vh, 92px) 0 clamp(32px, 4vh, 44px); }
.hero-copy { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; }
.hero-title { max-width: 820px; margin: 0; font-family: var(--theme-mono); font-size: clamp(44px, 3.5vw, 54px); font-weight: 500; line-height: 1.15; letter-spacing: -.045em; }
.hero-title span { color: var(--blue); }
.hero-subtitle { max-width: 720px; margin: 20px 0 0; color: #B5B2B2; font-size: clamp(16px, 1.2vw, 18px); font-weight: 500; line-height: 1.6; }
.product-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 0 clamp(72px, 9vh, 112px);
}
.feature-picker {
  position: absolute;
  z-index: 5;
  top: var(--media-edge-inset);
  right: auto;
  left: var(--media-edge-inset);
  width: max-content;
  max-width: calc(100% - 12px);
  display: grid;
  grid-template-columns: max-content;
  gap: var(--media-edge-inset);
}
.feature-wing {
  display: contents;
}
.feature-item {
  position: relative;
  display: grid;
  justify-self: start;
  width: max-content;
  grid-template-columns: 1em minmax(0, 1fr);
  column-gap: 5px;
  align-content: center;
  align-items: start;
  min-height: 0;
  aspect-ratio: auto;
  padding: 7px 12px;
  border: 0;
  border-radius: var(--media-radius);
  background: radial-gradient(circle, rgba(225, 236, 238, .055) 0 .7px, transparent .8px) 0 0 / 3px 3px, linear-gradient(90deg, rgba(38, 40, 40, .78), rgba(54, 56, 53, .69) 56%, rgba(42, 43, 42, .64)), rgba(36, 38, 37, .72);
  box-shadow: inset 0 -18px 34px rgba(0, 0, 0, .14);
  color: #C3C0C0;
  font-family: var(--theme-mono);
  font-size: clamp(11px, calc(.75vw + 1px), 13px);
  font-weight: 600;
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(8px) saturate(.82) brightness(.82);
  transition: color .25s, background .25s, transform .25s;
}
.feature-copy { display: grid; gap: 3px; min-width: 0; }
.feature-title, .feature-description { display: block; }
.feature-title, .feature-description { white-space: nowrap; }
.feature-description { color: #908D8D; font-size: clamp(9px, calc(.54vw + 1px), 10px); font-weight: 600; line-height: 1.3; }
.feature-icon { position: relative; top: 1px; display: block; width: 1em; height: 1em; justify-self: end; filter: brightness(0) saturate(100%) invert(69%) sepia(78%) saturate(1606%) hue-rotate(185deg) brightness(104%) contrast(101%); }
.feature-item:hover, .feature-item:focus-visible { color: #d9d7d7; transform: translateY(-2px); }
.feature-item:focus-visible { outline: 1px solid var(--text); outline-offset: 3px; }
.action-group { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 8px; }
.hero-cta { width: min(100%, 280px); justify-self: end; }
.hero-actions { grid-template-columns: 1fr; gap: 12px; width: 100%; }
.hero-actions .download-action { min-height: 60px; padding: 0 22px; font-size: 15px; font-weight: 700; white-space: nowrap; }
.hero-actions .download-action.is-primary { font-weight: 800; -webkit-text-stroke: .2px currentColor; }
.hero-actions .discord-action { min-height: 48px; }
.platform-note { margin: 16px 0 0; color: var(--mute); font-size: 11px; font-weight: 600; letter-spacing: .025em; line-height: 1.5; white-space: nowrap; }
.download-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: rgba(253, 252, 252, .03);
  color: var(--text);
  font: 600 13px/1 var(--theme-mono);
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.action-icon { display: block; width: 18px; height: 18px; filter: brightness(0) saturate(100%) invert(69%) sepia(78%) saturate(1606%) hue-rotate(185deg) brightness(104%) contrast(101%); }
.download-action:hover, .download-action:focus-visible { border-color: var(--blue); background: color-mix(in srgb, var(--blue) 10%, transparent); transform: translateY(-1px); }
.download-action.is-primary { border-color: var(--blue); background: var(--blue); color: #06182a; }
.download-action.is-primary .action-icon { filter: none; }
.download-action.is-primary:hover, .download-action.is-primary:focus-visible { border-color: var(--blue-hover); background: var(--blue-hover); }
.discord-action { color: #d9d7d7; }
.discord-action .action-icon { filter: invert(43%) sepia(45%) saturate(1295%) hue-rotate(206deg) brightness(96%) contrast(94%); }
.discord-action:hover, .discord-action:focus-visible { border-color: #5865F2; background: rgba(88, 101, 242, .12); }
.download-action:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; }
.feature-media { display: flex; order: 1; width: 100%; min-width: 0; flex-direction: column; align-items: center; align-self: center; }
.media-frame {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: var(--media-radius);
  background: var(--surface-deep);
  flex: none;
}
.demo-stage { isolation: isolate; outline: none; cursor: default; }
.demo-stage:focus-visible { border-color: var(--blue); box-shadow: 0 0 0 2px color-mix(in srgb, var(--blue) 32%, transparent); }
.demo-media-slot { position: absolute; inset: 0; z-index: 0; background: #171616 url("/public/media/media-hero.png") center / cover no-repeat; }
.demo-context { position: absolute; z-index: 6; top: var(--media-edge-inset); left: 50%; display: grid; width: auto; transform: translateX(-50%); grid-template-columns: minmax(0, 1fr) max-content max-content; align-items: center; gap: 7px 8px; padding: 8px 9px; border: 1px solid rgba(216, 223, 221, .13); border-radius: var(--media-radius); background: radial-gradient(circle, rgba(225, 236, 238, .055) 0 .7px, transparent .8px) 0 0 / 3px 3px, linear-gradient(90deg, rgba(38, 40, 40, .78), rgba(54, 56, 53, .69) 56%, rgba(42, 43, 42, .64)), rgba(36, 38, 37, .72); box-shadow: inset 0 -18px 34px rgba(0, 0, 0, .14); color: #d8dfdd; font-size: clamp(8px, .65vw, 11px); line-height: 1; backdrop-filter: blur(8px) saturate(.82) brightness(.82); }
.demo-context-copy { display: grid; gap: 4px; min-width: 0; }
.demo-context-label { display: flex; align-items: center; gap: 5px; color: #d8dfdd; font-size: .84em; font-weight: 800; letter-spacing: .08em; }
.demo-context-source { display: flex; align-items: center; gap: 4px; color: #77817e; font-size: .67em; font-weight: 600; letter-spacing: .055em; }
.demo-context-dot { width: 5px; height: 5px; border-radius: 50%; background: #75a9ff; box-shadow: 0 0 7px rgba(117, 169, 255, .72); animation: demo-context-pulse 1.8s ease-in-out infinite; }
@keyframes demo-context-pulse { 0%, 100% { opacity: .55; box-shadow: 0 0 4px rgba(117, 169, 255, .45); transform: translateY(-1px) scale(.85); } 50% { opacity: 1; box-shadow: 0 0 11px rgba(117, 169, 255, .95); transform: translateY(-1px) scale(1.15); } }
.demo-context-field { display: grid; gap: 3px; }
.demo-context-field-label { color: #68726f; font-size: .63em; font-weight: 700; letter-spacing: .09em; }
.demo-context-divider { width: 1px; height: 25px; background: rgba(216, 223, 221, .12); }
.demo-context-divider:not(.demo-context-divider-hint) { display: none; }
.demo-context-divider-hint { grid-column: 1 / -1; width: 100%; height: 1px; }
.demo-select { position: relative; display: block; min-width: 62px; }
.demo-select-side { min-width: 42px; }
.demo-select-trigger { display: flex; width: 100%; min-height: 17px; align-items: center; justify-content: space-between; gap: 7px; padding: 0; border: 0; outline: 0; background: transparent; color: #d8dfdd; font: inherit; font-weight: 700; line-height: 17px; cursor: pointer; }
.demo-select-trigger svg { width: 8px; height: 6px; overflow: visible; color: #77817e; transition: transform 150ms ease, color 150ms ease; }
.demo-select-trigger svg path { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.demo-select.is-open .demo-select-trigger svg { color: #a8b1af; transform: rotate(180deg); }
.demo-select-trigger:focus-visible { border-radius: 3px; box-shadow: 0 0 0 2px rgba(117, 169, 255, .34); }
.demo-select-menu { position: absolute; top: calc(100% + 8px); left: -7px; z-index: 10; display: grid; width: max-content; min-width: calc(100% + 14px); gap: 2px; padding: 4px; border: 1px solid rgba(216, 223, 221, .13); border-radius: var(--media-radius); background: radial-gradient(circle, rgba(225, 236, 238, .055) 0 .7px, transparent .8px) 0 0 / 3px 3px, linear-gradient(90deg, rgba(38, 40, 40, .78), rgba(54, 56, 53, .69) 56%, rgba(42, 43, 42, .64)), rgba(36, 38, 37, .72); box-shadow: inset 0 -18px 34px rgba(0, 0, 0, .14); backdrop-filter: blur(8px) saturate(.82) brightness(.82); animation: demo-select-in 130ms cubic-bezier(.22, 1, .36, 1); }
.demo-select-menu[hidden] { display: none; }
.demo-select-menu button { display: flex; min-width: 92px; align-items: center; justify-content: space-between; gap: 16px; padding: 7px 8px; border: 0; border-radius: 4px; background: transparent; color: #8f9996; font: inherit; font-weight: 600; line-height: 1; text-align: left; white-space: nowrap; cursor: pointer; transition: background 120ms ease, color 120ms ease; }
.demo-select-side .demo-select-menu { right: -7px; left: auto; }
.demo-select-side .demo-select-menu button { min-width: 78px; }
.demo-select-menu button:hover, .demo-select-menu button:focus-visible { outline: 0; background: rgba(196, 204, 202, .09); color: #d8dfdd; }
.demo-select-menu button[aria-selected="true"] { background: rgba(117, 169, 255, .1); color: #d8dfdd; }
.demo-select-check { color: #75a9ff; font-size: .9em; opacity: 0; }
.demo-select-menu button[aria-selected="true"] .demo-select-check { opacity: 1; }
@keyframes demo-select-in { from { opacity: 0; transform: translateY(4px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.demo-context-hint { grid-column: 1 / -1; display: grid; gap: 4px; color: #aeb7b5; font-size: clamp(7px, .56vw, 10px); letter-spacing: .02em; }
.demo-context-hint-line { display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.demo-context-hint kbd { padding: 2px 4px; border: 1px solid rgba(216, 223, 221, .2); border-radius: 3px; background: rgba(23, 24, 24, .78); color: #d8dfdd; font: inherit; }
.demo-overlay-frame { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; border: 0; background: transparent; pointer-events: none; }
.plan-dialog {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 12px;
  background: var(--canvas);
  color: var(--text);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
  transform-origin: var(--plan-origin-x, 50%) top;
}
.plan-dialog[open] { animation: plan-dialog-in 260ms cubic-bezier(.16, 1, .3, 1) both; }
.plan-dialog.is-closing { animation: plan-dialog-out 180ms cubic-bezier(.7, 0, .84, 0) both; }
.plan-dialog::backdrop { background: rgba(9, 8, 8, .78); backdrop-filter: blur(8px); animation: plan-backdrop-in 220ms ease-out both; }
.plan-dialog.is-closing::backdrop { animation: plan-backdrop-out 180ms ease-in both; }
.plan-modal { padding: clamp(24px, 4vw, 48px); }
@keyframes plan-dialog-in {
  from { opacity: 0; transform: translateY(-20px) scale(.94); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes plan-dialog-out {
  from { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  to { opacity: 0; transform: translateY(-16px) scale(.96); filter: blur(3px); }
}
@keyframes plan-backdrop-in { from { background: rgba(9, 8, 8, 0); backdrop-filter: blur(0); } to { background: rgba(9, 8, 8, .78); backdrop-filter: blur(8px); } }
@keyframes plan-backdrop-out { from { background: rgba(9, 8, 8, .78); backdrop-filter: blur(8px); } to { background: rgba(9, 8, 8, 0); backdrop-filter: blur(0); } }
.plan-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.plan-eyebrow { margin: 0 0 10px; color: var(--blue); font-size: 11px; font-weight: 600; letter-spacing: .14em; }
.plan-header h2 { margin: 0; font-size: clamp(28px, 3.2vw, 44px); font-weight: 500; letter-spacing: -.045em; }
.plan-close {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 0;
  border-radius: var(--button-radius-small);
  background: transparent;
  color: var(--ash);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.plan-close span::before, .plan-close span::after {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}
.plan-close span::before { transform: rotate(45deg); }
.plan-close span::after { transform: rotate(-45deg); }
.plan-close:hover, .plan-close:focus-visible { background: rgba(120, 169, 255, .1); color: var(--blue); }
.plan-close:focus-visible, .plan-purchase-note a:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; }
.plan-grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.12fr) minmax(0, .94fr); gap: 12px; }
.plan-card {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 32px);
  border: 0;
  border-radius: var(--button-radius);
  background: var(--surface);
}
.plan-card.is-paid { background: linear-gradient(180deg, rgba(120, 169, 255, .08), transparent 38%), var(--surface); }
.plan-card-heading { display: flex; align-items: center; gap: 12px; }
.plan-card-heading img { width: 22px; height: 22px; filter: brightness(0) saturate(100%) invert(69%) sepia(78%) saturate(1606%) hue-rotate(185deg) brightness(104%) contrast(101%); }
.plan-card h3 { margin: 0; font-size: clamp(19px, 1.5vw, 24px); font-weight: 600; letter-spacing: -.025em; }
.plan-summary { min-height: 48px; margin: 16px 0 24px; color: var(--ash); font-size: 14px; line-height: 1.65; }
.plan-features { display: grid; gap: 18px; padding: 0; margin: 0 0 28px; list-style: none; }
.plan-features li { position: relative; display: block; padding-left: 20px; color: var(--text); font-size: 14px; font-weight: 500; line-height: 1.55; }
.plan-features li::before { position: absolute; top: .72em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); content: ""; }
.plan-features strong { color: var(--blue); font-weight: 600; }
.plan-status, .plan-purchase {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 18px;
  border: 0;
  border-radius: var(--button-radius);
  font-size: 13px;
  font-weight: 600;
}
.plan-status { width: min(100%, 220px); align-self: center; gap: 8px; background: var(--blue); color: #06182a; font-family: var(--theme-mono); text-decoration: none; white-space: nowrap; cursor: pointer; opacity: .72; }
.plan-status:hover { background: var(--blue-hover); color: #06182a; opacity: 1; }
.plan-status-icon { width: 16px; height: 16px; flex: 0 0 16px; }
.plan-purchase { width: min(100%, 190px); align-self: center; background: rgba(120, 169, 255, .12); color: var(--blue); font-family: var(--theme-mono); cursor: default; }
.plan-status:disabled { color: var(--ash); }
.plan-purchase:disabled { color: var(--blue); }
.plan-purchase-note { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 20px 0 0; color: var(--ash); font-size: 12px; line-height: 1.5; text-align: center; }
.plan-purchase-note a { padding: 0; border: 0; background: none; color: var(--blue); font: 600 12px/1.5 var(--theme-mono); text-decoration: none; cursor: pointer; }
.plan-purchase-note a:hover { color: var(--blue-hover); }

.success-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, .72fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(12px, 3vh, 32px) 0 clamp(48px, 10vh, 112px);
}

.terminal-window, .next-steps { border: 1px solid var(--line); border-radius: 0; }
.terminal-window { overflow: hidden; background: var(--surface); }
.terminal-titlebar {
  display: flex;
  justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-deep);
  color: var(--ash);
  font-size: 12px;
}
.window-actions { letter-spacing: 7px; color: var(--mute); }
.terminal-content { padding: clamp(30px, 6vw, 62px); }
.eyebrow { display: flex; gap: 9px; align-items: center; margin: 0 0 24px; color: var(--blue); letter-spacing: .06em; }
.status-dot { width: 7px; height: 7px; border-radius: 0; background: var(--blue); box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 12%, transparent); }
h1 { margin: 0; font-size: clamp(42px, 6vw, 70px); line-height: 1.04; letter-spacing: -.075em; font-weight: 500; }
.intro { max-width: 440px; margin: 28px 0 32px; color: var(--ash); font-size: 15px; line-height: 1.75; }
.command-row { display: flex; gap: 9px; align-items: center; padding: 12px 14px; border-radius: 0; background: var(--canvas); color: var(--ash); font-size: 13px; }
.command-row .prompt { color: var(--blue); font-size: 18px; }
.command-row strong { margin-left: auto; color: var(--blue); font-weight: 500; }
.primary-action { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-top: 16px; padding: 15px 16px; border: 1px solid var(--blue); border-radius: var(--button-radius); background: var(--blue); color: #06182a; font-size: 14px; font-weight: 500; text-decoration: none; transition: background .15s, border-color .15s, transform .15s; }
.primary-action:hover, .primary-action:focus-visible { border-color: var(--blue-hover); background: var(--blue-hover); transform: translateY(-1px); }
.primary-action:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; }
.fallback { margin: 14px 0 0; color: var(--mute); line-height: 1.65; }

.next-steps { display: flex; flex-direction: column; padding: 24px; background: var(--surface-deep); }
.panel-label { margin: 0 0 24px; color: var(--ash); }
ol { display: flex; flex-direction: column; gap: 28px; padding: 0; margin: 0; list-style: none; }
li { display: grid; grid-template-columns: 34px 1fr; gap: 11px; }
li > span { color: var(--blue); font-size: 12px; }
li p { margin: -3px 0 0; color: var(--ash); font-size: 13px; line-height: 1.65; }
.support-copy { margin: auto 0 0; padding-top: 28px; border-top: 1px solid var(--line); color: var(--mute); font-size: 12px; line-height: 1.6; }
.support-copy a { color: var(--ash); }
.support-copy a:hover { color: var(--text); }

footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; width: 100%; margin-top: auto; padding: 20px 0 28px; gap: 12px; color: var(--mute); letter-spacing: .04em; text-align: left; }
.footer-official { display: inline-flex; align-items: center; color: var(--blue); text-decoration: none; }
.footer-official img { display: block; width: 14px; height: 14px; object-fit: contain; }
footer b { color: var(--blue); font-weight: 400; }
.footer-link { color: var(--ash); text-decoration: none; transition: color .2s; }
.footer-link:hover, .footer-link:focus-visible { color: var(--blue); }
.footer-link:focus-visible { outline: 1px solid var(--blue); outline-offset: 3px; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(250px, .45fr); gap: 28px; }
}

@media (max-width: 900px) {
  .feature-item,
  .feature-item:hover,
  .feature-item:focus-visible { aspect-ratio: auto; transform: none; }
}

@media (min-width: 721px) {
  .demo-context { width: calc((100% - 36px) / 4); }
}

@media (max-width: 720px) {
  :root { --feature-item-height: 45px; --feature-picker-height: 95px; }
  .page-shell { width: min(100% - 32px, 560px); }
  .site-header { min-height: 76px; }
  .header-status { display: none; }
  .header-nav { gap: 10px; font-size: 9px; }
  .hero { grid-template-columns: 1fr; gap: 24px; padding: 48px 0 32px; }
  .hero-title { font-size: clamp(36px, 9vw, 44px); }
  .hero-subtitle { margin-top: 16px; font-size: 16px; }
  .success-layout { grid-template-columns: 1fr; padding: 12px 0 48px; }
  .product-showcase { padding: 0 0 64px; }
  .feature-picker { top: var(--media-edge-inset); right: auto; left: 50%; width: calc(100% - 12px); transform: translateX(-50%); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--media-edge-inset); }
  .feature-item { min-height: var(--feature-item-height); grid-template-columns: 1em minmax(0, 1fr); gap: 5px; padding: 6px; font-size: 8px; }
  .feature-description { display: none; }
  .feature-copy { gap: 0; }
  .feature-icon { width: 1em; height: 1em; }
  .hero-cta { width: 100%; justify-self: stretch; }
  .hero-actions { grid-template-columns: 1fr; }
  .platform-note { margin-top: 12px; font-size: 11px; }
  .media-frame { width: 100%; min-height: 0; }
  .demo-context { top: calc(var(--media-edge-inset) + var(--feature-picker-height) + var(--media-edge-inset)); left: var(--media-edge-inset); transform: none; gap: 5px 6px; padding: 6px 7px; font-size: 7px; }
  .demo-context-source,
  .demo-context-divider-hint,
  .demo-context-hint { display: none; }
  .action-group { gap: 8px; }
  .download-action { padding: 14px 10px; gap: 7px; font-size: 11px; }
  .terminal-content { padding: 30px 24px; }
  .next-steps { gap: 0; padding: 24px; }
  ol { gap: 20px; }
  .plan-dialog { width: calc(100% - 24px); max-height: calc(100vh - 24px); }
  .plan-modal { padding: 22px 16px; }
  .plan-header { margin-bottom: 22px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; }
  .plan-summary { min-height: 0; }
  .plan-purchase-note { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .demo-context-dot { animation: none; }
  .plan-dialog, .plan-dialog::backdrop { animation: none; }
}
