/* FarndaCred marketing — shared design system */
:root {
  --farnda-navy: #1e3a5f;
  --farnda-navy-muted: #2d4f75;
  --farnda-emerald: #059669;
  --farnda-emerald-light: #10b981;
  --farnda-emerald-dark: #047857;
  --farnda-canvas: #f8fafc;
  --farnda-app-canvas: #f4f7fa;
  --farnda-surface: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --white: #ffffff;
  --danger: #dc2626;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-body: var(--font-sans);
  --radius: 12px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(30, 58, 95, 0.06);
  --max: 68.75rem;
  --space: 0.25rem;
  --section-pad: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--farnda-canvas);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--farnda-emerald-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--farnda-emerald);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tabular {
  font-variant-numeric: tabular-nums;
}

/* —— Layout —— */
.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.cols-2,
.cols-3,
.cols-4 {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .cols-3,
  .cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .cols-2,
  .cols-3,
  .cols-4 {
    grid-template-columns: 1fr;
  }
}

/* —— Header / nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  min-height: 3.5rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--farnda-navy);
}

.brand img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--farnda-navy);
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.1rem;
  height: 2px;
  background: var(--farnda-navy);
}

.nav-toggle-bars::before {
  top: -5px;
}

.nav-toggle-bars::after {
  top: 5px;
}

.nav-panel {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.15rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--farnda-navy-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--farnda-navy);
}

.nav-links a[aria-current="page"] {
  color: var(--farnda-navy);
  border-bottom-color: var(--farnda-emerald);
}

.nav-cta {
  margin-left: 0.35rem;
}

.nav-links .btn-primary,
.nav-links .btn-primary:hover,
.nav-links .btn-primary[aria-current="page"] {
  color: var(--white);
  border-bottom: 0;
}

.nav-backdrop {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    z-index: 45;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    width: min(20rem, 88vw);
    height: 100%;
    background: var(--white);
    border-left: 1px solid var(--line);
    padding: 1.25rem 1.25rem 2rem;
    transform: translateX(100%);
    transition: transform 0.22s ease;
    align-items: stretch;
  }

  body.nav-open .nav-panel {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.7rem 0.25rem;
    border-bottom: 0;
    font-size: 1.05rem;
  }

  .nav-links a[aria-current="page"] {
    color: var(--farnda-emerald-dark);
  }

  .nav-cta {
    margin: 0.75rem 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--farnda-emerald);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--farnda-emerald-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--farnda-navy);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: var(--farnda-navy);
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1.05rem;
}

.hero .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--farnda-navy);
  padding: 4rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.15rem, 4.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  text-wrap: pretty;
}

.hero .lede {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}

.hero-tagline {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--farnda-emerald-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section .hero-actions {
  margin-bottom: 0;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.hero-metrics li {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
  white-space: nowrap;
}

.hero-metrics a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-metrics a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics li {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  :root {
    --section-pad: 3.5rem;
  }

  .hero {
    padding: 2.75rem 0 2.5rem;
  }
}

.hero-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.hero-shot img {
  width: 100%;
  display: block;
}

/* —— LMS preview (FarndaCred Java AppShell screens) —— */
.lms-preview {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.45;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
}

.lms-frame {
  display: grid;
  grid-template-columns: 9.25rem minmax(0, 1fr);
  min-height: 22rem;
  background: var(--farnda-app-canvas);
}

.lms-sidebar {
  background: var(--white);
  border-right: 1px solid rgba(226, 232, 240, 0.85);
  min-height: 0;
}

.lms-logo-wrap {
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.lms-logo-box {
  padding: 0.3rem 0.4rem;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 8px;
  background: var(--white);
}

.lms-logo-box img {
  height: 1.85rem;
  width: auto;
  margin-inline: auto;
}

.lms-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0.3rem;
  overflow: hidden;
}

.lms-nav span {
  display: block;
  padding: 0.22rem 0.4rem;
  border-radius: 6px;
  font-size: 0.46rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #475569;
}

.lms-nav .is-active {
  background: #ecfdf5;
  color: var(--farnda-navy);
}

.lms-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--farnda-app-canvas);
}

.lms-meta-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  background: rgba(244, 247, 250, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 400;
}

.lms-meta-strip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  background: linear-gradient(90deg, #fff 0%, #fff 72%, rgba(236, 253, 245, 0.45) 100%);
}

.lms-header-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.lms-header-actions {
  display: flex;
  gap: 0.65rem;
  color: var(--farnda-navy);
  font-size: 0.58rem;
  font-weight: 500;
  white-space: nowrap;
}

