:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --primary: #2c5dfc;
  --primary-dark: #1d3ed3;
  --accent: #16a34a;
  --warn: #f59e0b;
  --alert: #ef4444;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

[data-animate] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 4.25rem;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--muted);
}

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

.nav-links .is-active {
  color: var(--text);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.2s ease;
}

.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top left, #dbeafe, transparent 55%),
    radial-gradient(circle at 80% 20%, #e0f2fe, transparent 45%);
}

.page-hero {
  padding: 4.5rem 0 2rem;
  background: radial-gradient(circle at top left, #dbeafe, transparent 55%);
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

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

h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin: 0.4rem 0 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: var(--surface);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

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

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

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

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

.stat {
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0;
}

.stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  display: grid;
  gap: 1.5rem;
}

.panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.panel-title {
  margin: 0;
  font-weight: 600;
}

.panel-subtitle {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.status {
  background: rgba(22, 163, 74, 0.15);
  color: var(--accent);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.queue-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.queue-list li {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.queue-status {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.queue-status.ok {
  background: rgba(22, 163, 74, 0.15);
  color: var(--accent);
}

.queue-status.warn {
  background: rgba(245, 158, 11, 0.18);
  color: var(--warn);
}

.queue-status.alert {
  background: rgba(239, 68, 68, 0.16);
  color: var(--alert);
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.panel-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-callout {
  background: #0f172a;
  color: #fff;
  border-radius: 20px;
  padding: 1.5rem;
}

.callout-title {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.callout-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.trust {
  padding: 2rem 0;
}

.trust-label {
  color: var(--muted);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  text-align: center;
  font-weight: 600;
  color: #1e293b;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: #eef2ff;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-subtitle {
  color: var(--muted);
  margin-top: 0.4rem;
}

/* Features section */
.features {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, #eef2ff 100%);
}

.features__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.features__header {
  max-width: 560px;
  margin-bottom: 2.75rem;
}

.features__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.features__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.features__subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

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

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

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

.feature-card {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  border-color: rgba(44, 93, 252, 0.25);
  transform: translateY(-2px);
}

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

.feature-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(44, 93, 252, 0.1);
  border-radius: 8px;
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}

.feature-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

/* Workflow section */
.workflow {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(180deg, #eef2ff 0%, var(--bg) 100%);
}

.workflow__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.workflow__header {
  max-width: 560px;
  margin-bottom: 2.75rem;
}

.workflow__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.workflow__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.workflow__subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

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

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

.workflow__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 1.75rem;
}

.workflow-step:last-child {
  padding-bottom: 0;
}

.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.125rem;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(44, 93, 252, 0.2) 100%);
  border-radius: 1px;
}

.workflow-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(44, 93, 252, 0.35);
  z-index: 1;
}

.workflow-step__body {
  min-width: 0;
}

.workflow-step__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}

.workflow-step__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.workflow__preview {
  position: sticky;
  top: 6rem;
}

@media (max-width: 900px) {
  .workflow__preview {
    position: static;
  }
}

.workflow-preview-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.workflow-preview-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.workflow-preview-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.workflow-preview-card__badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.25rem 0.6rem;
  background: var(--bg);
  border-radius: 6px;
}

.workflow-preview-card__bars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.workflow-bar {
  display: grid;
  grid-template-columns: 4.5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.75rem;
}

.workflow-bar__label {
  font-size: 0.85rem;
  color: var(--muted);
}

.workflow-bar__track {
  height: 8px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.workflow-bar__fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s ease;
}

.workflow-bar__fill--ok {
  background: var(--accent);
}

.workflow-bar__fill--warn {
  background: var(--warn);
}

.workflow-bar__fill--alert {
  background: var(--alert);
}

.workflow-bar__value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.workflow-preview-card__actions-title {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.workflow-preview-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.workflow-preview-card__list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.35rem;
}

.workflow-preview-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.8rem;
}

.progress {
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin: 0.8rem 0;
  font-weight: 600;
  color: #fff;
  font-size: 0.85rem;
}

.progress-bar {
  background: var(--accent);
  padding: 0.5rem 0.8rem;
}

.progress-bar.warn {
  background: var(--warn);
}

.progress-bar.alert {
  background: var(--alert);
}

.action-list {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* Pricing banner */
.pricing-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #fff;
  padding: 3.5rem 1.5rem;
}

