:root {
  --bg: #09131b;
  --bg-deep: #050d13;
  --surface: rgba(10, 21, 29, 0.82);
  --surface-strong: rgba(13, 25, 35, 0.96);
  --surface-soft: rgba(17, 31, 43, 0.72);
  --line: rgba(153, 186, 206, 0.16);
  --line-strong: rgba(153, 186, 206, 0.28);
  --text: #edf5fb;
  --muted: #9fb0bf;
  --muted-strong: #c8d4df;
  --accent: #8de4c3;
  --accent-strong: #47d8a7;
  --accent-soft: rgba(141, 228, 195, 0.12);
  --accent-blue: #8ab9ff;
  --shadow: 0 24px 70px rgba(1, 6, 10, 0.45);
  --shadow-soft: 0 16px 40px rgba(1, 6, 10, 0.22);
  --shadow-strong: 0 34px 90px rgba(0, 0, 0, 0.48);
  --shadow-glow: 0 0 0 1px rgba(141, 228, 195, 0.06), 0 30px 80px rgba(71, 216, 167, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1140px;
  --font-mono: "JetBrains Mono", "Consolas", monospace;
}

* {
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}


html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}


body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(71, 216, 167, 0.18), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(138, 185, 255, 0.18), transparent 28%),
    radial-gradient(circle at 50% 110%, rgba(71, 216, 167, 0.1), transparent 34%),
    linear-gradient(180deg, #0a141c 0%, #09131b 42%, #050d13 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: -0.012em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}



body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 82%);
  pointer-events: none;
  opacity: 0.45;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.04), transparent 20%),
    radial-gradient(circle at 80% 0%, rgba(141, 228, 195, 0.05), transparent 26%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.7;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

code {
  font-family: var(--font-mono);
  word-break: break-word;
}

pre {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre;
  -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.04em;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-wrap: break-word;
}


ul,
ol {
  padding-left: 2.2rem;
  margin: 1rem 0;
}

li {
  margin-bottom: 0.6rem;
  overflow-wrap: break-word;
}

.container {
  width: min(var(--container), 100%);
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.alt-section {
  background: linear-gradient(180deg, rgba(10, 21, 29, 0.44), rgba(10, 21, 29, 0.12));
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(720px, 80vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(141, 228, 195, 0.16), transparent);
  pointer-events: none;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.small-eyebrow {
  margin-bottom: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(7, 14, 20, 0.65);
  border-bottom: 1px solid rgba(153, 186, 206, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 11, 16, 0.88);
  border-bottom-color: rgba(141, 228, 195, 0.12);
}


.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-tag {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 28px;
  min-width: 0;
  padding-bottom: 8px;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  position: relative;
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.2) 35%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.02);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}


.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #b7f5db 100%);
  color: #061219;
  box-shadow: 0 18px 34px rgba(71, 216, 167, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 44px rgba(71, 216, 167, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(153, 186, 206, 0.2);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(141, 228, 195, 0.42);
  background: rgba(141, 228, 195, 0.08);
}

.button-disabled,
.button-disabled:hover,
.button-disabled:focus-visible {
  opacity: 0.62;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.nav-cta {
  flex-shrink: 0;
}

.hero-section {
  padding-top: 72px;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 4% auto auto 58%;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(71, 216, 167, 0.16), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-copy h1 {
  margin: 0;
  max-width: 800px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.9rem, 5.8vw, 5rem);
  line-height: 0.97;
  letter-spacing: -0.07em;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.headline-accent {
  display: block;
  background: linear-gradient(135deg, #f7fbff 0%, #b7f5db 48%, #8ab9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subhead {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--muted-strong);
  font-size: 1.12rem;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ph-badge-hero {
  margin-top: 36px;
  display: inline-flex;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(141, 228, 195, 0.12);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ph-badge-hero:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(141, 228, 195, 0.32);
  background: rgba(141, 228, 195, 0.06);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(71, 216, 167, 0.18);
}

.ph-badge-hero img {
  display: block;
  border-radius: 10px;
}

.compatibility-alert,
.purchase-warning {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 177, 66, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 177, 66, 0.12), rgba(255, 177, 66, 0.05)),
    rgba(23, 16, 8, 0.82);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.purchase-warning {
  margin-top: 10px;
  margin-bottom: 22px;
}

.compatibility-alert-title,
.purchase-warning-title {
  margin: 0 0 8px;
  color: #ffd590;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compatibility-alert p,
.purchase-warning p {
  margin: 0;
  color: #f2e3c5;
}

.compatibility-list {
  margin: 0;
  padding-left: 1.6rem;
  color: #f2e3c5;
}

.compatibility-list li+li {
  margin-top: 10px;
}

.hero-typebar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(141, 228, 195, 0.18);
  background: rgba(7, 17, 24, 0.72);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.type-prefix,
.typed-text,
.type-caret {
  font-family: var(--font-mono);
  font-size: 0.94rem;
  font-weight: 500;
}

.type-prefix {
  color: var(--accent);
}

.typed-text {
  display: inline-block;
  min-width: 28ch;
  color: var(--muted-strong);
}

.type-caret {
  width: 10px;
  color: var(--accent);
  animation: caret-blink 0.9s steps(1) infinite;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 700px;
  color: var(--muted-strong);
}

.hero-points li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  box-shadow: 0 0 0 5px rgba(141, 228, 195, 0.12);
  flex-shrink: 0;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.meta-card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(153, 186, 206, 0.12);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.03);
  transition: 
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
    border-color 0.4s ease, 
    box-shadow 0.4s ease, 
    background 0.4s ease;
}


.meta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(141, 228, 195, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.meta-card:hover,
.meta-card:focus-within {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(141, 228, 195, 0.28);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 22px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.06);
}


.meta-card:hover::before,
.meta-card:focus-within::before {
  opacity: 1;
}

.meta-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.84rem;
}

.meta-card strong {
  display: block;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  border-radius: 30px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero-visual::before {
  inset: 12% auto auto -8%;
  width: 120px;
  height: 120px;
  background: rgba(141, 228, 195, 0.16);
}

.hero-visual::after {
  inset: auto -4% 10% auto;
  width: 150px;
  height: 150px;
  background: rgba(138, 185, 255, 0.16);
}

.product-card {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%),
    var(--surface-strong);
  border: 1px solid rgba(153, 186, 206, 0.16);
  box-shadow: var(--shadow-strong), var(--shadow-glow);
  overflow: hidden;
  animation: float-panel 8s ease-in-out infinite;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(141, 228, 195, 0.1), transparent 36%);
  pointer-events: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.product-bar,
.logo-lockup,
.signal-row,
.hotkey-grid,
.stealth-note {
  position: relative;
  z-index: 1;
}

.product-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.status-pill,
.mini-pill,
.signal-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(153, 186, 206, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.status-pill,
.mini-pill {
  padding: 10px 14px;
}

.signal-chip {
  padding: 8px 12px;
  font-size: 0.78rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(71, 216, 167, 0.14);
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.showcase-logo {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-kicker {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.showcase-caption {
  margin: 4px 0 0;
  color: var(--muted);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.terminal-window {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(141, 228, 195, 0.14);
  background: linear-gradient(180deg, rgba(2, 10, 14, 0.96), rgba(4, 15, 21, 0.9));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.terminal-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.01) 2px,
      transparent 2px,
      transparent 6px);
  background-size: 100% 6px;
  opacity: 0.16;
  pointer-events: none;
}

.terminal-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(141, 228, 195, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.terminal-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.terminal-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(141, 228, 195, 0.5);
}

.terminal-dots span:nth-child(2) {
  background: rgba(138, 185, 255, 0.58);
}

.terminal-dots span:nth-child(3) {
  background: rgba(255, 255, 255, 0.32);
}

.terminal-title,
.terminal-line,
.terminal-line-muted,
.terminal-prompt {
  font-family: var(--font-mono);
}

.terminal-title {
  color: var(--muted);
  font-size: 0.8rem;
}

.terminal-body {
  padding: 16px;
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.terminal-line .typed-text {
  min-width: 24ch;
  color: var(--text);
}

.hero-subhead {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 4.2vw, 1.15rem);
  line-height: 1.6;
  max-width: 680px;
  width: 100%;
  overflow-wrap: break-word;
}

.terminal-line-muted {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.terminal-prompt {
  color: var(--accent);
  font-weight: 700;
}

.simulation-card {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.38));
  border: 1px solid rgba(153, 186, 206, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.simulation-label,
.simulation-answer-label {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.simulation-question {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.simulation-answer {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(141, 228, 195, 0.08);
  border: 1px solid rgba(141, 228, 195, 0.12);
}

.simulation-answer p:last-child {
  margin: 8px 0 0;
  color: var(--muted-strong);
}

.hotkey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stealth-note {
  margin: 40px auto -12px;
  width: 100%;
  position: relative;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(138, 185, 255, 0.16);
  background: rgba(138, 185, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.hotkey-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(153, 186, 206, 0.12);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.hotkey-card:hover,
.hotkey-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(141, 228, 195, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.hotkey-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.hotkey-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.feature-grid,
.capability-grid,
.steps-grid,
.readiness-grid,
.download-grid,
.docs-topics {
  display: grid;
  gap: 18px;
}

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

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

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

.feature-card,
.capability-card,
.step-card,
.download-card,
.topic-card,
.readiness-card,
.faq-item,
.docs-frame,
.requirements-strip,
.license-band {
  border: 1px solid rgba(153, 186, 206, 0.14);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-card,
.capability-card,
.step-card,
.download-card,
.topic-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.readiness-card {
  min-width: 0;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.feature-card::before,
.capability-card::before,
.step-card::before,
.download-card::before,
.topic-card::before,
.readiness-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(141, 228, 195, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.feature-card:hover,
.capability-card:hover,
.step-card:hover,
.download-card:hover,
.topic-card:hover,
.readiness-card:hover,
.feature-card:focus-within,
.capability-card:focus-within,
.step-card:focus-within,
.download-card:focus-within,
.topic-card:focus-within,
.readiness-card:focus-within {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(141, 228, 195, 0.35);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(71, 216, 167, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}


.feature-card:hover::before,
.capability-card:hover::before,
.step-card:hover::before,
.download-card:hover::before,
.topic-card:hover::before,
.readiness-card:hover::before,
.feature-card:focus-within::before,
.capability-card:focus-within::before,
.step-card:focus-within::before,
.download-card:focus-within::before,
.topic-card:focus-within::before,
.readiness-card:focus-within::before {
  opacity: 1;
}

.card-badge,
.step-number,
.os-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.card-badge {
  min-width: 48px;
  min-height: 34px;
  padding: 0 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.capability-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(141, 228, 195, 0.12);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3,
.capability-card h3,
.step-card h3,
.download-card h3,
.topic-card h3,
.requirements-copy h3,
.license-band h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.feature-card p,
.capability-card p,
.step-card p,
.download-card p,
.topic-card p,
.requirements-copy p,
.license-band p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: break-word;
  text-align: left;
}

.checklist-heading {
  margin: 28px 0 16px;
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.95rem;
}

.readiness-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.readiness-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  overflow-wrap: break-word;
}

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

.step-number {
  width: 54px;
  height: 54px;
  background: rgba(138, 185, 255, 0.16);
  color: var(--accent-blue);
  font-size: 1.05rem;
}

.step-note {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.pricing-shell {
  margin-bottom: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(153, 186, 206, 0.14);
  background:
    linear-gradient(180deg, rgba(141, 228, 195, 0.06), rgba(141, 228, 195, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.pricing-shell::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 58%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(141, 228, 195, 0.14), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.pricing-intro {
  max-width: 760px;
}

.pricing-intro h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.pricing-intro p:last-child {
  margin: 0;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.pricing-card {
  position: relative;
  min-width: 0;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(153, 186, 206, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.pricing-card-featured {
  background:
    linear-gradient(180deg, rgba(141, 228, 195, 0.14), rgba(141, 228, 195, 0.05)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(141, 228, 195, 0.24);
  box-shadow: 0 24px 64px rgba(71, 216, 195, 0.14);
}

.pricing-card:hover,
.pricing-card:focus-within {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(141, 228, 195, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(71, 216, 167, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}


.pricing-card-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.1) 40%, transparent 62%);
  transform: translateX(-120%);
  animation: shimmer-pass 6s ease-in-out infinite;
  pointer-events: none;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(141, 228, 195, 0.12);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h4 {
  margin: 16px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin: 18px 0 0;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 8vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-wrap: pretty;
  overflow-wrap: break-word;
  word-break: break-word;
}

.pricing-price {
  margin: 0;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.pricing-caption {
  margin: 12px 0 0;
  color: var(--muted-strong);
  overflow-wrap: break-word;
}

.pricing-list {
  margin: 16px 0 0;
  padding-left: 1.6rem;
  color: var(--muted);
}

.pricing-list li+li {
  margin-top: 10px;
}

.pricing-footnote {
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.featured-download {
  background:
    linear-gradient(180deg, rgba(141, 228, 195, 0.08), transparent 40%),
    var(--surface);
  box-shadow: var(--shadow), 0 0 0 1px rgba(141, 228, 195, 0.08) inset;
}

.download-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.download-header h3 {
  margin: 0;
}

.download-header p {
  margin-top: 4px;
}

.os-mark {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(141, 228, 195, 0.18), rgba(138, 185, 255, 0.18));
  color: var(--text);
  font-size: 1rem;
}

.download-specs {
  margin: 0;
  padding-left: 1.6rem;
  color: var(--muted-strong);
}

.download-specs li+li {
  margin-top: 10px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.requirements-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(138, 185, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.requirements-copy {
  min-width: 0;
}

.requirements-copy h3 {
  margin-top: 0;
}

.license-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(141, 228, 195, 0.08), rgba(255, 255, 255, 0.025)),
    var(--surface);
}

.table-shell {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(153, 186, 206, 0.14);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(153, 186, 206, 0.12);
  text-align: left;
}

.comparison-table thead th {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.comparison-table td {
  color: var(--muted-strong);
}

.table-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  min-width: 72px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.table-pill-good {
  background: rgba(141, 228, 195, 0.12);
  color: var(--accent);
}

.table-pill-bad {
  background: rgba(255, 112, 112, 0.12);
  color: #ffb2b2;
}

.table-pill-soft {
  background: rgba(138, 185, 255, 0.12);
  color: #b9d1ff;
}

.highlight-row {
  background: rgba(141, 228, 195, 0.08);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(141, 228, 195, 0.22);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft);
}

.faq-item.is-open {
  border-color: rgba(141, 228, 195, 0.22);
  background: linear-gradient(180deg, rgba(141, 228, 195, 0.08), rgba(255, 255, 255, 0.03));
}

.faq-question {
  width: 100%;
  padding: 24px 72px 24px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted-strong);
  overflow-wrap: break-word;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  filter: blur(4px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}


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


@keyframes caret-blink {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes float-panel {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer-pass {

  0%,
  68%,
  100% {
    transform: translateX(-120%);
  }

  82% {
    transform: translateX(120%);
  }
}

.docs-overview {
  display: grid;
  gap: 22px;
}

.docs-topics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.topic-card h3 {
  margin-top: 0;
}

.docs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.docs-frame {
  margin-top: 24px;
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.docs-frame #app-readme {
  max-width: 100%;
}

.site-footer {
  padding: 30px 0 50px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12));
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(153, 186, 206, 0.1);
}

.footer-shell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted-strong);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.product-card {
  width: 100%;
  max-width: min(500px, 100%);
}

.footer-main {
  flex: 1;
  max-width: 600px;
}

.footer-badge {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-badge:hover {
  transform: translateY(-3px);
}

.footer-badge img {
  display: block;
  border-radius: 8px;
}

/* ── macOS install advisory ────────────────────────────────────────── */

.mac-install-advisory {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 177, 66, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 177, 66, 0.07), rgba(255, 177, 66, 0.02)),
    rgba(18, 14, 8, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  animation: advisory-fade-in 0.6s ease both;
}

@keyframes advisory-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mac-install-advisory .advisory-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.mac-install-advisory .advisory-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 177, 66, 0.18);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.mac-install-advisory .advisory-title {
  margin: 0;
  color: #ffd590;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mac-install-advisory .advisory-text {
  margin: 0 0 10px;
  color: #e8d5b6;
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  line-height: 1.6;
}

.mac-install-advisory .advisory-text:last-child {
  margin-bottom: 0;
}

/* ── Terminal command block ────────────────────────────────────────── */

.terminal-cmd-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 10px 0 6px;
  border-radius: 12px;
  border: 1px solid rgba(141, 228, 195, 0.16);
  background:
    linear-gradient(180deg, rgba(2, 10, 14, 0.92), rgba(4, 15, 21, 0.88));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.terminal-cmd-block:hover {
  border-color: rgba(141, 228, 195, 0.3);
  box-shadow: 0 8px 28px rgba(71, 216, 167, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.terminal-cmd-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.005) 2px,
      transparent 2px,
      transparent 5px);
  background-size: 100% 5px;
  opacity: 0.2;
  pointer-events: none;
}

.terminal-cmd-prompt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 14px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 700;
  flex-shrink: 0;
  user-select: none;
}

.terminal-cmd-code {
  flex: 1;
  padding: 12px 12px;
  color: #d7e5f0;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.45;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(141, 228, 195, 0.2) transparent;
}

.terminal-cmd-code::-webkit-scrollbar {
  height: 3px;
}

.terminal-cmd-code::-webkit-scrollbar-thumb {
  background: rgba(141, 228, 195, 0.22);
  border-radius: 999px;
}

.terminal-cmd-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 4px 6px 4px 0;
  border-radius: 10px;
  border: 1px solid rgba(141, 228, 195, 0.12);
  background: rgba(141, 228, 195, 0.06);
  color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
}

.terminal-cmd-copy:hover {
  background: rgba(141, 228, 195, 0.14);
  border-color: rgba(141, 228, 195, 0.3);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(71, 216, 167, 0.14);
}

.terminal-cmd-copy:active {
  transform: scale(0.95);
}

.terminal-cmd-copy svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
}

.terminal-cmd-copy .copy-check {
  display: none;
}

.terminal-cmd-copy.is-copied .copy-icon {
  display: none;
}

.terminal-cmd-copy.is-copied .copy-check {
  display: block;
  color: #8de4c3;
}

.terminal-cmd-copy.is-copied {
  background: rgba(141, 228, 195, 0.2);
  border-color: rgba(141, 228, 195, 0.4);
}

/* ── Gatekeeper security note ─────────────────────────────────────── */

.gatekeeper-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(138, 185, 255, 0.16);
  background: rgba(138, 185, 255, 0.06);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  color: #b9d1ff;
  line-height: 1.55;
}

.gatekeeper-note .gk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(138, 185, 255, 0.16);
  font-size: 0.68rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.gatekeeper-note code {
  padding: 1px 5px;
  border-radius: 6px;
  background: rgba(4, 12, 18, 0.6);
  border: 1px solid rgba(138, 185, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #d0e2fa;
}

/* ── Platform lock warning ────────────────────────────────────────── */

.platform-lock-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 112, 112, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 112, 112, 0.07), rgba(255, 112, 112, 0.02)),
    rgba(20, 10, 10, 0.72);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.platform-lock-warning .plw-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(255, 112, 112, 0.16);
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.platform-lock-warning .plw-body {
  flex: 1;
  min-width: 0;
}

.platform-lock-warning .plw-title {
  margin: 0 0 4px;
  color: #ffb2b2;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-lock-warning .plw-text {
  margin: 0;
  color: #f0c8c8;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ── Ollama model command section ─────────────────────────────────── */

.ollama-cmd-section {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(141, 228, 195, 0.16);
  background:
    linear-gradient(180deg, rgba(141, 228, 195, 0.06), rgba(141, 228, 195, 0.02)),
    rgba(10, 18, 24, 0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ollama-cmd-section .ollama-cmd-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ollama-cmd-section .ollama-cmd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(141, 228, 195, 0.16);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.ollama-cmd-section .ollama-cmd-title {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ollama-cmd-section .ollama-cmd-desc {
  margin: 0 0 10px;
  color: var(--muted-strong);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
}

.ollama-cmd-section .terminal-cmd-block {
  margin: 8px 0;
}

/* ── Advisory on hero section (compact) ───────────────────────────── */

.hero-mac-advisory {
  margin-top: 10px;
  max-width: 680px;
}

.hero-mac-advisory .advisory-text {
  font-size: 0.9rem;
}

.hero-mac-advisory .terminal-cmd-block {
  margin: 8px 0 4px;
}

.hero-mac-advisory .gatekeeper-note {
  font-size: 0.86rem;
  padding: 10px 14px;
}

/* ── Download card advisory (fits inside download-card) ──────────── */

.download-mac-advisory {
  margin-top: 4px;
}

@media (prefers-reduced-motion: reduce) {

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

  .product-card {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .container {
    padding: 0 16px;
  }

  .hero-grid,
  .feature-grid,
  .capability-grid,
  .steps-grid,
  .pricing-grid,
  .download-grid,
  .hotkey-grid,
  .hero-meta,
  .readiness-grid {
    grid-template-columns: 100% !important;
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .stealth-note {
    margin: 40px 0 0;
    width: 100%;
    left: 0;
    border-radius: 12px;
  }

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

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

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

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    max-width: 640px;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
  }

  .site-nav {
    order: 3;
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px 28px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-meta,
  .requirements-strip,
  .license-band,
  .footer-shell {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }

  .footer-main {
    max-width: 100%;
  }

  .footer-links {
    justify-content: center;
    margin-top: 16px;
  }

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

@media (max-width: 720px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: 12px 0;
    min-height: auto;
    gap: 12px;
  }

  .brand {
    order: 1;
    flex: 1;
    min-width: 0;
  }

  .nav-cta {
    display: inline-flex;
    order: 2;
    flex: 0 0 auto;
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding: 8px 0;
    margin: 0 -16px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--line);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-visual {
    margin-top: 32px;
    width: 100%;
    overflow: hidden;
  }

  .hero-visual img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 76px 0;
  }

  .hero-section {
    padding-top: 48px;
  }

  .hero-grid,
  .feature-grid,
  .capability-grid,
  .pricing-grid,
  .site-nav a {
    font-size: 0.84rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 9.5vw, 2.8rem);
    line-height: 1.1;
    overflow-wrap: break-word;
    word-break: break-word;
    text-wrap: pretty;
  }

  .hero-typebar {
    width: 100%;
  }

  .hero-subhead {
    font-size: 1rem;
    width: 100%;
    overflow-wrap: break-word;
  }

  .typed-text,
  .terminal-line .typed-text {
    min-width: 0;
  }

  .button,
  .download-actions .button {
    width: 100%;
  }

  .nav-shell .nav-cta {
    width: 100%;
    justify-self: end;
  }

  .product-card,
  .docs-frame {
    padding: 20px;
  }

  .faq-question {
    font-size: 1.08rem;
    padding-right: 58px;
  }

  .table-shell {
    overflow: visible;
  }

  .comparison-table {
    min-width: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tbody {
    display: grid;
    gap: 14px;
  }

  .comparison-table tr {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(153, 186, 206, 0.14);
    background: rgba(255, 255, 255, 0.03);
  }

  .comparison-table tbody th {
    padding: 0 0 10px;
    border: 0;
  }

  .comparison-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border: 0;
    border-top: 1px solid rgba(153, 186, 206, 0.12);
  }

  .comparison-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .table-pill {
    min-width: 64px;
    font-size: 0.72rem;
  }
}