.lms-title-accent {
  width: 3px;
  height: 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--farnda-emerald) 0%, var(--farnda-emerald-dark) 100%);
}

.lms-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--farnda-navy);
}

.lms-body {
  padding: 0.5rem 0.65rem 0.7rem;
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.lms-meta-banner {
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-left: 3px solid var(--farnda-emerald);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(236, 253, 245, 0.4) 0%, #fff 100%);
  color: #475569;
  font-size: 0.62rem;
}

.lms-meta-banner strong {
  color: var(--farnda-navy);
  font-weight: 600;
}

.lms-dash-top {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(7.5rem, 1fr);
  gap: 0.45rem;
}

.lms-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.lms-mid-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 0.45rem;
}

.lms-panel {
  min-width: 0;
  padding: 0.5rem 0.55rem;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 10px;
  background: var(--white);
  border-top: 2px solid #cbd5e1;
}

.lms-panel--flush {
  padding: 0;
}

.lms-panel--flush .lms-mini-table th,
.lms-panel--flush .lms-mini-table td {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.lms-panel--navy {
  border-top-color: var(--farnda-navy);
}

.lms-panel--emerald {
  border-top-color: var(--farnda-emerald);
}

.lms-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.4rem 0.55rem;
  border-bottom: 1px solid #ecfdf5;
  background: linear-gradient(90deg, rgba(236, 253, 245, 0.4) 0%, #fff 100%);
  font-size: 0.55rem;
  color: #64748b;
}

.lms-section-title {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--farnda-navy);
}

.lms-panel-label {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--farnda-navy-muted);
  line-height: 1.35;
}

.lms-amount {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--farnda-navy);
  font-variant-numeric: tabular-nums;
}

.lms-panel-note {
  margin: 0.3rem 0 0;
  font-size: 0.58rem;
  color: #64748b;
}

.lms-redact-value {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
  color: #94a3b8;
  font-weight: 600;
}

.lms-mini-table {
  width: 100%;
  margin-top: 0.2rem;
  border-collapse: collapse;
  font-size: 0.55rem;
}

.lms-panel--flush .lms-mini-table {
  margin: 0;
  padding: 0 0.3rem 0.3rem;
}

.lms-mini-table th,
.lms-mini-table td {
  padding: 0.2rem 0.25rem;
  text-align: right;
  border-bottom: 1px solid #f1f5f9;
}

.lms-mini-table thead th {
  color: #64748b;
  font-weight: 600;
}

.lms-mini-table tbody th {
  text-align: left;
  color: #475569;
  font-weight: 500;
}

.lms-attention {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.lms-attn-row {
  margin: 0;
  font-size: 0.58rem;
  color: #475569;
}

.lms-attn-row span {
  font-weight: 600;
  color: var(--farnda-navy);
}

.lms-cover-track {
  margin-top: 0.4rem;
  height: 0.35rem;
  overflow: hidden;
  border-radius: 999px;
  background: #f1f5f9;
}

.lms-cover-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--farnda-emerald);
}

.lms-tabs {
  display: flex;
  gap: 0.15rem;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.lms-tabs span {
  flex: 0 0 auto;
  padding: 0.4rem 0.45rem 0.35rem;
  border-bottom: 3px solid transparent;
  color: #64748b;
  font-size: 0.58rem;
  font-weight: 500;
  white-space: nowrap;
}

.lms-tabs .is-active {
  border-bottom-color: var(--farnda-emerald-light);
  color: var(--farnda-navy);
  font-weight: 600;
}

.lms-toolbar {
  padding: 0.35rem 0;
  font-size: 0.6rem;
  color: #64748b;
}

.lms-toolbar strong {
  color: var(--farnda-navy);
  font-weight: 600;
}

.lms-toolbar-sep {
  margin: 0 0.25rem;
  color: #cbd5e1;
}

.lms-panel-title {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1e293b;
}

.lms-hint,
.lms-selected {
  margin: 0;
  font-size: 0.58rem;
  color: #64748b;
}

.lms-selected strong {
  color: var(--farnda-navy);
  font-weight: 600;
}

.lms-eod-dates {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
}

.lms-eod-dates span {
  font-size: 0.58rem;
  color: #64748b;
}

.lms-eod-dates strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--farnda-navy);
}

.lms-form-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.4rem 0.5rem;
  padding: 0.55rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.lms-eod-card {
  flex-direction: column;
  align-items: stretch;
}

.lms-search-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.4rem;
}

.lms-ff {
  display: grid;
  gap: 0.15rem;
  min-width: 5.5rem;
}

