/* InputAI marketing site — matches extension popover palette */

:root {
  --bg: #0f0f1a;
  --bg-alt: #12121f;
  --card: #1a1a2e;
  --border: #2d2d44;
  --border-light: #3d3d5c;
  --btn: #2d2d44;
  --btn-hover: #4a4a6a;
  --text: #e8e8f0;
  --muted: #a0a0b8;
  --dim: #707088;
  --accent: #8b8bff;
  --primary: #5b5bd6;
  --primary-hover: #4a4ac4;
  --error: #ff9b9b;
  --radius: 10px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

code {
  font-size: 0.9em;
  background: var(--btn);
  padding: 0.15em 0.45em;
  border-radius: 4px;
}

.hidden {
  display: none !important;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
}

.nav-links {
  display: flex;
  gap: 20px;
  margin-right: auto;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-light);
  color: var(--text);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

/* ── Hero ── */
.hero {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(91, 91, 214, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #c4c4ff, #5b5bd6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin-top: 20px;
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats strong {
  font-size: 22px;
  color: var(--accent);
}

.hero-stats span {
  font-size: 12px;
  color: var(--dim);
}

/* ── Section common ── */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-alt {
  background: var(--bg-alt);
  max-width: none;
  padding-inline: 24px;
}

.section-alt > .section-label,
.section-alt > h2,
.section-alt > .context-tabs,
.section-alt > .context-panel,
.section-alt > .privacy-grid {
  max-width: 1000px;
  margin-inline: auto;
}

.section-label {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 40px;
}

.section-intro {
  max-width: 640px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: -24px 0 32px;
}

.limit-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.limit-pill--full {
  background: rgba(91, 91, 214, 0.15);
  color: var(--accent);
}

.limit-pill--unlimited {
  background: rgba(91, 91, 214, 0.2);
  color: #c4c4ff;
}

.limit-pill--quota {
  background: var(--btn);
  color: var(--text);
  border: 1px solid var(--border-light);
}

.limit-pill--byok,
.limit-pill--none {
  background: var(--bg-alt);
  color: var(--muted);
  border: 1px solid var(--border);
}

.pricing-table td[colspan="3"] {
  text-align: center;
}

/* ── Cinema (scroll-driven demo) ── */
.cinema {
  position: relative;
}

.cinema-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 0;
}

.cinema-script h2 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  line-height: 1.3;
}

.scene-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scene-list li {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.3s, border-color 0.3s, background 0.3s;
  user-select: none;
}

.scene-list li:hover {
  opacity: 0.75;
  background: rgba(26, 26, 46, 0.6);
}

.scene-list li.active {
  opacity: 1;
  background: var(--card);
  border-color: var(--border-light);
}

.scene-list li:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.scene-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.scene-list li strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.scene-list li p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

#autoplay-btn {
  margin-top: 20px;
}

.cinema-stage-wrap {
  display: flex;
  align-items: flex-start;
}

.cinema-sticky {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Browser mock */
.browser {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #12121f;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.url-bar {
  flex: 1;
  margin-left: 8px;
  padding: 5px 12px;
  background: var(--btn);
  border-radius: 6px;
  font-size: 11px;
  color: var(--muted);
}

.browser-body {
  position: relative;
  padding: 28px 24px 32px;
  min-height: auto;
}

.popover-anchor {
  margin-top: 4px;
}

.fake-page label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--muted);
}

.field-wrap {
  position: relative;
}

.fake-page textarea,
.fake-page input {
  width: 100%;
  padding: 12px 14px;
  background: #12121f;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  resize: none;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.fake-page textarea.focused,
.fake-page input.focused {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 139, 255, 0.15);
}

.caret {
  position: absolute;
  width: 2px;
  height: 18px;
  background: var(--accent);
  top: 14px;
  left: 14px;
  animation: blink 1s step-end infinite;
  opacity: 0;
}

.caret.visible {
  opacity: 1;
}

@keyframes blink {
  50% { opacity: 0; }
}