.pricing-banner__inner {
  width: min(1000px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.pricing-banner__content {
  flex: 1 1 280px;
}

.pricing-banner__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-banner__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}

.pricing-banner__subtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-banner__offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.pricing-banner__price-block {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.pricing-banner__currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-banner__amount {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.pricing-banner__period {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-banner__trial {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #0f172a;
  background: var(--accent);
  border-radius: 6px;
}

.pricing-banner__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-banner__features li {
  position: relative;
  padding-left: 1rem;
}

.pricing-banner__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.pricing-banner__cta {
  flex-shrink: 0;
}

.pricing-banner__compliance {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
}

@media (max-width: 640px) {
  .pricing-banner__offer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pricing-banner__price-block {
    justify-content: center;
  }

  .pricing-banner__features {
    justify-content: center;
  }

  .pricing-banner__features li {
    padding-left: 1rem;
  }
}

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

.quote {
  font-style: italic;
  color: var(--muted);
}

.author {
  font-weight: 600;
  margin-top: 1.5rem;
}

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

.cta {
  background: radial-gradient(circle at top right, #bfdbfe, transparent 55%);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.cta-list {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(44, 93, 252, 0.25);
  border-color: var(--primary);
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.form-note.success {
  color: var(--accent);
}

.form-note.error {
  color: var(--alert);
}

.hero-compliance {
  margin: 1.5rem auto 0;
  max-width: 560px;
  padding: 0 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

/* Scan → Upload → Print flow strip */
.flow-strip {
  margin-top: 2.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
}

.flow-strip__label {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.flow-strip__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.flow-step {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  min-width: 100px;
  opacity: 0;
  animation: flow-step-in 0.6s ease forwards;
}

.flow-step--scan { animation-delay: 0.2s; }
.flow-step--upload { animation-delay: 0.5s; }
.flow-step--print { animation-delay: 0.8s; }

@keyframes flow-step-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.flow-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  animation: flow-icon-pulse 2.5s ease-in-out infinite;
}

.flow-step--scan .flow-step__icon { animation-delay: 0s; }
.flow-step--upload .flow-step__icon { animation-delay: 0.4s; }
.flow-step--print .flow-step__icon { animation-delay: 0.8s; }

@keyframes flow-icon-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

.flow-step__text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.flow-strip__arrow {
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0;
  animation: flow-arrow-in 0.4s ease forwards;
}

.flow-strip__steps .flow-strip__arrow:nth-of-type(1) { animation-delay: 0.4s; }
.flow-strip__steps .flow-strip__arrow:nth-of-type(2) { animation-delay: 0.7s; }

@keyframes flow-arrow-in {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 0.8;
    transform: translateX(0);
  }
}

@media (max-width: 480px) {
  .flow-strip__steps {
    gap: 0.5rem;
  }
  .flow-step {
    min-width: 80px;
    padding: 0.75rem 1rem;
  }
  .flow-step__icon svg {
    width: 32px;
    height: 32px;
  }
}

.form-compliance {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
}

.form-disclaimer {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.form-disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

.policy-content {
  display: grid;
  gap: 1.5rem;
}

.policy-section h3 {
  margin-top: 0;
}

.policy-list {
  margin: 0.8rem 0 0 1.2rem;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0 2rem;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer .logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.site-footer .logo img {
  height: 4.25rem;
  width: auto;
  display: block;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.footer-note {
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 1.5rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: 4%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 4rem;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

/* ===== Download page ===== */
.download-banner {
  padding: 3.5rem 1.5rem 4rem;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #334155 100%);
  color: #fff;
}

.download-banner__inner {
  width: min(1000px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.download-banner__content {
  flex: 1 1 320px;
}

.download-banner__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.download-banner__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}

.download-banner__subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

/* Printer animation */
.printer-animation {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 160px;
}

.printer {
  position: relative;
  width: 100px;
  height: 120px;
}

.printer__top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: linear-gradient(180deg, #475569 0%, #334155 100%);
  border-radius: 6px 6px 0 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.printer__body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 95px;
  background: linear-gradient(180deg, #64748b 0%, #475569 50%, #334155 100%);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.printer__panel {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 8px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 4px;
  animation: printer-panel 2.5s ease-in-out infinite;
}

@keyframes printer-panel {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(59, 130, 246, 0.5); }
}

.printer__tray {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 12px;
  background: linear-gradient(180deg, #475569 0%, #334155 100%);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.printer__paper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 14px;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.printer__paper--out {
  bottom: 6px;
  animation: paper-out 2.4s ease-in-out infinite;
}

@keyframes paper-out {
  0% { bottom: 6px; opacity: 0; }
  12% { opacity: 1; }
  55% { bottom: -32px; opacity: 1; }
  70% { opacity: 0.6; }
  85% { opacity: 0; bottom: -32px; }
  100% { bottom: 6px; opacity: 0; }
}

@media (max-width: 640px) {
  .download-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .printer-animation {
    order: -1;
    min-height: 120px;
  }
}

/* Download body: platform selector */
.download-body {
  padding: 3rem 1.5rem 4.5rem;
  background: var(--bg);
}

.download-body__inner {
  width: min(560px, 92%);
  margin: 0 auto;
}

.platform-selector__label {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.platform-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.platform-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.platform-tab:hover {
  color: var(--text);
}

.platform-tab.is-active {
  color: var(--primary);
  background: rgba(44, 93, 252, 0.1);
  box-shadow: 0 2px 8px rgba(44, 93, 252, 0.15);
}

.platform-tab__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.platform-tab__icon svg {
  width: 100%;
  height: 100%;
}

.platform-panels {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.platform-panel {
  display: none;
}

.platform-panel.is-active {
  display: block;
}

.platform-panel__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.platform-panel__desc {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.btn--download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.platform-panel__note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}