.lms-ff-label {
  font-size: 0.55rem;
  font-weight: 500;
  color: #475569;
}

.lms-ff-value {
  min-height: 1.45rem;
  padding: 0.22rem 0.4rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
  color: #334155;
  font-size: 0.6rem;
}

.lms-check {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.6rem;
  color: #334155;
}

.lms-check-box {
  flex: 0 0 0.7rem;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.1rem;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  background: #fff;
}

.lms-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 600;
  white-space: nowrap;
}

.lms-btn-primary {
  background: var(--farnda-emerald);
  color: #fff;
}

.lms-btn-navy {
  background: var(--farnda-navy);
  color: #fff;
}

.lms-btn-ghost {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #1e293b;
}

.lms-report-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}

.lms-report-cards span {
  padding: 0.4rem 0.35rem;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 8px;
  background: #fff;
  color: #475569;
  font-size: 0.55rem;
  font-weight: 500;
  text-align: center;
}

.lms-report-cards .is-active {
  border-color: rgba(5, 150, 105, 0.35);
  background: rgba(236, 253, 245, 0.45);
  color: var(--farnda-navy);
}

.lms-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.58rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.lms-data-table th,
.lms-data-table td {
  padding: 0.3rem 0.4rem;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
  color: #334155;
}

.lms-data-table thead th {
  background: #f8fafc;
  color: #64748b;
  font-weight: 600;
  font-size: 0.52rem;
  text-transform: uppercase;
}

.lms-data-table .num {
  text-align: right;
}

.lms-fx-banner {
  margin: 0;
  padding: 0.4rem 0.55rem;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  background: #f0f9ff;
  color: #0c4a6e;
  font-size: 0.58rem;
}

.lms-ifrs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.lms-ifrs-col {
  padding: 0.5rem;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 10px;
  background: #fff;
}

.lms-ifrs-col > p {
  margin: 0 0 0.4rem;
  font-size: 0.58rem;
  font-weight: 600;
  color: #334155;
}

.lms-ifrs-amount {
  padding: 0.35rem 0.45rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.lms-ifrs-amount--live {
  border-color: #d1fae5;
  background: #ecfdf5;
}

.lms-ifrs-amount small {
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  color: #64748b;
}

.lms-ifrs-amount--live small {
  color: #047857;
}

.lms-ifrs-amount strong {
  font-size: 0.85rem;
  color: var(--farnda-navy);
}

.lms-ifrs-table {
  margin-top: 0.35rem;
}

.feature-visual .lms-preview {
  min-height: 16rem;
}

@media (max-width: 720px) {
  .lms-meta-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lms-frame {
    grid-template-columns: 1fr;
  }

  .lms-sidebar {
    display: none;
  }

  .lms-header-actions {
    display: none;
  }

  .lms-kpi-grid,
  .lms-mid-grid,
  .lms-dash-top,
  .lms-ifrs-grid,
  .lms-report-cards {
    grid-template-columns: 1fr;
  }
}

.hero .lms-preview {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

/* —— Product stage (redacted LMS chrome) —— */
.product-stage {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--farnda-app-canvas);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink);
}

.hero .product-stage {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.app-frame {
  display: grid;
  grid-template-columns: 9.75rem minmax(0, 1fr);
  min-height: 18.5rem;
}

.app-side {
  background: var(--white);
  border-right: 1px solid var(--line);
}

.app-side-brand {
  padding: 0.65rem 0.6rem;
  border-bottom: 1px solid var(--line);
}

.app-side-brand img {
  height: 28px;
  width: auto;
  margin-inline: auto;
}

.app-side nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.4rem;
}

.app-side span {
  display: block;
  padding: 0.32rem 0.5rem;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.app-side .is-active {
  background: rgba(5, 150, 105, 0.12);
  color: var(--farnda-navy);
}

.app-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0.8rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--farnda-navy);
}

.app-bar::before {
  content: "";
  width: 3px;
  height: 0.85rem;
  border-radius: 2px;
  background: var(--farnda-emerald);
}

.app-meta {
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  padding: 0.3rem 0.8rem;
  color: var(--muted);
  font-size: 0.65rem;
}

.app-body {
  padding: 0.7rem;
  display: grid;
  gap: 0.55rem;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.kpi {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem 0.55rem;
}

.kpi-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.redact {
  display: block;
  margin-top: 0.4rem;
  height: 0.7rem;
  width: 72%;
  border-radius: 4px;
  background: #cbd5e1;
  filter: blur(3px);
}

.redact-sm {
  width: 48%;
  height: 0.55rem;
  margin-top: 0.2rem;
}

.redact-center {
  margin-inline: auto;
  width: 55%;
}

.ecl-bar-lg {
  width: 88%;
}

.ecl-bar-md {
  width: 55%;
}

.ecl-bar-sm {
  width: 28%;
}

.redact-text {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.18em;
  color: #94a3b8;
  font-weight: 600;
}

.app-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.app-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.65rem;
}