.draft-badge {
  margin-top: 12px;
  font-size: 12px;
  color: var(--accent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s;
}

.draft-badge.show {
  opacity: 1;
  transform: translateY(0);
}

/* InputAI popover (matches extension) */
.inputai-popover {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: #1a1a2e;
  border: 1px solid #3d3d5c;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  width: max-content;
  max-width: 100%;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s, transform 0.35s;
}

.inputai-popover.visible {
  opacity: 1;
  transform: translateY(0);
}

.popover-toolbar {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
}

.pop-btn {
  border: none;
  background: #2d2d44;
  color: #e8e8f0;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: default;
  white-space: nowrap;
  font-size: 12px;
  font-family: inherit;
  transition: background 0.15s;
}

.pop-btn:hover,
.pop-btn.active {
  background: #4a4a6a;
}

.pop-btn.settings {
  padding: 4px 7px;
  color: #a0a0b8;
}

.pop-btn:disabled {
  opacity: 0.5;
}

.popover-status {
  width: 100%;
  color: #a0a0b8;
  font-size: 11px;
  min-height: 14px;
  line-height: 1.4;
  word-break: break-word;
}

.popover-status.error {
  color: var(--error);
}

.popover-status.success {
  color: #9bffb0;
}

.scene-caption {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  min-height: 20px;
}

/* ── Feature grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

.feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.feature-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-card li {
  font-size: 13px;
  color: var(--muted);
}

.feature-card p {
  font-size: 13px;
  color: var(--muted);
}

/* ── Context tabs ── */
.context-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.context-tab {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.context-tab.active {
  background: var(--primary);
  border-color: #6b6be6;
  color: #fff;
}

.context-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.context-panel.revealed {
  opacity: 1;
  transform: translateY(0);
}

.context-sites {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.site-chip {
  padding: 4px 10px;
  background: var(--btn);
  border-radius: 6px;
  font-size: 11px;
  color: var(--muted);
}

.context-demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.prompt-before,
.prompt-after {
  padding: 16px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.prompt-before .label,
.prompt-after .label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
  margin-bottom: 8px;
}

.prompt-before p,
.prompt-after p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.prompt-after p {
  color: var(--text);
}

.prompt-arrow {
  font-size: 20px;
  color: var(--accent);
}

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

.blog-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.platform-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--primary);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.platform-tag.naver {
  background: #03c75a;
  color: #000;
}

.blog-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flow-steps span {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--btn);
  border-radius: 4px;
  color: var(--muted);
}

/* ── Privacy ── */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.privacy-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

.privacy-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.privacy-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.privacy-card p {
  font-size: 13px;
  color: var(--muted);
}

.provider-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.provider-chips span {
  padding: 4px 10px;
  background: var(--primary);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* ── Install ── */
.install {
  padding: 80px 24px;
}

.install-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--card), #1e1e38);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 48px 32px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

.install-inner.revealed {
  opacity: 1;
  transform: translateY(0);
}

.install-inner h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.install-inner > p {
  color: var(--muted);
  margin-bottom: 28px;
}

.install-steps {
  text-align: left;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--bg);
  border-radius: 8px;
}

.install-steps li {
  font-size: 13px;
  color: var(--muted);
}

/* ── License / pricing page ── */
.license-hero {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 24px 48px;
  text-align: center;
}

.license-hero-inner h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.license-lead {
  margin-top: 20px;
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

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

.license-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.license-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
}

.license-badge--free {
  background: rgba(91, 91, 214, 0.15);
  border-color: rgba(139, 139, 255, 0.4);
  color: var(--accent);
}

.license-badge--soon {
  background: var(--card);
  color: var(--muted);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.plan-card--highlight {
  border-color: rgba(139, 139, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(91, 91, 214, 0.2), 0 12px 40px rgba(0, 0, 0, 0.25);
}

.plan-card--pro {
  border-color: rgba(139, 139, 255, 0.35);
}

.plan-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(91, 91, 214, 0.2);
  color: var(--accent);
}

.plan-tag--muted {
  background: var(--btn);
  color: var(--muted);
}

.plan-tag--pro {
  background: rgba(91, 91, 214, 0.25);
  color: #c4c4ff;
}

.plan-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.plan-period {
  font-size: 14px;
  color: var(--dim);
}

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 4px;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding-left: 1.25em;
  font-size: 13px;
  color: var(--muted);
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.plan-note {
  font-size: 12px;
  color: var(--dim);
  margin-top: 4px;
}

.plan-coffee {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  padding: 10px 12px;
  background: rgba(91, 91, 214, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.pricing-table th {
  background: var(--bg-alt);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.pricing-table th:not(:first-child),
.pricing-table td:not(:first-child) {
  text-align: center;
  width: 120px;
}

.th-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--dim);
  margin-top: 2px;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.feature-hint {
  display: block;
  font-size: 12px;
  color: var(--dim);
  margin-top: 4px;
  font-weight: 400;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
}

.check.yes {
  background: rgba(91, 91, 214, 0.2);
  color: var(--accent);
}

.check.no {
  background: var(--btn);
  color: var(--dim);
}

.row-divider td {
  padding: 10px 20px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.divider-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.faq-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.install--compact {
  padding: 60px 24px;
}

.install--compact .install-inner {
  text-align: center;
}

.install-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.nav-links a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .plan-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table th:not(:first-child),
  .pricing-table td:not(:first-child) {
    width: 72px;
    padding-inline: 8px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* ── Footer ── */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--dim);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cinema-layout {
    grid-template-columns: 1fr;
  }

  .cinema-script {
    position: sticky;
    top: 60px;
    z-index: 10;
    background: var(--bg);
    padding-bottom: 16px;
  }

  .scene-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .scene-list li {
    min-width: 200px;
    flex-shrink: 0;
  }

  .context-demo {
    grid-template-columns: 1fr;
  }

  .prompt-arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  .nav-links {
    display: none;
  }

  .hero-stats {
    gap: 24px;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}
