/* Airbrain LMS marketing site.
   Layout language: a white rounded sheet on a muted steel backdrop, oversized display
   headings, pill section tags, mono micro-copy, one accent tint for colour blocks.
   Palette is the LMS's own: ink #12232e, brand #3b6b8a, Outfit self-hosted. */

@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #3b6b8a;
  --brand-deep: #2e5570;
  --ink: #12232e;
  --muted: #5b6b74;
  --line: #dfe6ea;
  --backdrop: #b2c6d2;
  --paper: #ffffff;
  --tint: #dcE9f1;
  --tint-deep: #cfe1ec;
  --soft: #f6f9fb;
  --ok: #1c7c4a;
  --danger: #a12020;
  --cloud: #c026d3;
  --mono: ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0; font-family: "Outfit", system-ui, sans-serif;
  background: var(--backdrop); color: var(--ink); line-height: 1.55;
  overflow-x: clip;
}
img { max-width: 100%; }
h1, h2, h3 { margin: 0 0 16px; }
h1 { font-size: clamp(2.7rem, 5.6vw, 4.4rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.015em; }
h3 { font-size: 1.12rem; font-weight: 750; margin-bottom: 8px; }
p { margin: 0 0 14px; }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }

/* the white sheet the whole site sits on */
.sheet {
  background: var(--paper); border-radius: 28px;
  margin: 18px; overflow: clip;
}
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  padding: 22px 0; background: var(--paper);
  transition: box-shadow 0.28s ease, padding 0.28s ease;
}
.topbar.stuck { padding: 13px 0; box-shadow: 0 10px 28px rgba(18, 35, 46, 0.10); }
.topbar-inner { display: flex; align-items: center; gap: 26px; }
.brandmark { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brandmark img { height: 42px; width: auto; }
.brandmark strong { font-size: 1.2rem; font-weight: 800; letter-spacing: 0.01em; }
.topnav { display: flex; align-items: center; gap: 26px; position: relative; }
.topnav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.98rem; }
.topnav a:hover { color: var(--brand); }
.topnav a.btn-ink { color: #fff; padding: 10px 20px; }
.topnav a.btn-ink:hover { color: #fff; }
/* scrollspy: one underline glides to the link for the section in view (JS positions it) */
.topnav a.current { color: var(--brand-deep); }
.nav-ind {
  position: absolute; bottom: -7px; left: 0; width: 0; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, #d42bd6, #8b2fd9);
  opacity: 0; transform: translateX(0); pointer-events: none; transition: opacity 0.25s ease;
}
.nav-ind.ready { transition: transform 0.34s cubic-bezier(0.4, 0.85, 0.3, 1), width 0.34s cubic-bezier(0.4, 0.85, 0.3, 1), opacity 0.25s ease; }
.nav-ind.on { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .nav-ind.ready { transition: opacity 0.2s ease; } }
@media (max-width: 760px) {
  .nav-ind { display: none; }
  .topnav a.current:not(.btn-ink) { background: var(--soft); }
}

/* mobile menu: a hamburger that drops the nav down as a panel */
.nav-toggle { display: none; }
@media (max-width: 760px) {
  .topbar-inner { position: relative; }
  .topbar-inner .nav-toggle {
    /* right: 18px + the button's own 10px padding puts the icon's edge on the
       content column (the wrap's 28px), instead of hugging the sheet edge */
    position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
    display: inline-flex; flex: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 10px;
    border: 0; border-radius: 10px; background: transparent; cursor: pointer; z-index: 31;
  }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .topnav {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px; padding: 10px;
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    box-shadow: 0 18px 38px rgba(18, 35, 46, 0.16);
    transform-origin: top center; transform: translateY(-8px) scale(0.99);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.22s ease; z-index: 30;
  }
  .topnav.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .topnav a { padding: 13px 14px; border-radius: 10px; font-size: 1rem; }
  .topnav a:not(.btn-ink):hover { background: var(--soft); color: var(--ink); }
  .topnav a.btn-ink { justify-content: center; margin-top: 6px; }
}

/* buttons: always filled or fully bordered, with hover + pressed states */
.btn-ink {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--ink); color: #fff; border: 1px solid var(--ink);
  border-radius: 999px; padding: 12px 24px; font-weight: 700; font-size: 0.98rem;
  text-decoration: none; cursor: pointer;
}
.btn-ink:hover { background: #24404f; border-color: #24404f; }
.btn-ink:active { transform: translateY(1px); }
.btn-brand {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff; border: 1px solid var(--brand);
  border-radius: 999px; padding: 14px 28px; font-weight: 700; font-size: 1.02rem;
  text-decoration: none; cursor: pointer;
}
.btn-brand:hover { background: var(--brand-deep); border-color: var(--brand-deep); }
.btn-brand:active { transform: translateY(1px); }
.btn-quiet {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); border: 1px solid var(--ink);
  border-radius: 999px; padding: 14px 28px; font-weight: 700; font-size: 1.02rem;
  text-decoration: none; cursor: pointer;
}
.btn-quiet:hover { background: var(--soft); }
.btn-quiet:active { transform: translateY(1px); }
.btn-onbrand {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); border: 1px solid #fff;
  border-radius: 999px; padding: 10px 20px; font-weight: 700; font-size: 0.92rem;
  text-decoration: none; cursor: pointer;
}
.btn-onbrand:hover { background: var(--tint); border-color: var(--tint); }
.btn-onbrand:active { transform: translateY(1px); }
.arrow { width: 14px; height: 14px; flex: none; }

