:root {
  --bg: #0b1220;
  --bg-deep: #070b14;
  --bg-card: #ffffff;
  --bg-muted: #f4f6fa;
  --surface: rgba(255, 255, 255, 0.03);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --glow-orange: rgba(234, 88, 12, 0.25);
  --text: #0f172a;
  --text-muted: #64748b;
  --text-display: clamp(2.5rem, 5vw, 3.75rem);
  --accent: #ea580c;
  --accent-hover: #c2410c;
  --accent-soft: #fff7ed;
  --border: #e2e8f0;
  --radius: 14px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Instrument Sans", var(--font);
  --mono: Consolas, "Courier New", monospace;
  --max: 1160px;
  --header-h: 4rem;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-duration: 0.65s;
  --motion-stagger: 90ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-muted);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.82);
  color: #fff;
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s var(--motion-ease), background 0.3s ease, transform 0.5s var(--motion-ease-out);
}

body.is-loaded .site-header {
  animation: headerEnter 0.55s var(--motion-ease-out) both;
}

.site-header.is-scrolled {
  background: rgba(11, 18, 32, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.95;
}

.logo__mark {
  display: block;
  width: auto;
  height: 2.5rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.logo__mark--sm {
  height: 2.25rem;
  margin-top: 0;
}

.logo__symbol {
  display: block;
  width: auto;
  height: 2.75rem;
  flex-shrink: 0;
}

.logo__symbol--sm {
  height: 2.25rem;
}

.logo__wordmark {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}

.logo--footer .logo__wordmark {
  font-size: 1.2rem;
}

.locale-menu {
  position: relative;
}

.locale-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.locale-menu__trigger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.locale-menu__icon {
  width: 1rem;
  height: 1rem;
  color: #94a3b8;
  flex-shrink: 0;
}

.locale-menu__chevron {
  width: 0.9rem;
  height: 0.9rem;
  color: #94a3b8;
  transition: transform 0.15s;
}

.locale-menu.is-open .locale-menu__chevron {
  transform: rotate(180deg);
}

.locale-menu__list {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 9.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f172a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 120;
}

.locale-menu__list[hidden] {
  display: none;
}

.locale-menu__option {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  color: #cbd5e1 !important;
  text-decoration: none !important;
  font-size: 0.875rem;
  font-weight: 500;
}

.locale-menu__option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
}

.locale-menu__option.is-active {
  background: rgba(234, 88, 12, 0.15);
  color: #fdba74 !important;
  font-weight: 700;
}

.locale-menu--static {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}

.locale-menu--static .locale-menu__option {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8125rem;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a {
  position: relative;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--motion-ease);
}

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

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

.site-nav .btn--primary.is-active {
  background: var(--accent-hover);
  box-shadow: none;
}

.site-nav a.btn::after {
  content: none;
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.25s var(--motion-ease), box-shadow 0.25s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.25);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.08s;
}

.btn--ghost:hover {
  box-shadow: none;
  border-color: #94a3b8;
}

.btn--secondary:hover {
  box-shadow: var(--shadow-sm);
}

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

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

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