.app-table th {
  text-align: left;
  padding: 0.38rem 0.5rem;
  background: #f8fafc;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.58rem;
}

.app-table td {
  padding: 0.38rem 0.5rem;
  border-top: 1px solid #f1f5f9;
  color: #334155;
}

.app-table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.teller-panel,
.eod-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem;
}

.teller-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.fake-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.fake-input {
  height: 1.55rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  padding: 0 0.4rem;
  color: #94a3b8;
  font-size: 0.65rem;
}

.waterfall-list {
  display: grid;
  gap: 0.22rem;
}

.waterfall-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 1.2rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: #ecfdf5;
  color: var(--farnda-emerald-dark);
  font-size: 0.62rem;
  font-weight: 600;
}

.waterfall-list span:last-child {
  background: #f1f5f9;
  color: var(--farnda-navy);
}

.eod-jobs {
  display: grid;
  gap: 0.3rem;
}

.eod-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafc;
  font-size: 0.65rem;
}

.eod-job .status {
  color: var(--farnda-emerald-dark);
  font-weight: 600;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.fx-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.4rem;
  align-items: center;
}

.fx-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.6rem;
  text-align: center;
}

.fx-box small {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fx-box strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
  color: var(--farnda-navy);
}

.fx-arrow {
  color: var(--farnda-emerald);
  font-weight: 700;
}

.ecl-bars {
  display: grid;
  gap: 0.4rem;
}

.ecl-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr 1.5rem;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.62rem;
  color: var(--muted);
}

.ecl-bar {
  height: 0.7rem;
  border-radius: 4px;
  background: #cbd5e1;
  filter: blur(2px);
}

@media (max-width: 720px) {
  .app-frame {
    grid-template-columns: 1fr;
  }

  .app-side {
    display: none;
  }

  .kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* —— Sections —— */
.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: #f1f5f9;
  border-block: 1px solid var(--line);
}

.section h2,
.page-hero h1,
.cta-band h2,
.feature-copy h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--farnda-navy);
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  margin: 0 0 0.6rem;
}

.section .section-lede {
  margin: 0 0 2rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.currency-note {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.feature,
.audience-card,
.module-card,
.balance-card,
.extra-tile,
.diff-card,
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.4rem 1.35rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: var(--white);
}

.feature h3,
.audience-card h3,
.module-card h3,
.balance-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--farnda-navy);
  font-family: var(--font-sans);
}

.feature p,
.audience-card p,
.balance-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}

.feature .icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.12);
  color: var(--farnda-emerald-dark);
}

.feature .icon svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

/* —— Lifecycle stepper —— */
.stepper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.stepper-step {
  position: relative;
  padding-right: 0.5rem;
}

.stepper-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 2.4rem;
  right: -0.35rem;
  height: 1px;
  background: var(--line);
}

.step-num {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--farnda-navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.stepper-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--farnda-navy);
}

.stepper-step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

@media (max-width: 900px) {
  .stepper {
    grid-template-columns: 1fr;
  }

  .stepper-step:not(:last-child)::after {
    display: none;
  }

  .stepper-step {
    padding: 0 0 1rem;
    border-bottom: 1px solid var(--line);
  }

  .stepper-step:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* —— Page hero —— */
.page-hero {
  padding: 3rem 0 2rem;
  background: var(--farnda-canvas);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.65rem);
  margin: 0 0 0.7rem;
  line-height: 1.15;
}

.page-hero p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.5;
}

/* —— Feature chapters —— */
.feature-stack {
  display: grid;
  gap: 3rem;
}

.feature-block {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 860px) {
  .feature-block {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.25rem;
  }

  .feature-block.reverse .feature-visual {
    order: 2;
  }

  .feature-block.reverse .feature-copy {
    order: 1;
  }
}

.feature-copy h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

.feature-copy p {
  margin: 0 0 1rem;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.55;
}

.feature-copy p:last-child {
  margin-bottom: 0;
}

.feature-visual .product-stage {
  min-height: 14rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.15rem 0 0.85rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.65rem;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--farnda-navy);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--line);
}

.chip-accent {
  background: rgba(5, 150, 105, 0.12);
  border-color: rgba(5, 150, 105, 0.25);
  color: var(--farnda-emerald-dark);
}