/* pill section tag */
.tag {
  display: inline-flex; align-items: center; gap: 9px; padding: 6px 16px; border: 1px solid var(--ink);
  border-radius: 999px; background: #fff; color: var(--ink);
  font-family: var(--mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
}
/* logo-colour highlight: a magenta-to-purple dot echoing the cloud mark,
   carried on every section's tag so the brand colour threads the whole page */
.tag::before {
  content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(145deg, #d42bd6 0%, #8b2fd9 100%);
}

/* hero "LMS" acronym tooltip: a clean, small dark pill above the word, fading in
   on hover/focus. A thin dotted underline is the affordance. Sits in the clear
   space above the headline line, so it does not cover other text. */
.lms {
  position: relative; cursor: help; white-space: nowrap;
  text-decoration: underline; text-decoration-style: dotted;
  text-decoration-color: #b2c6d2; text-decoration-thickness: 2px; text-underline-offset: 6px;
  outline: none;
}
.lms-tip {
  position: absolute; left: 50%; bottom: calc(100% + 9px);
  transform-origin: 50% calc(100% + 15px); transform: translateX(-50%) scale(0.3);
  display: inline-block; white-space: nowrap;
  background: #b2c6d2; color: var(--ink);
  font-family: var(--mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; line-height: 1;
  padding: 8px 12px; border-radius: 9px; box-shadow: 0 6px 18px rgba(18, 35, 46, 0.18);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.14s ease, transform 0.26s cubic-bezier(0.22, 1.25, 0.36, 1); z-index: 6;
}
.lms-tip::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: #b2c6d2;
}
.lms:hover .lms-tip, .lms:focus .lms-tip, .lms:focus-visible .lms-tip {
  opacity: 1; visibility: visible; transform: translateX(-50%) scale(1);
}

/* ---------- hero ---------- */
.hero { padding: 64px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: stretch; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; }
.hero .lede { font-size: 1.15rem; color: var(--muted); max-width: 44ch; margin: 6px 0 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 26px; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--soft); font-family: var(--mono); font-size: 0.8rem; color: var(--ink);
}
.chip::before {
  content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(145deg, #d42bd6 0%, #8b2fd9 100%);
}

/* hero visual: tinted panel holding a miniature of the real reports screen (drawn in CSS) */
.panel {
  position: relative; background: var(--tint); border-radius: 26px;
  padding: 56px 34px 60px; display: flex; align-items: center; justify-content: center;
}
.panel-caption {
  position: absolute; right: 22px; bottom: 18px; text-align: right;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--brand-deep); text-transform: uppercase;
}
.mock {
  --mockbrand: #3b6b8a;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px;
  width: 100%; max-width: 400px; box-shadow: 0 18px 40px rgba(18, 35, 46, 0.14);
}
.mock-brandbar {
  display: flex; align-items: center; gap: 8px; padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mock-logo {
  display: inline-flex; align-items: center; height: 18px; padding: 0 7px; flex: none;
  border: 1px dashed var(--mockbrand); border-radius: 5px; color: var(--mockbrand); background: transparent;
  font-family: var(--mono); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}
.mock-org { font-size: 0.9rem; font-weight: 800; }
.mock-url { margin-left: auto; font-size: 0.62rem; color: var(--muted); }
.mock-stat b { color: var(--mockbrand); }
.mock .serial { color: var(--mockbrand); }
.brand-picker {
  display: flex; align-items: center; gap: 9px; padding-top: 14px; margin-top: 2px;
  border-top: 1px solid var(--line);
}
.brand-picker .mono { font-size: 0.66rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.swatch {
  width: 22px; height: 22px; border-radius: 999px; background: var(--sw);
  border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); cursor: pointer; padding: 0;
}
.swatch:hover { box-shadow: 0 0 0 2px var(--muted); }
.swatch.active { box-shadow: 0 0 0 2px var(--ink); }
.swatch:active { transform: translateY(1px); }
.mock-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.mock-head strong { font-size: 0.98rem; }
.pill { display: inline-block; padding: 2px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--soft); font-size: 0.72rem; font-weight: 700; }
.pill-reg { background: #fdf3e6; border-color: #ecd3ab; color: #8a5a1f; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.mock-stat { border: 1px solid var(--line); border-radius: 12px; background: var(--soft); text-align: center; padding: 10px 4px; }
.mock-stat b { display: block; font-size: 1.15rem; letter-spacing: -0.01em; }
.mock-stat span { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.mock-row { display: flex; align-items: center; gap: 10px; padding: 10px 4px; border-top: 1px solid var(--line); font-size: 0.84rem; }
.mock-row .who { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.serial { font-family: var(--mono); font-size: 0.76rem; color: var(--brand); font-weight: 600; }
.st-ok { color: var(--ok); font-weight: 700; }
.st-warn { color: var(--danger); font-weight: 700; }
/* floating completion toast: a live "course completed" notification that slides
   in over the reports mock, reinforcing the completion tracking. Bottom-right so
   it never covers the brand bar / "your logo" at the top. */
.float-card {
  position: absolute; top: 26px; left: -18px; width: 210px;
  display: flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff; border: 1px solid var(--ink); border-radius: 14px;
  padding: 12px 14px; box-shadow: 0 16px 34px rgba(18, 35, 46, 0.32);
}
.ft-tick {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: linear-gradient(145deg, #d42bd6 0%, #8b2fd9 100%); box-shadow: 0 2px 8px rgba(139, 47, 217, 0.42);
}
.ft-tick svg { width: 18px; height: 18px; }
.ft-text { min-width: 0; }
.ft-text b { display: block; font-size: 0.95rem; font-weight: 800; letter-spacing: -0.01em; }
.ft-text span { display: block; font-family: var(--mono); font-size: 0.62rem; color: #9fb3bf; letter-spacing: 0.02em; margin-top: 1px; }

/* ---------- sections ---------- */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .tag { margin-bottom: 20px; }
.section-head .sub { font-family: var(--mono); font-size: 0.86rem; color: var(--muted); max-width: 56ch; margin: 0 auto; }
/* logo colour threaded through: a short accent rule under each section heading */
.section-head h2::after {
  content: ""; display: block; width: 46px; height: 3px; margin-top: 18px;
  margin-left: auto; margin-right: auto;
  border-radius: 999px; background: linear-gradient(90deg, #d42bd6, #8b2fd9);
}

/* three-step join flow */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { border: 1px solid var(--line); border-radius: 20px; padding: 30px 26px; background: var(--soft); }
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px; background: var(--ink); color: #fff;
  font-weight: 800; font-size: 1.05rem; margin-bottom: 18px;
}
.step p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* join walkthrough: each step carries a small visual, and the sequence plays
   through once (code types, link arrives, bar fills) when it scrolls into view */
.step-visual { margin-top: 16px; min-height: 36px; }
.type-code {
  display: inline-block; font-family: var(--mono); background: #fff;
  border: 1px solid var(--line); border-radius: 8px; padding: 7px 12px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em;
}
.type-code b { display: inline-block; overflow: hidden; white-space: nowrap; vertical-align: bottom; font-weight: 600; }
.mail-pill {
  display: inline-flex; align-items: center; gap: 8px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  font-size: 0.8rem; font-weight: 600;
}
.mail-pill svg { width: 16px; height: 16px; color: var(--brand-deep); }
.walk-bar { height: 8px; border-radius: 999px; background: #e3ebf1; border: 1px solid var(--line); overflow: hidden; }
.walk-fill { display: block; height: 100%; width: 100%; border-radius: 999px; background: var(--ok); }
.walk-done { display: inline-block; margin-top: 8px; font-size: 0.78rem; font-weight: 700; color: var(--ok); }

.motion .steps:not(.walk-run) .type-code b { width: 0; }
.motion .walk-run .type-code b { width: 0; animation: typewidth 1.1s steps(9) 0.3s forwards; }
@keyframes typewidth { to { width: 11ch; } }
.motion .steps:not(.walk-run) .mail-pill, .motion .steps:not(.walk-run) .walk-done { opacity: 0; }
.motion .walk-run .mail-pill { opacity: 0; transform: translateY(8px); animation: pillin 0.5s ease 1.8s forwards; }
.motion .walk-run .walk-done { opacity: 0; animation: pillin 0.4s ease 4.6s forwards; }
@keyframes pillin { to { opacity: 1; transform: translateY(0); } }
.motion .steps:not(.walk-run) .walk-fill { width: 0; }
.motion .walk-run .walk-fill { width: 0; animation: walkfill 1.3s ease 3.3s forwards; }
@keyframes walkfill { to { width: 100%; } }
.motion .walk-run .step:nth-child(1) .step-n { animation: numpulse 1.5s ease 0.2s; }
.motion .walk-run .step:nth-child(2) .step-n { animation: numpulse 1.5s ease 1.8s; }
.motion .walk-run .step:nth-child(3) .step-n { animation: numpulse 1.7s ease 3.3s; }
@keyframes numpulse { 30% { background: var(--brand); transform: scale(1.15); } }

/* try-it demo cards */
.demo-cta { margin-top: 22px; }

/* feature tabs: a segmented strip; without JS all groups stack with their titles */
.tabstrip {
  position: relative;
  display: flex; gap: 6px; justify-content: center; flex-wrap: wrap;
  width: fit-content; margin: 0 auto 36px; padding: 6px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--soft);
}
/* the active pill that glides between tabs (JS sizes and positions it) */
.tab-ind {
  position: absolute; top: 0; left: 0; width: 0; height: 0; z-index: 0;
  border-radius: 999px; background: var(--ink); pointer-events: none;
}
.tab-ind.ready {
  transition: transform 0.34s cubic-bezier(0.4, 0.85, 0.3, 1),
              width 0.34s cubic-bezier(0.4, 0.85, 0.3, 1),
              height 0.34s cubic-bezier(0.4, 0.85, 0.3, 1);
}
.tab {
  position: relative; z-index: 1;
  border: 0; background: transparent; color: var(--muted); cursor: pointer;
  font: 700 0.95rem "Outfit", system-ui, sans-serif; padding: 10px 22px; border-radius: 999px;
  transition: color 0.25s ease;
}
.tab:hover { color: var(--ink); }
.tab.active, .tab.active:hover { color: #fff; }
.tab:active { transform: translateY(1px); }
.tabstrip { display: none; }
.tabs-on .tabstrip { display: flex; }
.group-title { text-align: center; font-size: 1.3rem; margin: 40px 0 22px; }
.feature-group:first-of-type .group-title { margin-top: 0; }
.tabs-on .group-title { display: none; }
.tabs-on .feature-group { display: none; }
.tabs-on .feature-group.active { display: block; }
@keyframes groupin { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.motion .tabs-on .feature-group.active .feature { animation: groupin 0.45s cubic-bezier(0.22, 0.9, 0.3, 1) backwards; }
.motion .tabs-on .feature-group.active .feature:nth-child(2) { animation-delay: 0.08s; }
.motion .tabs-on .feature-group.active .feature:nth-child(3) { animation-delay: 0.16s; }
.motion .tabs-on .feature-group.active .feature:nth-child(4) { animation-delay: 0.24s; }
.inline-link { color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.inline-link:hover { color: var(--brand-deep); }

/* feature grid; a group of four lays out 2x2 so no row is left with an orphan */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.features:has(> .feature:nth-child(4)) { grid-template-columns: repeat(2, 1fr); }
.feature { border: 1px solid var(--line); border-radius: 20px; padding: 28px 26px; background: #fff; }
.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; background: var(--tint);
  color: var(--brand-deep); margin-bottom: 18px;
}
.feature-icon svg { width: 24px; height: 24px; }

/* evidence: numbered rows, reference-FAQ style */
.evidence-rows { border-top: 1px solid var(--line); }
.evi { display: grid; grid-template-columns: 72px 300px 1fr; gap: 20px; padding: 30px 6px; border-bottom: 1px solid var(--line); }
.evi-n { font-family: var(--mono); font-size: 0.85rem; font-weight: 700; color: var(--cloud); padding-top: 4px; }
.evi b { font-size: 1.12rem; font-weight: 750; line-height: 1.25; }
.evi p { margin: 0; color: var(--muted); font-size: 0.97rem; max-width: 62ch; }

/* hosting split panels */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.split-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px) { .split-3 { grid-template-columns: 1fr; } }
.split-cell { border: 1px solid var(--line); border-radius: 22px; padding: 36px 32px; background: var(--soft); }
.split-cell h3 { font-size: 1.35rem; }
.split-cell.lead { background: var(--ink); color: #fff; border-color: var(--ink); }
.split-cell.lead h3 { color: #fff; }
.split-cell.lead p { color: #c8d3da; }
.split-cell p { color: var(--muted); font-size: 0.98rem; margin: 0; }
.split-cell .mono-note { display: block; margin-top: 20px; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.05em; text-transform: uppercase; }
.split-cell.lead .mono-note { color: #9fb3bf; }
.split-cell .mono-note { color: var(--brand-deep); }

/* pricing: the 1-2-3 plans, clouds counting the tier size */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.plan {
  border: 1px solid var(--line); border-radius: 20px; padding: 28px 24px; background: #fff;
  display: flex; flex-direction: column; align-items: flex-start;
}
.plan-clouds { display: flex; align-items: center; gap: 5px; margin-bottom: 16px; min-height: 24px; }
.plan-clouds img { height: 22px; width: auto; }
.plan-clouds .plus { font-weight: 800; font-size: 1.3rem; color: var(--cloud); line-height: 1; }
.plan h3 { font-size: 1.05rem; margin: 0 0 6px; }
.plan-price { font-size: 2.3rem; font-weight: 800; letter-spacing: -0.02em; margin: 0; line-height: 1.1; }
.plan-price span { font-size: 0.95rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.plan-year { color: var(--muted); font-size: 0.85rem; margin: 4px 0 22px; }
.plan .btn-quiet, .plan .btn-onbrand { margin-top: auto; padding: 10px 20px; font-size: 0.94rem; }
.plan-more { background: var(--ink); border-color: var(--ink); }
.plan-more h3 { color: #fff; }
.plan-more .plan-note { color: #c8d3da; font-size: 0.92rem; margin: 0 0 22px; }
.motion .plan { transition-property: opacity, transform, box-shadow; }
.motion .plan:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(18, 35, 46, 0.12); }
/* clouds pop in one by one once their card has revealed; the plus keeps a soft pulse */
.motion .plan .plan-clouds img, .motion .plan .plan-clouds .plus {
  opacity: 0; transform: scale(0.3);
  transition: transform 0.45s cubic-bezier(0.22, 1.4, 0.36, 1), opacity 0.3s ease;
}
.motion .plan .plan-clouds :nth-child(1) { transition-delay: 0.2s; }
.motion .plan .plan-clouds :nth-child(2) { transition-delay: 0.34s; }
.motion .plan .plan-clouds :nth-child(3) { transition-delay: 0.48s; }
.motion .plan .plan-clouds :nth-child(4) { transition-delay: 0.62s; }
.motion .plan.rv-in .plan-clouds img, .motion .plan.rv-in .plan-clouds .plus { opacity: 1; transform: none; }
@keyframes pluspulse { 50% { transform: scale(1.3); } }
.motion .plan.rv-in .plan-clouds .plus { animation: pluspulse 2.4s ease-in-out 1.4s infinite; }
.plans-note { text-align: center; margin: 20px auto 0; font-size: 0.78rem; color: var(--muted); max-width: 62ch; }

/* closing CTA block */
.cta-panel {
  background: var(--tint); border-radius: 26px; text-align: center;
  padding: 76px 32px; margin-bottom: 40px;
}
.cta-panel .tag { background: #fff; margin-bottom: 22px; }
.cta-panel h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.cta-panel p { max-width: 54ch; margin: 0 auto 30px; color: #3d5260; }
.cta-panel .mono-after { display: block; margin-top: 22px; font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--brand-deep); }

/* course build service: a three-node pipeline drawn in CSS */
.build-panel { background: var(--tint); border-radius: 26px; padding: 56px 40px; }
.build-panel .section-head { margin-bottom: 40px; }
.build-panel .tag { background: #fff; }
.pipeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; align-items: center; }
.pipe-node { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 22px; text-align: center; }
.pipe-node h3 { font-size: 1.02rem; margin: 14px 0 6px; }
.pipe-node p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.pipe-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; background: var(--tint); color: var(--brand-deep);
}
.pipe-icon svg { width: 28px; height: 28px; }
.pipe-arrow { color: var(--brand-deep); display: flex; align-items: center; }
.pipe-arrow svg { width: 30px; height: 30px; }
/* a miniature course card as the last node's visual */
.mini-course { background: var(--soft); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-top: 14px; text-align: left; }
.mini-course .mc-title { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; }
.mini-course .mc-title svg { width: 16px; height: 16px; color: var(--brand-deep); flex: none; }
.mc-bar { height: 8px; border-radius: 999px; background: #e3ebf1; border: 1px solid var(--line); margin-top: 10px; overflow: hidden; }
.mc-fill { display: block; height: 100%; width: 72%; border-radius: 999px; background: var(--brand); }
.motion .rv-in .mc-fill { animation: fillup 1.2s cubic-bezier(0.22, 0.9, 0.3, 1) backwards; animation-delay: 0.4s; }
@keyframes fillup { from { width: 0; } to { width: 72%; } }
.build-cta { text-align: center; margin-top: 36px; }

/* pipeline motion: arrows pulse along the flow, icons pop as each node reveals */
@keyframes nudge { 0%, 100% { transform: translateX(0); opacity: 0.7; } 50% { transform: translateX(7px); opacity: 1; } }
.motion .pipe-arrow svg { animation: nudge 2.1s ease-in-out infinite; }
.motion .pipeline .pipe-arrow:nth-of-type(4) svg { animation-delay: 1.05s; }
.motion .pipe-node .pipe-icon { transform: scale(0.55); opacity: 0; transition: transform 0.5s cubic-bezier(0.22, 1.2, 0.36, 1) 0.25s, opacity 0.4s ease 0.25s; }
.motion .pipe-node.rv-in .pipe-icon { transform: none; opacity: 1; }
@media (max-width: 920px) {
  .motion .pipe-arrow svg { animation: none; }
}

/* ---------- policy pages ---------- */
.policy { max-width: 720px; padding: 30px 0 90px; }
.policy h1 { font-size: clamp(2rem, 4vw, 3rem); }
.policy .updated { font-family: var(--mono); font-size: 0.78rem; color: var(--muted); margin-bottom: 34px; }
.policy h2 { font-size: 1.25rem; margin: 36px 0 10px; }
.policy p, .policy li { color: #33454f; }
.policy a { color: var(--brand); font-weight: 600; }

/* ---------- footer: a dark panel matching the sheet ---------- */
footer.foot-sheet {
  background: var(--ink); color: #b7c5cd; border-radius: 28px;
  margin: 0 18px 18px; padding: 54px 0 30px; font-size: 0.92rem;
}
.foot-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 42px; }
.foot-inner { display: flex; align-items: center; gap: 12px; }
.foot-inner img { height: 30px; }
.foot-inner .foot-brand { font-weight: 800; color: #fff; font-size: 1.05rem; }
.foot-about p { color: #8fa3ad; margin: 14px 0 0; max-width: 30ch; }
.foot-about p a { color: #b7c5cd; text-decoration: underline; }
.foot-about p a:hover { color: #fff; }
.foot-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.foot-col h4 { margin: 0 0 6px; color: #fff; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.foot-col a { color: #b7c5cd; text-decoration: none; font-weight: 500; }
.foot-col a:hover { color: #fff; text-decoration: underline; }
.foot-bar { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 22px; }
.foot-bar p { margin: 4px 0; color: #8fa3ad; font-size: 0.82rem; }

/* ---------- movement ----------
   .motion is set by js/site.js only when JS runs and the visitor has not asked for
   reduced motion, so the page renders complete without either. */
.motion .rv { opacity: 0; transform: translateY(38px); }
.motion .rv-in { opacity: 1; transform: none; }
.motion .rv, .motion .rv-in {
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 0.9, 0.3, 1);
}
.motion .hero .panel.rv { transform: translateY(0) translateX(34px); }
.motion .hero .panel.rv-in { transform: none; }

/* gentle continuous bob on the floating certificate card */
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes toastin { from { opacity: 0; transform: translateX(-16px) translateY(-8px); } to { opacity: 1; transform: none; } }
.motion .float-card { animation: toastin 0.6s ease-out both, bob 5.5s ease-in-out 0.7s infinite; }

/* hover lift on interactive-feeling cards */
.motion .feature, .motion .step, .motion .split-cell { transition-property: opacity, transform, box-shadow; }
.motion .feature:hover, .motion .step:hover {
  transform: translateY(-5px); box-shadow: 0 14px 30px rgba(18, 35, 46, 0.10);
}
.motion .split-cell:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(18, 35, 46, 0.12); }
.motion .btn-ink, .motion .btn-brand, .motion .btn-quiet, .motion .btn-onbrand {
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}
.motion .brandmark img { transition: transform 0.3s ease; }
.motion .brandmark:hover img { transform: scale(1.06); }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; }
  .pipe-arrow { justify-content: center; transform: rotate(90deg); }
  .plans { grid-template-columns: 1fr 1fr; }
  .hero { padding: 40px 0 64px; }
  .panel { margin-left: 18px; }
  .steps, .features { grid-template-columns: 1fr 1fr; }
  .evi { grid-template-columns: 48px 1fr; }
  .evi p { grid-column: 2; }
  section { padding: 44px 0; }
}
@media (max-width: 920px) and (min-width: 601px) {
  .foot-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sheet { margin: 10px; border-radius: 20px; }
  html { scroll-padding-top: 78px; }
  .hero .panel { display: none; }
  footer.foot-sheet { margin: 0 10px 10px; border-radius: 20px; }
  .foot-cols { grid-template-columns: 1fr; gap: 26px; }
  .wrap { padding: 0 18px; }
  .steps, .features, .plans { grid-template-columns: 1fr; }
  .panel { margin-left: 12px; padding: 44px 18px 52px; }
  .float-card { top: 20px; left: -8px; right: auto; bottom: auto; width: 188px; }
}

/* ---------- hosting: isolated client clouds + instance launcher ----------
   The airbrain mark is a cloud, so hosting is drawn literally: each client is
   its own cloud, walled off from the next. The dark card carries a launcher that
   flies you up to your-name.airbrain.cloud. */
.host-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.host-grid > * { min-width: 0; }
.host-lead { display: flex; flex-direction: column; }
.host-lead > p { margin-bottom: 0; }

/* launcher: your-name .airbrain.cloud [go], sat in the dark lead card */
.instance-form { margin-top: auto; padding-top: 28px; }
.instance-form label { display: block; font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.instance-field {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 6px 6px 6px 15px; transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.instance-field:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(59, 107, 138, 0.20); }
.instance-field input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  font-family: var(--mono); font-size: 0.98rem; color: var(--ink); padding: 9px 0;
}
.instance-field input::placeholder { color: #9fb3bf; }
.instance-suffix { font-family: var(--mono); font-size: 0.92rem; color: var(--muted); white-space: nowrap; }
.instance-go {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--brand); background: var(--brand); color: #fff; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}
.instance-go svg { width: 18px; height: 18px; }
.instance-go:hover { background: var(--brand-deep); border-color: var(--brand-deep); }
.instance-go:active { transform: translateY(1px); }
.instance-hint { display: block; margin-top: 12px; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: #9fb3bf; }
.instance-hint.is-error { color: #ffb0b0; }

/* the sky the client clouds float in */
.host-sky {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 22px;
  background: linear-gradient(180deg, var(--tint) 0%, var(--soft) 68%, #fff 100%);
  padding: 30px; min-height: 330px;
  display: flex; flex-direction: column; gap: 16px; justify-content: center;
}
.host-sky-label {
  position: absolute; top: 15px; right: 17px;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); opacity: 0.72;
}
.host-cloud {
  position: relative; display: flex; align-items: center; gap: 13px; margin: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 16px; max-width: 300px; box-shadow: 0 10px 26px rgba(18, 35, 46, 0.10);
}
.host-cloud img { height: 30px; width: auto; flex: none; }
.host-cloud figcaption { flex: 1; min-width: 0; }
.host-cloud figcaption b { display: block; font-size: 0.92rem; line-height: 1.2; white-space: nowrap; overflow: hidden; }
.host-cloud figcaption .mono { display: block; font-size: 0.66rem; color: var(--muted); letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; }
/* long instance names auto-scroll (marquee), no scrollbar; JS adds .run only on overflow */
.hc-scroll { display: inline-block; white-space: nowrap; }
.hc-scroll.run { animation: hc-marq var(--dur, 7s) ease-in-out infinite alternate; }
@keyframes hc-marq { from { transform: translateX(0); } to { transform: translateX(var(--shift, 0)); } }
@media (prefers-reduced-motion: reduce) { .hc-scroll.run { animation: none; } }
.host-cloud .hc-lock { flex: none; color: var(--brand); display: inline-flex; }
.host-cloud .hc-lock svg { width: 16px; height: 16px; }
.host-cloud.hc-1 { align-self: flex-start; }
.host-cloud.hc-you {
  align-self: center; z-index: 2;
  border-color: var(--brand); background: var(--tint);
  box-shadow: 0 16px 38px rgba(59, 107, 138, 0.30);
}
.host-cloud.hc-you figcaption .mono { color: var(--brand-deep); font-weight: 600; }
.host-cloud.hc-3 { align-self: flex-end; }
.hc-tag {
  flex: none; font-family: var(--mono); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
  background: var(--brand); border-radius: 999px; padding: 3px 10px;
}

/* movement: clouds drift; yours lifts off on sign-in */
.motion .host-cloud { animation: bob 6s ease-in-out infinite; }
.motion .host-cloud.hc-1 { animation-duration: 6.6s; animation-delay: -1.2s; }
.motion .host-cloud.hc-you { animation-duration: 5.2s; }
.motion .host-cloud.hc-3 { animation-duration: 7.1s; animation-delay: -2.6s; }
.host-sky.launching .host-cloud.hc-1,
.host-sky.launching .host-cloud.hc-3 { opacity: 0.25; transition: opacity 0.5s ease; animation-play-state: paused; }
.host-sky.launching .host-cloud.hc-you { animation: liftoff 0.72s cubic-bezier(0.5, 0, 0.75, -0.15) forwards; }
@keyframes liftoff {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  28% { transform: translateY(12px) scale(0.97); }
  100% { transform: translateY(-340px) scale(1.18); opacity: 0; }
}

@media (max-width: 920px) {
  .host-grid { grid-template-columns: 1fr; }
  .host-sky { min-height: 300px; }
}
@media (max-width: 600px) {
  .host-cloud, .host-cloud.hc-1, .host-cloud.hc-you, .host-cloud.hc-3 { align-self: stretch; max-width: none; }
}

/* ---------- contact: enquiry form + what-happens-next aside ---------- */
.contact-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 20px; align-items: stretch; }

/* dark aside carrying the three-step "we will scope it with you" flow */
.contact-aside {
  background: var(--ink); color: #fff; border-radius: 22px; padding: 34px 32px;
  display: flex; flex-direction: column;
}
.contact-aside h3 { color: #fff; font-size: 1.28rem; margin-bottom: 22px; }
.contact-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.contact-steps li { display: flex; gap: 14px; align-items: flex-start; }
.cs-n {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: 0.85rem; color: #fff;
  background: linear-gradient(145deg, #d42bd6 0%, #8b2fd9 100%);
}
.contact-steps b { display: block; font-size: 0.99rem; }
.contact-steps p { margin: 3px 0 0; color: #c8d3da; font-size: 0.9rem; }
.contact-reassure { margin: auto 0 0; padding-top: 24px; color: #9fb3bf; font-size: 0.72rem; letter-spacing: 0.02em; line-height: 1.5; }
.contact-reassure a { color: #cfe1ec; }

/* the form card */
.contact-form { background: var(--soft); border: 1px solid var(--line); border-radius: 22px; padding: 32px; }
.cf-row { display: flex; flex-direction: column; margin-bottom: 16px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cf-grid .cf-row { margin-bottom: 0; }
.cf-row label, .cf-consent { font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.cf-row label { margin-bottom: 8px; }
.req { color: var(--cloud); font-weight: 800; }
.contact-form input[type="text"], .contact-form input[type="email"],
.contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font-family: inherit; font-size: 0.98rem; color: var(--ink); background: #fff;
  outline: 0; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form textarea { resize: vertical; min-height: 108px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 4px rgba(59, 107, 138, 0.16);
}
.contact-form ::placeholder { color: #9fb3bf; }
.cf-consent { display: flex; gap: 12px; align-items: flex-start; margin: 4px 0 20px; font-weight: 500; color: var(--muted); line-height: 1.5; }
.cf-consent input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brand); }
.cf-consent a { color: var(--brand); font-weight: 600; }
.cf-turnstile-box { margin-bottom: 18px; }
.cf-submit { width: 100%; justify-content: center; }
.cf-submit:disabled { opacity: 0.7; cursor: default; }
.cf-feedback { margin: 14px 0 0; font-size: 0.9rem; font-weight: 600; min-height: 1.1em; }
.cf-feedback.ok { color: var(--ok); }
.cf-feedback.err { color: var(--danger); }
/* honeypots: off-screen, never shown to a person */
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* success state: a friendly cloud and a promise to be in touch */
.cf-success { text-align: center; padding: 30px 20px; }
.cf-success-cloud { width: 76px; height: auto; margin-bottom: 10px; }
.cf-success h3 { font-size: 1.4rem; }
.cf-success p { color: var(--muted); max-width: 40ch; margin: 0 auto; }
.motion .cf-success-cloud { animation: bob 5s ease-in-out infinite; }

@media (max-width: 920px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cf-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* ---------- free courses: the included library ---------- */
.fc-suites { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fc-suite {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 22px; padding: 30px; background: #fff;
  box-shadow: 0 10px 26px rgba(18, 35, 46, 0.06);
}
/* a soft logo-colour wash bleeding down from the top of each card */
.fc-suite::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 130px; pointer-events: none;
  background: linear-gradient(180deg, rgba(212, 43, 214, 0.09) 0%, rgba(212, 43, 214, 0) 100%);
}
.fc-suite > * { position: relative; }
.fc-suite-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.fc-ico {
  flex: none; width: 48px; height: 48px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #d42bd6 0%, #8b2fd9 100%); color: #fff;
  box-shadow: 0 8px 20px rgba(139, 47, 217, 0.30);
}
.fc-ico svg { width: 25px; height: 25px; }
.fc-suite-titles h3 { margin: 0 0 3px; font-size: 1.18rem; }
.fc-src { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.fc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.fc-list li {
  display: flex; align-items: center; gap: 11px; font-size: 0.97rem; font-weight: 600; color: var(--ink);
  padding: 9px 10px; border-radius: 10px;
}
.fc-list li > span:first-of-type { flex: 1; }
/* only a course that links somewhere is interactive and highlights on hover */
.fc-list li.is-link { padding: 0; }
.fc-course-link {
  display: flex; align-items: center; gap: 11px; width: 100%;
  padding: 9px 10px; border-radius: 10px; text-decoration: none; color: inherit;
}
.fc-course-link > span:first-of-type { flex: 1; }
.fc-arrow { width: 15px; height: 15px; color: var(--brand-deep); flex: none; }
.fc-course-link .fc-arrow { opacity: 0; transform: translateX(-4px); }
.fc-course-link:hover { background: var(--soft); }
.motion .fc-course-link, .motion .fc-course-link .fc-arrow { transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease; }
.motion .fc-course-link:hover .fc-arrow { opacity: 1; transform: none; }
.fc-tick { width: 16px; height: 16px; color: var(--brand); flex: none; }
.fc-live {
  margin-left: auto; font-family: var(--mono); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--ok);
  background: #eaf6ef; border: 1px solid #bfe3ce; border-radius: 999px; padding: 2px 9px;
}
.fc-more { color: var(--muted); font-weight: 500; font-style: italic; padding-left: 37px; }
/* small-business benefits: compact value chips under the heading */
.fc-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; margin: -24px 0 40px; }
.fc-benefit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--soft);
  font-size: 0.9rem; font-weight: 600; color: var(--ink);
}
.fc-benefit svg { width: 15px; height: 15px; color: var(--cloud); flex: none; }

.fc-note { text-align: center; margin: 26px auto 0; font-size: 0.78rem; color: var(--muted); }

/* motion: cards lift on hover; the course list cascades in when a card reveals;
   the live badge keeps a soft pulse */
.motion .fc-suite { transition-property: opacity, transform, box-shadow; }
.motion .fc-suite:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(18, 35, 46, 0.12); }
.motion .fc-suite .fc-list li { opacity: 0; transform: translateX(-8px); transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 0.9, 0.3, 1), background 0.2s ease; }
.motion .fc-suite.rv-in .fc-list li { opacity: 1; transform: none; }
.motion .fc-suite.rv-in .fc-list li:nth-child(1) { transition-delay: 0.10s; }
.motion .fc-suite.rv-in .fc-list li:nth-child(2) { transition-delay: 0.17s; }
.motion .fc-suite.rv-in .fc-list li:nth-child(3) { transition-delay: 0.24s; }
.motion .fc-suite.rv-in .fc-list li:nth-child(4) { transition-delay: 0.31s; }
.motion .fc-suite.rv-in .fc-list li:nth-child(5) { transition-delay: 0.38s; }
.motion .fc-suite.rv-in .fc-list li:nth-child(6) { transition-delay: 0.45s; }
.motion .fc-suite.rv-in .fc-list li:nth-child(7) { transition-delay: 0.52s; }
.motion .fc-live { animation: livepulse 2.6s ease-in-out 1s infinite; }
@keyframes livepulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(28, 124, 74, 0); }
  50% { box-shadow: 0 0 0 4px rgba(28, 124, 74, 0.14); }
}
@media (max-width: 920px) { .fc-suites { grid-template-columns: 1fr; } }