.btn--secondary {
  background: #fff;
  color: var(--bg);
  border: 1px solid var(--border);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #475569;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn--white {
  background: #fff;
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--white:hover {
  background: #f8fafc;
  color: var(--bg);
}

.btn--on-orange {
  background: #fff;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--on-orange:hover {
  background: #f8fafc;
  color: var(--text);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

h1,
h2,
.section h2,
.section-head h2,
.cta-band h2,
.showcase__nav h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
}

.hero {
  background: linear-gradient(160deg, var(--bg) 0%, #1e293b 55%, #334155 100%);
  color: #fff;
  padding: 4rem 1.25rem 5rem;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: var(--text-display);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero p.lead {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin: 0 0 1.75rem;
  max-width: 38rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem;
}

.hero-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #e2e8f0;
}

.section {
  padding: 4rem 1.25rem;
}

.section--white {
  background: #fff;
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.section .subtitle {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.feature {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.feature h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.price-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff 0%, #fffbf7 100%);
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.18);
  transform: scale(1.03);
  z-index: 1;
}

.price-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.price-card .tag {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.price-card .amount {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-card .amount small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-card li + li {
  margin-top: 0.35rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 1.25rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}

.code-block {
  background: var(--bg);
  color: #e2e8f0;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  overflow-x: auto;
  margin: 1rem 0;
}

.note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  color: #9a3412;
  font-size: 0.95rem;
}

.prose {
  max-width: 46rem;
}

.trial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.trial-benefits {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.trial-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trial-benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.trial-benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: #fff7ed;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
}

.trial-benefit-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.trial-benefit-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.trial-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 22rem);
  gap: 2rem 2.5rem;
  align-items: start;
  max-width: 72rem;
}

#trial-form-section {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.trial-install-box {
  margin-top: 0.75rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1e293b;
  background: var(--bg);
}

.trial-install-box .install-box__cmd {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  padding: 0.75rem 0.85rem;
}

.trial-install-box .code-block {
  flex: 1 1 12rem;
  min-width: 0;
  margin: 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.45;
  white-space: nowrap;
  overflow-x: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.trial-install-box .install-copy {
  flex-shrink: 0;
}

.trial-install-box .install-copy__status {
  flex: 1 1 100%;
  margin: 0;
  min-height: 0;
}

.trial-steps-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.trial-steps-panel__lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.trial-install,
.trial-req {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.trial-install h3,
.trial-req h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.trial-install p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.trial-req ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.trial-req li + li {
  margin-top: 0.4rem;
}

.trial-form-wrap {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.trial-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trial-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.trial-detail-card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.trial-detail-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.trial-detail-card li + li {
  margin-top: 0.4rem;
}

.trial-detail-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.trial-detail-card--accent {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-color: #fed7aa;
}

.trial-links {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.trial-links p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.trial-links__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (max-width: 960px) {
  .trial-benefits-grid,
  .trial-details-grid {
    grid-template-columns: 1fr;
  }

  .trial-page-grid {
    grid-template-columns: 1fr;
  }

  .trial-form-wrap {
    position: static;
    order: -1;
  }
}

@media (max-width: 860px) {
  .trial-grid {
    grid-template-columns: 1fr;
  }
}

.prose h1 {
  margin-top: 0;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.prose p,
.prose li {
  color: #334155;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-page {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
  max-width: 72rem;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  align-self: start;
  max-height: calc(100vh - var(--header-h) - 2rem);
  overflow-y: auto;
}

.legal-nav__label {
  margin: 0 0 0.35rem;
  padding: 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.legal-nav__label:not(:first-child) {
  margin-top: 0.85rem;
}

.legal-nav a {
  display: block;
  padding: 0.38rem 0.65rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.legal-nav__related {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.legal-nav a:hover {
  background: var(--bg-muted);
  color: var(--accent-hover);
  text-decoration: none;
}

.legal-nav a.is-active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  border-left-color: var(--accent);
}

.legal-doc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
}

.legal-doc__intro {
  margin-bottom: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-doc__intro .note {
  margin: 0 0 0.85rem;
}

.legal-doc__intro .legal-meta {
  margin: 0;
}

.legal-doc__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-prose {
  max-width: none;
}

.legal-prose h2 {
  scroll-margin-top: calc(var(--header-h) + 1rem);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.legal-prose h2:first-of-type {
  margin-top: 0;
}

.legal-prose p {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.legal-prose p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.legal-list li {
  position: relative;
  padding: 0.7rem 0.9rem 0.7rem 2.15rem;
  border-radius: 10px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  color: #334155;
  line-height: 1.55;
  font-size: 0.95rem;
}

.legal-list li::before {
  content: "•";
  position: absolute;
  left: 0.85rem;
  top: 0.65rem;
  color: var(--accent);
  font-weight: 800;
}

.page-hero--legal {
  padding-bottom: 3.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(234, 88, 12, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-muted) 100%);
}

.page-hero--legal .page-hero__inner p {
  max-width: 40rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    max-height: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 0.5rem;
  }

  .legal-nav__label,
  .legal-nav__related {
    grid-column: 1 / -1;
  }

  .legal-doc {
    padding: 1.5rem 1.25rem;
  }
}

.faq-page {
  max-width: none;
  margin: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.faq-quick {
  padding-top: 0;
  margin-top: -1.5rem;
}

.faq-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.faq-quick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.faq-quick-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: #fff7ed;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-quick-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-quick-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.faq-nav {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem;
  border-radius: 16px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  align-self: start;
}

.faq-nav a {
  padding: 0.42rem 0.65rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.faq-nav a:hover {
  background: #fff;
  color: var(--accent-hover);
  text-decoration: none;
}

.faq-nav a.is-active {
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  border-left-color: var(--accent);
}

.faq-nav__label {
  margin: 0 0 0.35rem;
  padding: 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.faq-main {
  min-width: 0;
  max-width: 52rem;
}

.faq-group {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.faq-group + .faq-group {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.faq-group h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.faq-support {
  margin-top: 2.5rem;
  padding: 1.5rem 1.6rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
}

.faq-support h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.faq-support p {
  margin: 0 0 1.25rem;
  color: #9a3412;
  line-height: 1.55;
}

.faq-support__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

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

.btn--ghost-dark:hover {
  background: #fff;
  color: var(--text);
  border-color: #cbd5e1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s var(--motion-ease);
}

.faq-item:hover {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.faq-item.is-open {
  box-shadow: 0 12px 40px rgba(234, 88, 12, 0.08);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s ease;
}

.faq-item__trigger::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.35s var(--motion-ease);
}

.faq-item.is-open .faq-item__trigger::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item__panel {
  overflow: hidden;
  max-height: 0;
  padding: 0 1.25rem;
  transition: max-height 0.45s var(--motion-ease), padding 0.45s var(--motion-ease);
}

.faq-item.is-open .faq-item__panel {
  padding: 0 1.25rem 1.15rem;
}

.faq-item__panel p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.faq-page__cta {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
}

.docs-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.docs-quick {
  padding-top: 0;
  margin-top: -1.5rem;
}

.docs-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.docs-quick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.docs-quick-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: #fff7ed;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
}

.docs-quick-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.docs-quick-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.docs-nav {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem;
  border-radius: 16px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  align-self: start;
}

.docs-nav a {
  padding: 0.42rem 0.65rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.docs-nav a:hover {
  background: #fff;
  color: var(--accent-hover);
  text-decoration: none;
}

.docs-nav a.is-active {
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  border-left-color: var(--accent);
}

.docs-nav__label {
  margin: 0.85rem 0 0.15rem;
  padding: 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.docs-nav__label:first-child {
  margin-top: 0;
}

.docs-content {
  max-width: 52rem;
}

.docs-lead {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.65;
}

.docs-content h2 {
  scroll-margin-top: calc(var(--header-h) + 1rem);
  margin-top: 2.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.docs-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.docs-content h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.docs-callout {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.95rem;
  line-height: 1.55;
}

.docs-callout--tip {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.docs-callout--warn {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.docs-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.docs-stack__layer {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.docs-stack__layer--ext {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
}

.docs-flow {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.docs-flow__step {
  display: block;
  padding: 1.1rem 0 1.1rem 0.5rem;
  border-left: 2px solid #fed7aa;
  margin-left: 1.15rem;
  padding-left: 1.75rem;
  position: relative;
  min-width: 0;
}

.docs-flow__step > div {
  min-width: 0;
}

.docs-flow__step:last-child {
  border-left-color: transparent;
}

.docs-flow__num {
  position: absolute;
  left: -1.35rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.docs-flow__step strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

.docs-flow__step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.docs-module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.docs-module-card {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
}

.docs-module-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 700;
}

.docs-module-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.docs-support {
  margin-top: 2.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.6;
}

.docs-layout .install-box {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 14px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
}

@media (max-width: 960px) {
  .docs-quick-grid {
    grid-template-columns: 1fr;
  }

  .docs-module-grid {
    grid-template-columns: 1fr;
  }
}

.trial-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.65rem 1.5rem;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.trial-form h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.trial-form__subtitle {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.trial-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.trial-form input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  margin-bottom: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.trial-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

#trial-status {
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

#trial-status.alert-success {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

#trial-status.note {
  padding: 0.85rem 1rem;
  border-radius: 10px;
}

.trial-form .hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.site-footer {
  background: var(--bg);
  color: #94a3b8;
  padding: 2rem 1.25rem;
  font-size: 0.9rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: #cbd5e1;
}

.page-hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg-muted) 100%);
  border-bottom: 1px solid var(--border);
  padding: 3rem 1.25rem 2.5rem;
}

.page-hero__inner.reveal.is-visible .eyebrow,
.page-hero__inner.reveal.is-visible h1,
.page-hero__inner.reveal.is-visible p {
  animation: heroFadeUp 0.65s var(--motion-ease-out) both;
}

.page-hero__inner.reveal.is-visible h1 {
  animation-delay: 0.08s;
}

.page-hero__inner.reveal.is-visible p {
  animation-delay: 0.16s;
}

.page-hero--premium h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
}

.alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}

.alert-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}

/* --- Landing premium --- */

.hero--premium {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.25rem 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, var(--glow-orange) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% -10%, #1e3a5f 0%, var(--bg-deep) 55%);
}

.hero--fullscreen {
  min-height: calc(100dvh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

.hero--fullscreen .hero__inner {
  flex: 1;
  align-content: center;
}

.hero--fullscreen .hero__trust {
  margin-top: auto;
  width: 100%;
}

.hero--premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(234, 88, 12, 0.18) 0%, transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 38%);
  pointer-events: none;
  animation: glowDrift 12s ease-in-out infinite;
}

.hero--premium .hero__inner {
  position: relative;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero__copy h1 {
  max-width: 14ch;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero__copy .lead {
  max-width: 34rem;
  margin-top: 1.1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.maintenance-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg-deep);
}

.maintenance-page .site-header {
  flex-shrink: 0;
}

.maintenance-page .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

.hero--maintenance {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.25rem 3rem;
}

.hero--maintenance .hero__inner {
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
}

.hero--maintenance .hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 42rem;
  width: 100%;
}

.hero--maintenance .hero__copy h1 {
  max-width: none;
}

.hero--maintenance .hero__copy .lead {
  margin-left: auto;
  margin-right: auto;
}

.maintenance-page__contact {
  margin: 1.75rem 0 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.maintenance-page__contact a {
  color: #fdba74;
  text-decoration: none;
}

.maintenance-page__contact a:hover {
  text-decoration: underline;
}

.hero__actions {
  margin-top: 1.75rem;
}

.hero__stats div:last-child strong {
  color: #fdba74;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.15);
  border: 1px solid rgba(234, 88, 12, 0.35);
  color: #fdba74;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero__stats span {
  font-size: 0.85rem;
  color: #94a3b8;
}

.hero__visual {
  position: relative;
}

.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(15, 23, 42, 0.04);
  color: var(--text);
  font-size: 0.8rem;
  animation: float 6s ease-in-out infinite;
}

.hero__float strong {
  display: block;
  font-size: 0.85rem;
}

.hero__float small {
  color: var(--text-muted);
}

.hero__float-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.hero__float--1 {
  top: 8%;
  left: -4%;
  animation-delay: 0s;
}

.hero__float--2 {
  bottom: 6%;
  right: -2%;
  animation-delay: 1.2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.trust-strip {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.35rem 1.25rem;
}

.trust-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.trust-strip__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.trust-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--motion-ease-out), transform 0.45s var(--motion-ease-out), background 0.2s ease, border-color 0.2s ease;
}

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

.trust-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(253, 186, 116, 0.35);
}

.trust-chip svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: #fdba74;
}

.section--muted {
  background: linear-gradient(180deg, #f8fafc 0%, var(--bg-muted) 100%);
}

.section--alt {
  background: var(--bg-deep);
  color: #e2e8f0;
}

.section--alt .subtitle,
.section--alt .eyebrow {
  color: #94a3b8;
}

.section--alt h2 {
  color: #fff;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head--center {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .subtitle {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.eyebrow--light {
  color: #fdba74;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.icon-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 20px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.icon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(234, 88, 12, 0.35) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.icon-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 56px rgba(15, 23, 42, 0.12);
  border-color: #fed7aa;
}

.icon-card:hover::before {
  opacity: 1;
}

.icon-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.icon-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.icon-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.icon-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.55;
}

/* Browser / UI mockups */

.browser-mock {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.browser-mock--hero,
.browser-mock--elevated {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  box-shadow:
    0 32px 64px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(15, 23, 42, 0.06);
}

.browser-mock__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}

.browser-mock__bar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #cbd5e1;
}

.browser-mock__bar span:first-child { background: #f87171; }
.browser-mock__bar span:nth-child(2) { background: #fbbf24; }
.browser-mock__bar span:nth-child(3) { background: #4ade80; }

.browser-mock__url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.3rem 0.65rem;
  background: #fff;
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}

.browser-mock__frame {
  padding: 0;
  background: #f1f3f6;
  min-height: 220px;
}

.ui-mock {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 240px;
  font-size: 0.65rem;
}

.ui-mock__sidebar {
  background: #0f172a;
  padding: 0.65rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ui-mock__logo {
  height: 1.25rem;
  border-radius: 4px;
  background: rgba(234, 88, 12, 0.5);
  margin-bottom: 0.5rem;
}

.ui-mock__nav-item {
  height: 0.55rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.ui-mock__nav-item--active {
  background: rgba(234, 88, 12, 0.7);
}

.ui-mock__main {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ui-mock__topbar {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.ui-mock__badge {
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: #e2e8f0;
  color: #475569;
  font-weight: 700;
  font-size: 0.58rem;
}

.ui-mock__badge--ok {
  background: #d1fae5;
  color: #065f46;
}

.ui-mock__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.ui-mock__kpi {
  background: #fff;
  border-radius: 8px;
  padding: 0.45rem;
  border: 1px solid var(--border);
}

.ui-mock__kpi small {
  display: block;
  color: var(--text-muted);
  font-size: 0.52rem;
}

.ui-mock__kpi strong {
  font-size: 0.95rem;
  color: var(--text);
}

.ui-mock__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 4.5rem;
  padding: 0.5rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.ui-mock__chart-bar {
  flex: 1;
  height: 0;
  background: linear-gradient(180deg, #fb923c, #ea580c);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
  transform-origin: bottom center;
  transition: height 0.8s var(--motion-ease-out);
}

.ui-mock--charts-ready .ui-mock__chart-bar {
  height: var(--h, 50%);
}

.ui-mock__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ui-mock__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.ui-mock__row span {
  height: 0.45rem;
  border-radius: 3px;
  background: #e2e8f0;
}

.ui-mock__table-head,
.ui-mock__table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.6fr;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  font-size: 0.58rem;
}

.ui-mock__table-head {
  background: #e2e8f0;
  font-weight: 700;
  color: #475569;
}

.ui-mock__table-row {
  background: #fff;
  border: 1px solid var(--border);
}

.ui-mock__table-row--in span:last-child { color: #059669; font-weight: 700; }
.ui-mock__table-row--out span:last-child { color: #dc2626; font-weight: 700; }

.ui-mock__cal-head {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.55rem;
}

.ui-mock__cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
}

.ui-mock__cal-grid span,
.ui-mock__cal-cell {
  aspect-ratio: 1.4;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.ui-mock__cal-cell--off {
  background: #ffedd5;
  border-color: #fdba74;
}

.ui-mock__pending {
  padding: 0.45rem 0.55rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 6px;
  color: #9a3412;
  font-weight: 600;
  font-size: 0.58rem;
}

.ui-mock__report-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  display: grid;
  gap: 0.15rem;
}

.ui-mock__report-card strong { font-size: 0.62rem; }
.ui-mock__report-card small { color: var(--text-muted); font-size: 0.52rem; }

.ui-mock__dl {
  justify-self: start;
  margin-top: 0.2rem;
  padding: 0.15rem 0.45rem;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.52rem;
}

.ui-mock__feed-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.55rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: inherit;
}

.ui-mock__avatar {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fdba74, #ea580c);
}

.ui-mock__avatar--blue {
  background: linear-gradient(135deg, #93c5fd, #3b82f6);
}

.ui-mock__avatar--green {
  background: linear-gradient(135deg, #6ee7b7, #059669);
}

.ui-mock__feed-name {
  flex: 1;
  font-weight: 600;
  color: var(--text);
  font-size: 0.62rem;
}

.ui-mock__feed-meta {
  font-size: 0.55rem;
  color: var(--text-muted);
  font-weight: 600;
}

.ui-mock__feed-meta--ok {
  color: #059669;
}

.ui-mock__feed-meta--warn {
  color: #d97706;
}

.ui-mock--showcase .ui-mock__sidebar {
  padding: 0.75rem 0.45rem;
}

.ui-mock--showcase .ui-mock__nav-item {
  height: 0.65rem;
}

.ui-mock--showcase .ui-mock__kpi strong {
  font-size: 1.05rem;
}

.ui-mock--showcase .ui-mock__chart {
  height: 3.5rem;
}

.ui-mock--showcase .ui-mock__table-head,
.ui-mock--showcase .ui-mock__table-row {
  font-size: 0.62rem;
  padding: 0.42rem 0.55rem;
}

.ui-mock--showcase .ui-mock__cal-grid span,
.ui-mock--showcase .ui-mock__cal-cell {
  display: grid;
  place-items: center;
  font-size: 0.52rem;
  font-weight: 600;
  color: var(--text-muted);
}

.ui-mock--showcase .ui-mock__report-card {
  padding: 0.65rem 0.75rem;
}

.ui-mock--showcase .ui-mock__report-card strong {
  font-size: 0.68rem;
}

/* Showcase scroll */

.showcase {
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(234, 88, 12, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, #0b1220 45%, #111827 100%);
  color: #fff;
  padding: 5rem 1.25rem 6rem;
}

.showcase__layout {
  display: grid;
  grid-template-columns: minmax(280px, 320px) 1fr;
  gap: 3rem;
  align-items: start;
}

.showcase__nav-wrap {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.showcase__nav h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.showcase__intro {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}

.showcase__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.showcase__tab {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: #cbd5e1;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.15s;
}

.showcase__tab:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateX(2px);
}

.showcase__tab.is-active {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.22) 0%, rgba(234, 88, 12, 0.08) 100%);
  border-color: rgba(234, 88, 12, 0.55);
  box-shadow:
    inset 3px 0 0 var(--accent),
    0 8px 24px rgba(234, 88, 12, 0.12);
  color: #fff;
  transform: translateX(4px);
}

.showcase__tab-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: #64748b;
  min-width: 1.5rem;
}

.showcase__tab.is-active .showcase__tab-num {
  color: #fdba74;
}

.showcase__tab-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.showcase__tab-text strong {
  font-size: 0.95rem;
}

.showcase__tab-text small {
  font-size: 0.8rem;
  color: #94a3b8;
}

.showcase__panels {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.showcase-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  opacity: 0.5;
  transform: translateY(12px) scale(0.985);
  transition: opacity 0.5s var(--motion-ease), transform 0.55s var(--motion-ease);
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.showcase-panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.showcase-panel__mock {
  position: relative;
}

.showcase-panel__mock::before {
  content: "";
  position: absolute;
  inset: 8% 5% -8%;
  background: radial-gradient(ellipse at 50% 60%, var(--glow-orange) 0%, transparent 68%);
  filter: blur(28px);
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  z-index: 0;
}

.showcase-panel.is-active .showcase-panel__mock::before {
  opacity: 1;
}

.showcase-panel__mock .browser-mock {
  position: relative;
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.showcase-panel.is-active .showcase-panel__mock .browser-mock {
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 80px rgba(234, 88, 12, 0.08);
}

.showcase-panel__mock .browser-mock--elevated {
  transform: none;
}

.showcase-panel__mock .browser-mock__frame {
  min-height: 260px;
  background: #eef1f5;
}

.showcase-panel__mock .ui-mock {
  min-height: 260px;
  font-size: 0.72rem;
}

.showcase-panel__text h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.showcase-panel.is-active .showcase-panel__text h3 {
  animation: textPop 0.55s var(--motion-ease-out) both;
}

.showcase-panel__text p {
  color: #94a3b8;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.showcase-panel__text .check-list li {
  transition: opacity 0.35s ease, transform 0.35s var(--motion-ease);
  opacity: 0.75;
  transform: translateX(8px);
}

.showcase-panel.is-active .showcase-panel__text .check-list li {
  opacity: 1;
  transform: translateX(0);
}

.showcase-panel.is-active .showcase-panel__text .check-list li:nth-child(1) { transition-delay: 0.06s; }
.showcase-panel.is-active .showcase-panel__text .check-list li:nth-child(2) { transition-delay: 0.12s; }
.showcase-panel.is-active .showcase-panel__text .check-list li:nth-child(3) { transition-delay: 0.18s; }

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--accent);
}

/* Timeline */

.timeline {
  display: grid;
  gap: 0;
  position: relative;
  margin-left: 1rem;
  padding-left: 2rem;
  border-left: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(234, 88, 12, 0.15) 70%, transparent 100%);
  border-radius: 2px;
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1s var(--motion-ease-out);
}

.timeline.is-visible::before {
  transform: scaleY(1);
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__num {
  position: absolute;
  left: -2.65rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px #fff;
}

.timeline__item.is-visible .timeline__num {
  animation: popIn 0.45s var(--motion-ease-out) both;
}

.timeline__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.timeline__item p {
  margin: 0;
  color: var(--text-muted);
}

.install-box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 16px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: center;
}

.install-box h3 {
  margin: 0 0 0.35rem;
}

.install-box p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.install-box .code-block {
  margin: 0;
}

.install-box__cmd {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.install-copy {
  align-self: flex-start;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.install-copy:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.install-copy.is-copied {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.45);
  color: #6ee7b7;
}

.install-copy__status {
  font-size: 0.8rem;
  color: #94a3b8;
  min-height: 1.2em;
}

.price-card {
  position: relative;
  transition: transform 0.35s var(--motion-ease), box-shadow 0.35s ease, border-color 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card--featured {
  transform: scale(1.03);
}

.price-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.price-card__ribbon {
  position: absolute;
  top: -0.65rem;
  right: 1rem;
  padding: 0.25rem 0.65rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
}

.text-center {
  text-align: center;
}

.cta-band {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  padding: 4rem 1.25rem;
  color: #fff;
  text-align: center;
}

.cta-band__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Pricing page — comparison table */

.pricing-compare {
  overflow-x: auto;
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pricing-compare table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

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

.pricing-compare thead th {
  background: var(--bg-muted);
  font-weight: 700;
  color: var(--text);
}

.pricing-compare thead th:not(:first-child),
.pricing-compare tbody td:not(:first-child) {
  text-align: center;
}

.pricing-compare tbody th {
  font-weight: 600;
  color: var(--text-muted);
  width: 34%;
}

.pricing-compare tbody tr:last-child th,
.pricing-compare tbody tr:last-child td {
  border-bottom: none;
}

.pricing-compare thead th:nth-child(3) {
  color: var(--accent);
}

.pricing-compare__yes {
  color: #059669;
  font-weight: 700;
}

.pricing-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.pricing-includes h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.pricing-includes__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
  line-height: 1.65;
}

.pricing-includes__list li + li {
  margin-top: 0.5rem;
}

.pricing-includes__list--muted {
  color: var(--text-muted);
}

.pricing-faq {
  max-width: 52rem;
  margin: 0 auto;
}

.pricing-faq .faq-list {
  gap: 0.65rem;
}

.pricing-faq .faq-item {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pricing-faq .faq-item:hover {
  box-shadow: var(--shadow-md);
}

.pricing-faq .faq-item.is-open {
  border-color: #fed7aa;
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.08);
}

.pricing-faq .faq-item__trigger {
  padding: 1rem 1.15rem;
}

.pricing-faq .faq-item__panel {
  padding: 0 1.15rem;
}

.pricing-faq .faq-item.is-open .faq-item__panel {
  padding: 0 1.15rem 1rem;
}

.pricing-faq__more {
  margin-top: 1.5rem;
  text-align: center;
}

@media (max-width: 760px) {
  .pricing-includes {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Social proof */

.section--social-proof {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.proof-metric {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
}

.proof-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.proof-metric span {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.section-foot--center {
  text-align: center;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.proof-point {
  padding: 1.35rem 1.4rem;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(234, 88, 12, 0.14);
  border-top: 3px solid var(--accent);
}

.proof-point h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.proof-point p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.site-footer--rich .site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand p {
  margin: 0.75rem 0 0;
  max-width: 18rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.logo--footer {
  font-size: 1.25rem;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.site-footer__cols strong {
  display: block;
  color: #e2e8f0;
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
}

.site-footer__cols a {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.site-footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
  color: #64748b;
  font-size: 0.85rem;
}

/* Reveal animations */

@keyframes headerEnter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowDrift {
  0%, 100% {
    opacity: 1;
    transform: scale(1) translate(0, 0);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.04) translate(1%, -1%);
  }
}

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

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--motion-duration) var(--motion-ease-out), transform var(--motion-duration) var(--motion-ease-out);
  will-change: opacity, transform;
}

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

.reveal--delay {
  transition-delay: 0.15s;
}

.reveal--left {
  transform: translateX(-28px);
}

.reveal--left.is-visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(28px);
}

.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.94);
}

.reveal--scale.is-visible {
  transform: scale(1);
}

.hero .reveal.is-visible .pill {
  animation: heroFadeUp 0.6s var(--motion-ease-out) both;
}

.hero .reveal.is-visible h1 {
  animation: heroFadeUp 0.7s var(--motion-ease-out) 0.08s both;
}

.hero .reveal.is-visible .lead {
  animation: heroFadeUp 0.7s var(--motion-ease-out) 0.16s both;
}

.hero .reveal.is-visible .hero__actions {
  animation: heroFadeUp 0.7s var(--motion-ease-out) 0.24s both;
}

.hero .reveal.is-visible .hero__stats {
  animation: heroFadeUp 0.7s var(--motion-ease-out) 0.32s both;
}

.hero__trust.reveal.is-visible {
  animation: heroFadeUp 0.75s var(--motion-ease-out) 0.4s both;
}

.proof-metric.reveal.is-visible strong {
  animation: popIn 0.5s var(--motion-ease-out) 0.1s both;
}

.icon-card.reveal.is-visible .icon-card__icon {
  animation: popIn 0.45s var(--motion-ease-out) both;
}

.browser-mock--hero {
  transition: transform 0.6s var(--motion-ease-out), box-shadow 0.6s ease;
}

.hero__visual.reveal.is-visible .browser-mock--hero {
  animation: heroFadeUp 0.85s var(--motion-ease-out) 0.12s both;
}

.hero__visual.reveal.is-visible .hero__float {
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    transform: none;
  }

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

  .showcase__panels {
    gap: 1.75rem;
  }

  .showcase__nav-wrap {
    position: static;
  }

  .showcase-panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
  }

  .install-box {
    grid-template-columns: 1fr;
  }

  .site-footer--rich .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .browser-mock--hero,
  .browser-mock--elevated {
    transform: none;
  }

  .hero__float--1 { left: 0; }
  .hero__float--2 { right: 0; }

  .hero--fullscreen {
    min-height: calc(100svh - var(--header-h));
  }

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

  .docs-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .faq-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-quick-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero--premium {
    padding-top: 3.5rem;
  }

  .hero__stats {
    gap: 1rem;
  }

  .site-nav {
    gap: 0.75rem;
  }

  .site-footer__cols {
    grid-template-columns: 1fr;
  }
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(15, 23, 42, 0.96);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  color: #e2e8f0;
  backdrop-filter: blur(8px);
  animation: slideUp 0.55s var(--motion-ease-out) both;
}

.cookie-consent__message {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.cookie-consent__link {
  color: #fdba74;
  text-decoration: underline;
}

.cookie-consent__link:hover {
  color: #fb923c;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .showcase-panel,
  .hero__float,
  .hero__glow,
  .btn,
  .trust-chip,
  .cookie-consent,
  .timeline::before {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .showcase-panel.is-active .showcase-panel__mock::before {
    opacity: 0.6;
  }

  .price-card--featured {
    transform: none;
  }

  .ui-mock--charts-ready .ui-mock__chart-bar {
    height: var(--h, 50%);
  }
}