.profile-pair {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

@media (min-width: 520px) {
  .profile-pair {
    grid-template-columns: 1fr 1fr;
  }
}

.profile-card {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #f8fafc;
}

.profile-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--farnda-navy);
  font-size: 0.98rem;
}

.profile-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.extras-heading {
  margin: 0 0 1.15rem;
}

.extra-tile {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
}

.extra-tile .tile-icon {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(30, 58, 95, 0.08);
  color: var(--farnda-navy);
}

.extra-tile .tile-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.extra-tile p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--farnda-navy);
  line-height: 1.4;
}

.callout {
  margin: 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--farnda-emerald);
  background: rgba(5, 150, 105, 0.1);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--farnda-navy);
  font-size: 1.02rem;
  line-height: 1.5;
}

.diff-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--farnda-navy);
}

.diff-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

/* —— Modules —— */
.module-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.module-card li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.module-card li + li {
  margin-top: 0.3rem;
}

.balance-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(30, 58, 95, 0.08);
  color: var(--farnda-navy-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* —— Prose —— */
.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--farnda-navy);
  margin: 2rem 0 0.6rem;
  font-size: 1.45rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.55;
}

/* —— Trial form —— */
.trial-wrap {
  max-width: 48rem;
}

.trial-form {
  display: grid;
  gap: 1.35rem;
}

.form-panel {
  padding: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: var(--white);
}

@media (min-width: 640px) {
  .form-panel {
    padding: 1.75rem;
  }
}

.form-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

.form-panel-head h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--farnda-navy);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--farnda-navy-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.form-grid {
  display: grid;
  gap: 1.05rem 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid .full {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .form-grid,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }
}

.field {
  margin: 0;
}

.field label,
.field-group-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}

.field .label-sm {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.field-hint {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.8rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
  background: var(--farnda-surface);
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--farnda-emerald);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
}

.field-error {
  display: none;
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: var(--danger);
}

.field.is-invalid .field-error,
.is-invalid > .field-error {
  display: block;
}

.tier-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.1rem;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  cursor: pointer;
}

.tier-card:hover {
  border-color: #cbd5e1;
  background: var(--white);
}

.tier-card:has(input:checked) {
  border-color: var(--farnda-emerald);
  background: var(--white);
}

.tier-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tier-check {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: var(--farnda-emerald);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  opacity: 0;
}

.tier-card:has(input:checked) .tier-check {
  opacity: 1;
}

.tier-name {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--farnda-navy-muted);
}

.tier-price {
  margin: 0.4rem 0 0;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--farnda-navy);
  font-variant-numeric: tabular-nums;
}

.tier-period {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.tier-who {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--muted);
}

.tier-card ul {
  margin: 0.85rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 0.85rem;
  color: #475569;
}

.tier-card li + li {
  margin-top: 0.3rem;
}

.form-panel-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.form-note {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
}

.form-success,
.form-error {
  display: none;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.form-success.is-visible {
  display: block;
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.35);
  color: var(--farnda-emerald-dark);
}

.form-error.is-visible {
  display: block;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* —— CTA band —— */
.cta-band {
  padding: 3.25rem 0;
  background: var(--farnda-navy);
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin: 0 0 0.6rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
}

/* —— Pricing —— */
.pricing-card {
  position: relative;
}

.pricing-card-featured {
  border-color: var(--farnda-emerald);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.pricing-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.12);
  color: var(--farnda-emerald-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-card .tier-name {
  font-size: 0.92rem;
}

.pricing-features {
  flex: 1;
  margin: 1rem 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 0.92rem;
  color: #475569;
}

.pricing-features li + li {
  margin-top: 0.35rem;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: var(--white);
}

.compare-table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 0.8rem 0.95rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.compare-table thead th {
  background: #f8fafc;
  color: var(--farnda-navy);
  font-weight: 700;
  font-size: 0.85rem;
}

.compare-table tbody th[scope="row"] {
  text-align: left;
  font-weight: 600;
  color: var(--farnda-navy);
  background: #fafbfc;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .check {
  display: inline-grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.12);
  color: var(--farnda-emerald-dark);
  font-weight: 700;
  font-size: 0.8rem;
}

/* —— Footer —— */
.site-footer {
  padding: 2.25rem 0 1.75rem;
  background: var(--farnda-navy);
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-trust {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: #94a3b8;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* —— Motion —— */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: rise 0.65s ease both;
  }

  .hero-shot,
  .hero .lms-preview,
  .hero .product-stage {
    animation: rise 0.75s ease both;
    animation-delay: 0.08s;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:active {
    transform: none;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
