:root {
  --ink: #07152f;
  --ink-2: #0e2450;
  --blue: #2778ee;
  --aqua: #43c6d8;
  --violet: #7c55e8;
  --green: #1aae76;
  --paper: #f7faff;
  --muted: #60708f;
  --line: #e2e9f4;
  --surface: #ffffff;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow: 0 22px 56px rgba(14, 36, 80, 0.11);
  --header-height: 68px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 14px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  padding-bottom: calc(66px + env(safe-area-inset-bottom));
  background: var(--surface);
  color: var(--ink);
  font-family: Alexandria, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

button,
a[href] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #65d9ef;
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 14px);
}

.container {
  width: min(var(--container), calc(100% - 28px));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: -5rem;
  right: 1rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(15, 36, 74, 0.09);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 9px;
}

.brand img {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 11px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.25;
}

.brand b {
  font-size: 15px;
  letter-spacing: -0.4px;
}

.brand small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
}

.nav,
.nav-cta .text-link,
.nav-cta .button {
  display: none;
}

.nav-cta {
  margin-inline-start: auto;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: grid;
  flex: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #f2f6fc;
}

.menu-button i {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.is-open i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open i:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 14px;
  left: 14px;
  max-height: min(72vh, 550px);
  display: grid;
  gap: 3px;
  overflow-y: auto;
  padding: 12px;
  visibility: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 16px 16px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(14, 36, 80, 0.14);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mobile-menu > a:not(.button):not(.outline-button) {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 7px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}

.mobile-menu .button,
.mobile-menu .outline-button {
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
}

/* Shared components */
.button,
.outline-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 10px;
}

.outline-button {
  border-color: #b8d3fb;
  background: transparent;
  color: var(--blue);
}

.secondary {
  border-color: #cbdcf6;
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}

.white {
  background: #fff;
  color: var(--blue);
}

.white-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.kicker::before {
  width: 24px;
  height: 2px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  background: currentColor;
  content: "";
}

.kicker.light {
  color: #75d8ee;
}

.section {
  padding: 66px 0;
}

.section h2,
.final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(25px, 7vw, 38px);
  line-height: 1.45;
  letter-spacing: -1px;
}

.section-intro,
.center-heading > p,
.section-heading > p,
.ownership p,
.faq-layout > div > p {
  max-width: 560px;
  color: var(--muted);
  font-size: 13px;
}

.center-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.center-heading > p {
  margin-inline: auto;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading > div {
  max-width: 650px;
}

.section-heading > p {
  margin: 10px 0 0;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 13px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.arrow-link span {
  font-size: 16px;
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 20px 0 0;
  background: linear-gradient(145deg, #06142d 0%, #12376f 54%, #0b6a74 100%);
  color: #fff;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 34% 66% 42% 58%;
  background: #267be9;
  filter: blur(32px);
  opacity: 0.2;
  animation: soft-drift 11s ease-in-out infinite alternate;
}

.glow-one {
  left: -270px;
  bottom: -270px;
}

.glow-two {
  top: -330px;
  right: 15%;
  background: #9459f5;
  animation-delay: -4s;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  padding: 24px 0 36px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(31px, 9vw, 53px);
  line-height: 1.34;
  letter-spacing: -1.5px;
}

.hero h1 em {
  color: #70d7ee;
  font-style: normal;
}

.lead {
  max-width: 630px;
  margin: 0;
  color: #d0dbf0;
  font-size: 13px;
}

.hero-actions {
  display: grid;
  gap: 11px;
  margin: 22px 0;
}

.hero-actions .button,
.hero-actions .play-link {
  width: 100%;
}

.play-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease;
}

.play-link i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 10px;
  font-style: normal;
}

.price-banner {
  display: grid;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
}

.price-banner b {
  color: #82e3ad;
}

.price-banner span {
  color: #b4c5e2;
  font-size: 10px;
}

.price-banner span::before {
  margin-left: 6px;
  color: #77e09d;
  content: "✓";
}

.hero-art {
  position: relative;
  width: 100%;
  height: clamp(285px, 82vw, 355px);
  max-width: 580px;
  margin-inline: auto;
  direction: rtl;
}

.browser {
  position: absolute;
  top: 8px;
  right: 0;
  width: 94%;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  color: var(--ink);
}

.browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-bottom: 1px solid #e9edf4;
  font-size: 8px;
}

.browser-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f3b15a;
}

.browser-bar span:nth-child(2) { background: #6bd1a2; }
.browser-bar span:nth-child(3) { background: #f27d84; }

.browser-bar b {
  margin-right: auto;
  color: #63708a;
}

.browser-body {
  height: 220px;
  display: flex;
}

.browser aside {
  width: 23%;
  padding: 15px 9px;
  background: #f4f7fc;
}

.browser aside b {
  padding: 5px;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
}

.browser aside i {
  height: 6px;
  display: block;
  margin-top: 15px;
  border-radius: 4px;
  background: #d7e0ee;
}

.browser article {
  flex: 1;
  padding: 14px;
}

.browser article small {
  color: #8492aa;
  font-size: 7px;
}

.browser h3 {
  margin: 2px 0 10px;
  font-size: 11px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.stats div,
.chart {
  padding: 6px;
  border: 1px solid #e5ebf4;
  border-radius: 7px;
}

.stats small,
.stats em {
  display: block;
  color: #76859f;
  font-size: 5px;
  font-style: normal;
}

.stats strong {
  display: block;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.5;
}

.stats em {
  color: var(--green);
}

.chart {
  height: 72px;
  margin-top: 7px;
  font-size: 7px;
}

.chart > div {
  height: 43px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-top: 3px;
}

.chart i {
  display: block;
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#68b9f4, #276ee5);
}

.chart i:nth-child(1) { height: 35%; }
.chart i:nth-child(2) { height: 52%; }
.chart i:nth-child(3) { height: 42%; }
.chart i:nth-child(4) { height: 70%; }
.chart i:nth-child(5) { height: 55%; }
.chart i:nth-child(6) { height: 83%; }
.chart i:nth-child(7) { height: 68%; }

.phone {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 30%;
  min-width: 108px;
  max-width: 150px;
  height: 68%;
  min-height: 205px;
  padding: 24px 9px 10px;
  border: 5px solid #192c52;
  border-radius: 20px;
  background: #f9fcff;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.25);
  color: #153061;
}

.phone .notch {
  position: absolute;
  top: 0;
  right: 26%;
  width: 48%;
  height: 11px;
  border-radius: 0 0 7px 7px;
  background: #192c52;
}

.phone > small { font-size: 6px; }

.phone h4 {
  margin: 10px 0;
  font-size: 9px;
  line-height: 1.5;
}

.lesson {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 8px;
  border-radius: 9px;
  background: linear-gradient(135deg, #dcebf9, #d5cdfb);
  font-size: 6px;
}

.lesson b { font-size: 7px; }

.lesson i {
  position: absolute;
  top: 14px;
  left: 6px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 6px;
  font-style: normal;
}

.phone-progress {
  height: 4px;
  margin: 12px 0 4px;
  border-radius: 3px;
  background: #dce5f1;
}

.phone-progress i {
  width: 65%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--blue);
}

.phone em {
  color: #8090aa;
  font-size: 6px;
  font-style: normal;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  color: #18325a;
  font-size: 13px;
  line-height: 1.35;
}

.floating-card span { font-size: 6px; }
.floating-card b { font-size: 7px; }
.top-card { top: 0; left: 3px; color: #2fae7e; }
.bottom-card { right: 10px; bottom: 2px; color: #6d57e5; }

.value-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, 0.08);
  color: #d8e2f3;
  font-size: 9px;
}

.value-strip span {
  grid-column: 1 / -1;
}

.value-strip b {
  color: #fff;
  font-size: 10px;
}

.value-strip b::before {
  margin-left: 6px;
  color: #66d5ed;
  content: "•";
}

/* Fast value strip */
.quick-values {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.quick-grid article {
  display: grid;
  gap: 2px;
  padding: 15px 10px;
  border-bottom: 1px solid var(--line);
}

.quick-grid article:nth-child(odd) {
  border-left: 1px solid var(--line);
}

.quick-grid i {
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.quick-grid b { font-size: 11px; }
.quick-grid span { color: var(--muted); font-size: 9px; }

/* Content grids */
.split-layout,
.mobile-layout,
.ownership-layout,
.faq-layout {
  display: grid;
  gap: 34px;
  align-items: center;
}

.solution-list {
  display: grid;
  gap: 9px;
}

.solution-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(145deg, #fff, #f7faff);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.solution-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 10px;
}

/* Video */
.video-section,
.ownership {
  color: #fff;
}

.video-section {
  position: relative;
  overflow: hidden;
  padding: 66px 0;
  background: radial-gradient(circle at 50% 0, rgba(39, 120, 238, 0.2), transparent 42%), linear-gradient(135deg, #06142d, #0d2854);
}

.video-focus {
  display: flex;
  justify-content: center;
}

.video-thumbnail {
  position: relative;
  width: min(1050px, 100%);
  display: block;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: #06142d;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.38);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.video-thumbnail img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  transition: transform 600ms ease;
}

.video-thumbnail-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 10, 28, 0.48) 100%);
  pointer-events: none;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(6, 20, 45, 0.82);
  box-shadow: 0 0 0 10px rgba(37, 184, 235, 0.12), 0 15px 35px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease, background 200ms ease;
}

.video-play-button svg {
  width: 25px;
  height: 25px;
  margin-left: 4px;
  fill: #fff;
}

.video-action-label {
  position: absolute;
  right: 50%;
  bottom: 12px;
  z-index: 2;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 18, 42, 0.78);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateX(50%);
}

.video-modal {
  width: calc(100% - 20px);
  max-width: 1050px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 14px;
  background: #020712;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
}

.video-modal::backdrop {
  background: rgba(1, 7, 19, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -14px;
  left: 0;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

/* Growth */
.growth,
.faq {
  background: #f7faff;
}

.growth-path {
  display: grid;
  gap: 7px;
}

.growth-path article {
  display: grid;
  gap: 4px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(14, 36, 80, 0.05);
}

.growth-path article:nth-of-type(2) { border-color: #d6c9fa; }
.growth-path article:nth-of-type(3) { border-color: #a9e4cf; }
.growth-path b { color: var(--blue); font-size: 14px; }
.growth-path article:nth-of-type(2) b { color: var(--violet); }
.growth-path article:nth-of-type(3) b { color: var(--green); }
.growth-path span { font-size: 11px; font-weight: 700; }
.growth-path small { color: var(--muted); font-size: 9px; }

.growth-path > i {
  position: relative;
  width: 2px;
  height: 22px;
  margin-inline: auto;
  background: linear-gradient(var(--blue), var(--violet));
}

.growth-path > i::after {
  position: absolute;
  top: 5px;
  left: -7px;
  color: var(--violet);
  content: "‹";
  font-size: 17px;
  font-style: normal;
  transform: rotate(-90deg);
}

.growth-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.growth-note strong { color: var(--ink); }

/* Cards */
.audience-grid,
.edition-grid,
.demo-grid,
.why-grid {
  display: grid;
  gap: 14px;
}

.audience-grid article,
.edition-card,
.demo-card,
.steps li,
.decision article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.audience-grid article {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.audience-grid article::after {
  position: absolute;
  top: -30px;
  left: -25px;
  width: 90px;
  height: 90px;
  border: 1px solid #e8effa;
  border-radius: 50%;
  content: "";
}

.audience-grid i {
  color: var(--blue);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
}

.audience-grid h3 {
  margin: 16px 0 6px;
  font-size: 14px;
}

.audience-grid p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 10px;
}

.audience-grid a {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.editions,
.start {
  background: #fbfcff;
}

.edition-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.edition-card.recommended {
  border: 2px solid #cdbef9;
  box-shadow: 0 18px 36px rgba(110, 72, 210, 0.11);
}

.edition-card .tag {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 3px 10px;
  border-radius: 10px;
  background: var(--violet);
  color: #fff;
  font-size: 8px;
}

.edition-name {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.edition-card h3 {
  margin: 11px 0 7px;
  font-size: 15px;
  line-height: 1.6;
}

.edition-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.edition-card ul {
  margin: 16px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.edition-card li {
  padding: 8px 0;
  border-bottom: 1px solid #eff3f8;
  font-size: 10px;
}

.edition-card li::before {
  margin-left: 7px;
  color: var(--accent);
  content: "✓";
  font-weight: 800;
}

.edition-card .button {
  margin-top: auto;
  background: var(--accent);
}

/* Comparison: cards on mobile, table on larger screens */
.comparison {
  margin-top: 38px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(14, 36, 80, 0.07);
}

.comparison h3 {
  margin: 0 0 14px;
  font-size: 14px;
}

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

.comparison-table {
  border-collapse: collapse;
}

.comparison-table thead {
  display: none;
}

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

.comparison-table tbody tr {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.comparison-table tbody th {
  padding: 11px 12px;
  background: #f1f6ff;
  color: #102a56;
  font-size: 11px;
  text-align: right;
}

.comparison-table td {
  display: grid;
  grid-template-columns: minmax(92px, 0.8fr) minmax(0, 1.2fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.comparison-table td::before {
  color: var(--ink);
  content: attr(data-label);
  font-weight: 700;
}

.comparison-table td:nth-child(3) { background: #fbf8ff; }
.comparison-table td:nth-child(4) { background: #f4fffa; }

.section-bridge {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.demo-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.demo-card .dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.demo-card b { font-size: 14px; }
.demo-card p { margin: 8px 0 0; color: var(--muted); font-size: 10px; }

.demo-actions {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.demo-actions a {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.web-link {
  border: 1px solid color-mix(in srgb, var(--accent), #fff 62%);
  color: var(--accent);
}

.apk-link {
  background: var(--accent);
  color: #fff;
}

/* Mobile app section */
.mobile-section {
  background: #f5f8fe;
}

.mobile-layout > div:last-child {
  order: 1;
}

.mobile-visual {
  height: 290px;
  display: grid;
  order: 2;
  place-items: center;
}

.app-phone {
  position: relative;
  width: 160px;
  height: 292px;
  padding: 18px 12px;
  border: 6px solid #1d2c4a;
  border-radius: 25px;
  background: linear-gradient(150deg, #123c7c, #0a1d43);
  box-shadow: 0 24px 36px rgba(10, 29, 67, 0.22);
  color: #fff;
}

.app-phone > span { font-size: 7px; }
.app-phone > b { display: block; margin-top: 3px; font-size: 10px; text-align: center; }

.app-phone div {
  display: grid;
  margin-top: 42px;
  padding: 14px 12px;
  border-radius: 13px;
  background: linear-gradient(140deg, #84c1ee, #7460e1);
}

.app-phone small { font-size: 7px; }
.app-phone strong { margin-top: 5px; font-size: 13px; line-height: 1.5; }

.app-phone i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin-top: 13px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 9px;
  font-style: normal;
}

.app-phone nav {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  justify-content: space-around;
}

.app-phone nav em {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a7bbdd;
}

.app-phone nav em:first-child { background: #68d6ec; }

.device-points {
  display: grid;
  gap: 9px;
  margin: 20px 0;
}

.device-points span {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--muted);
  font-size: 10px;
}

.device-points b {
  margin-left: 6px;
  color: var(--ink);
}

/* Ownership */
.ownership {
  background: var(--ink);
}

.ownership p { color: #bccae0; }

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

.check-list li {
  position: relative;
  margin: 11px 0;
  padding-right: 24px;
  font-size: 11px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(101, 225, 161, 0.17);
  color: #70e7a5;
  content: "✓";
  font-size: 9px;
  line-height: 16px;
  text-align: center;
}

.platform-preview {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(145deg, #0a1935, #123f68 58%, #0d716d);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.platform-preview::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  content: "";
  transform: translateX(70%);
  animation: panel-sheen 6s ease-in-out infinite;
}

.preview-top,
.preview-hero,
.preview-grid,
.preview-lesson {
  position: relative;
  z-index: 1;
}

.preview-top {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 6px 10px;
  align-items: center;
  padding: 20px 18px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.identity-logo {
  width: 45px;
  height: 45px;
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  color: #0b5a77;
  font-weight: 800;
}

.preview-top span {
  color: #e5f7ff;
  font-size: 12px;
  font-weight: 800;
}

.preview-top b {
  color: #8ee7d4;
  font-size: 9px;
  line-height: 1.25;
}

.preview-hero {
  margin: 16px 18px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
}

.preview-hero small,
.preview-hero em {
  display: block;
  color: #cde2f3;
  font-size: 9px;
  font-style: normal;
}

.preview-hero strong {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
}

.preview-grid {
  display: grid;
  gap: 8px;
  margin: 0 18px 15px;
}

.preview-grid article {
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.11);
}

.preview-grid span { color: #b9d3e9; font-size: 8px; }
.preview-grid b { display: block; margin-top: 3px; color: #fff; font-size: 17px; }

.preview-lesson {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 18px 18px;
  padding: 12px;
  border-radius: 13px;
  background: #fff;
  color: #102a56;
}

.preview-lesson i {
  width: 33px;
  height: 33px;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-style: normal;
}

.preview-lesson b,
.preview-lesson span { display: block; }
.preview-lesson b { font-size: 11px; }
.preview-lesson span { color: #64748b; font-size: 8px; }

/* Start, pricing, benefits */
.steps {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.steps b { color: var(--blue); font-size: 11px; }
.steps h3 { margin: 12px 0 4px; font-size: 12px; }
.steps p { margin: 0; color: var(--muted); font-size: 10px; }

.pricing {
  padding: 58px 0;
}

.pricing-card {
  display: grid;
  gap: 24px;
  padding: 27px 22px;
  border-radius: 22px;
  background: linear-gradient(125deg, #08204a, #16468d);
  color: #fff;
}

.pricing-card h2 { margin-bottom: 8px; }
.pricing-card h2 strong { color: #7ae0a8; }
.pricing-card p { max-width: 680px; margin: 0; color: #c4d4eb; font-size: 11px; }
.pricing-card .button { width: 100%; }

.why-grid {
  gap: 6px;
}

.why-grid article {
  padding: 13px 0;
  border-top: 2px solid var(--blue);
}

.why-grid article:nth-child(2) { border-color: var(--violet); }
.why-grid article:nth-child(3) { border-color: var(--green); }
.why-grid article:nth-child(4) { border-color: #e79f36; }
.why-grid b { font-size: 12px; }
.why-grid p { margin: 5px 0; color: var(--muted); font-size: 10px; }

/* FAQ */
.faq-list details {
  margin: 8px 0;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}

.faq-list summary {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 0 12px 24px;
  font-size: 11px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "+";
  font-size: 19px;
  font-weight: 400;
}

.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 0 15px; color: var(--muted); font-size: 10px; }

/* Final choices */
.decision {
  padding: 48px 0;
}

.decision-grid {
  display: grid;
  gap: 14px;
}

.decision article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.decision article:last-child {
  border-color: #d5e5fc;
  background: #f2f7ff;
}

.decision h2 {
  margin: 7px 0;
  font-size: 20px;
  line-height: 1.5;
}

.decision p:not(.kicker) { color: var(--muted); font-size: 11px; }

.final-cta {
  padding: 64px 0;
  background: radial-gradient(circle at 18% 0, #2861ad 0, transparent 30%), linear-gradient(130deg, #06142d, #102d5d);
  color: #fff;
  text-align: center;
}

.final-cta-content { max-width: 760px; }
.final-cta p:not(.kicker) { max-width: 600px; margin: 0 auto 22px; color: #c4d3e8; font-size: 13px; }

.final-cta-content > div {
  display: grid;
  gap: 10px;
}

.final-cta .button,
.final-cta .outline-button { width: 100%; }

.final-cta ul {
  display: grid;
  gap: 6px;
  margin: 22px 0 0;
  padding: 0;
  color: #c0d1e9;
  font-size: 10px;
  list-style: none;
}

.final-cta li::before { margin-left: 6px; color: #74e0a7; content: "✓"; }

/* Footer */
footer {
  padding: 46px 0 18px;
  background: #061127;
  color: #c2cee1;
  font-size: 10px;
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer-grid p {
  max-width: 330px;
  line-height: 1.9;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid > div > b {
  margin-bottom: 3px;
  color: #fff;
  font-size: 11px;
}

.footer-grid .brand { color: #fff; }

.footer-grid .phone-number {
  display: block;
  direction: ltr;
  unicode-bidi: isolate;
  text-align: right;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  background: none;
  color: #78dced;
  font-size: 10px;
}

.floating-whatsapp {
  display: none;
}

.bottom-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 9px 13px max(9px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.bottom-bar a {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 9px;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.bottom-bar a:last-child {
  border: 1px solid #bde8d3;
  background: #effaf5;
  color: #168155;
}

/* Reveal is progressive enhancement: content remains visible without JS. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes soft-drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(25px, 16px, 0) rotate(12deg); }
}

@keyframes panel-sheen {
  0%, 52% { transform: translateX(70%); }
  78%, 100% { transform: translateX(-80%); }
}

/* Small landscape phones and larger phones */
@media (min-width: 480px) {
  .hero-actions {
    grid-template-columns: max-content max-content;
    align-items: center;
  }

  .hero-actions .button,
  .hero-actions .play-link {
    width: auto;
  }

  .price-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .solution-list,
  .steps,
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta-content > div {
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: center;
  }

  .final-cta .button,
  .final-cta .outline-button {
    width: auto;
  }
}

/* Tablet */
@media (min-width: 576px) {
  :root { --header-height: 72px; }

  body {
    padding-bottom: 0;
    font-size: 14px;
  }

  .container { width: min(var(--container), calc(100% - 40px)); }
  .brand img { width: 43px; height: 43px; }
  .brand b { font-size: 16px; }
  .section { padding: 80px 0; }

  .hero {
    padding-top: 34px;
  }

  .hero-grid {
    padding: 30px 0 48px;
  }

  .lead { font-size: 14px; }
  .hero-art { height: 400px; }
  .browser-body { height: 270px; }
  .browser article { padding: 20px; }
  .browser h3 { font-size: 14px; margin-bottom: 13px; }
  .stats { gap: 8px; }
  .stats div, .chart { padding: 9px; }
  .stats small, .stats em { font-size: 6px; }
  .stats strong { font-size: 14px; }
  .chart { height: 92px; font-size: 8px; }
  .chart > div { height: 57px; gap: 7px; }
  .phone { min-width: 135px; max-width: 156px; height: 78%; padding: 28px 11px 12px; }
  .phone h4 { margin: 14px 0; font-size: 12px; }
  .phone > small { font-size: 8px; }
  .lesson { padding: 10px; font-size: 8px; }
  .lesson b { font-size: 9px; }
  .phone em { font-size: 7px; }
  .floating-card { padding: 9px; font-size: 16px; }
  .floating-card span { font-size: 8px; }
  .floating-card b { font-size: 9px; }

  .value-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px 18px;
    font-size: 10px;
  }

  .quick-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .quick-grid article { padding: 20px 16px; border-bottom: 0; border-left: 1px solid var(--line); }
  .quick-grid article:last-child { border-left: 0; }

  .audience-grid,
  .edition-grid,
  .demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .bottom-bar { display: none; }

  .floating-whatsapp {
    position: fixed;
    bottom: 22px;
    left: 20px;
    z-index: 24;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 99px;
    background: #21a467;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
  }

  .floating-whatsapp span { margin-left: 4px; font-size: 14px; }

  .video-thumbnail { border-radius: 20px; }
  .video-play-button { width: 74px; height: 74px; }
  .video-play-button svg { width: 31px; height: 31px; }
  .video-action-label { bottom: 20px; padding: 8px 16px; font-size: 11px; }
  .video-modal { width: min(1050px, calc(100% - 32px)); border-radius: 20px; }
  .video-modal-content { border-radius: 20px; }
  .video-modal-close { top: -18px; left: -10px; width: 42px; height: 42px; }
}

/* Large tablet / small laptop */
@media (min-width: 768px) {
  .section { padding: 92px 0; }

  .section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 34px;
  }

  .section-heading > p { margin: 0; }

  .split-layout,
  .mobile-layout,
  .ownership-layout,
  .faq-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }

  .mobile-layout > div:last-child,
  .mobile-visual {
    order: initial;
  }

  .mobile-visual { height: 350px; }
  .app-phone { width: 180px; height: 330px; padding: 20px 14px; border-width: 7px; }

  .growth-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .growth-path article {
    width: min(30%, 230px);
  }

  .growth-path article:nth-of-type(2) {
    transform: translateY(-9px);
  }

  .growth-path > i {
    width: 30px;
    height: 2px;
    margin: 0;
    background: linear-gradient(90deg, var(--blue), var(--violet));
  }

  .growth-path > i::after {
    top: -15px;
    left: -3px;
    transform: none;
  }

  .comparison {
    padding: 22px;
  }

  .comparison-table {
    display: table;
    table-layout: fixed;
  }

  .comparison-table thead {
    display: table-header-group;
  }

  .comparison-table tbody {
    display: table-row-group;
  }

  .comparison-table tr {
    display: table-row;
  }

  .comparison-table th,
  .comparison-table td {
    width: auto;
    display: table-cell;
    padding: 11px 10px;
    border-bottom: 1px solid var(--line);
    border-top: 0;
    font-size: 9px;
    text-align: right;
    vertical-align: middle;
  }

  .comparison-table thead th {
    background: #f1f6ff;
    color: #102a56;
    font-weight: 800;
  }

  .comparison-table thead th:first-child { border-radius: 0 9px 9px 0; }
  .comparison-table thead th:last-child { border-radius: 9px 0 0 9px; }
  .comparison-table tbody th { width: 27%; background: transparent; color: #52617a; }
  .comparison-table td { color: var(--muted); }
  .comparison-table td::before { display: none; }
  .comparison-table tbody tr:last-child th,
  .comparison-table tbody tr:last-child td { border-bottom: 0; }

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

  .pricing-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 40px;
  }

  .pricing-card .button { width: auto; }

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

  .final-cta ul {
    display: flex;
    justify-content: center;
    gap: 22px;
  }
}

/* Desktop layout; navigation remains compact until wide screens */
@media (min-width: 992px) {
  :root { --header-height: 78px; }

  .hero {
    min-height: 700px;
    padding-top: 44px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 38px;
    padding: 34px 0 60px;
  }

  .hero-art {
    height: 430px;
  }

  .browser-body { height: 290px; }
  .browser article { padding: 22px; }
  .browser article small { font-size: 8px; }
  .browser h3 { font-size: 15px; }
  .stats div, .chart { padding: 10px; }
  .stats small, .stats em { font-size: 7px; }
  .stats strong { font-size: 16px; }
  .chart { height: 100px; font-size: 9px; }
  .chart > div { height: 61px; gap: 8px; }

  .value-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 22px;
    font-size: 11px;
  }

  .value-strip span { grid-column: auto; }
  .value-strip b { font-size: 11px; }

  .section { padding: 105px 0; }

  .split-layout,
  .mobile-layout,
  .ownership-layout,
  .faq-layout {
    gap: 76px;
  }

  .audience-grid,
  .edition-grid,
  .demo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
  }

  .edition-card p { min-height: 52px; }
  .demo-card p { min-height: 35px; }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
  }

  .footer-grid > div:first-child { grid-column: auto; }

  .preview-top { padding: 24px 24px 14px; }
  .preview-top span { font-size: 14px; }
  .preview-top b { font-size: 11px; }
  .preview-hero { margin: 20px 24px; padding: 20px; }
  .preview-hero strong { font-size: 22px; }
  .preview-grid { margin: 0 24px 18px; gap: 10px; }
  .preview-lesson { margin: 0 24px 24px; padding: 14px; }
}

/* Full desktop navigation */
@media (min-width: 1200px) {
  .nav-wrap {
    min-height: 80px;
    gap: 16px;
  }

  .brand img { width: 45px; height: 45px; }
  .brand b { font-size: 17px; }

  .nav {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #43516d;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-inline-start: 0;
    font-size: 10px;
    font-weight: 700;
  }

  .nav-cta .text-link,
  .nav-cta .button {
    display: inline-flex;
  }

  .menu-button,
  .mobile-menu {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .nav a:hover,
  .text-link:hover,
  .footer-grid a:hover {
    color: var(--blue);
  }

  .footer-grid a:hover { color: #78dced; }

  .button:hover,
  .outline-button:hover,
  .play-link:hover {
    transform: translateY(-3px);
  }

  .button:hover,
  .outline-button:hover {
    box-shadow: 0 12px 24px rgba(39, 120, 238, 0.23);
  }

  .play-link:hover { color: #91f0ff; }

  .audience-grid article:hover,
  .edition-card:hover,
  .demo-card:hover,
  .steps li:hover,
  .decision article:hover,
  .solution-list article:hover {
    border-color: #cbdcf6;
    box-shadow: 0 20px 40px rgba(14, 36, 80, 0.1);
    transform: translateY(-4px);
  }

  .video-thumbnail:hover {
    border-color: rgba(100, 216, 239, 0.55);
    box-shadow: 0 42px 90px rgba(0, 0, 0, 0.48);
    transform: translateY(-5px);
  }

  .video-thumbnail:hover img { transform: scale(1.025); }

  .video-thumbnail:hover .video-play-button {
    background: #147de1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
