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

:root {
  --ink: #ffffff;
  --white: #121212;
  --ink-80: #f8f9fa;
  --ink-60: #f1f3f5;
  --ink-40: #e9ecef;
  --muted: #5b626a;
  --muted-lt: #343a40;
  --border: rgba(0, 0, 0, 0.147);
  --border-lt: rgba(0, 0, 0, 0.04);
  --amber: #f87315;
  --amber-dk: #c75c0f;
  --amber-pale: rgba(248, 115, 21, 0.08);
  --amber-glow: rgba(248, 115, 21, 0.15);
  --cream: #121212;
  --cream-dim: #444444;
  --red-soft: rgba(220, 80, 60, 0.12);
  --red-text: #e05a44;
  --green-soft: rgba(60, 180, 100, 0.12);
  --green-text: #3cb464;

  --f-display: "Instrument Serif", Georgia, serif;
  --f-body: "DM Sans", system-ui, sans-serif;
  --f-mono: "DM Mono", "Courier New", monospace;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 36px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Constant base colors */
  --always-dark: #121212;
  --always-white: #ffffff;

  /* Theme adaptations */
  --bg-translucent-white: rgba(0, 0, 0, 0.04);
  --bg-translucent-white-05: rgba(0, 0, 0, 0.05);
  --bg-translucent-white-07: rgba(0, 0, 0, 0.07);
  --bg-translucent-white-03: rgba(0, 0, 0, 0.02);
  --bg-translucent-white-15: rgba(0, 0, 0, 0.15);
  --bg-translucent-white-18: rgba(0, 0, 0, 0.18);
  --bg-translucent-white-20: rgba(0, 0, 0, 0.2);

  --nav-bg: rgba(255, 255, 255, 0.85);
  --marquee-fade: #ffffff;
  --logo-color-20: rgba(0, 0, 0, 0.88);
  --logo-color-50: rgba(0, 0, 0, 0.55);
  --trust-bg: rgba(0, 0, 0, 0.015);
  --shadow-dash:
    0 0 0 1px rgba(0, 0, 0, 0.04), 0 32px 80px rgba(0, 0, 0, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.04);
  --shadow-role-screen: 0 24px 60px rgba(0, 0, 0, 0.08);
  --pvs-problem-color: #c82333;
  --pvs-solution-color: #196f3d;
}

[data-theme="dark"] {
  --ink: #121212;
  --white: #ffffff;
  --ink-80: #1e1e1e;
  --ink-60: #2a2a2a;
  --ink-40: #3d3d3d;
  --muted: #7a7a7a;
  --muted-lt: #a0a0a0;
  --border: rgba(255, 255, 255, 0.08);
  --border-lt: rgba(255, 255, 255, 0.04);
  --cream: #f5f0e8;
  --cream-dim: #c8bfaa;

  --bg-translucent-white: rgba(255, 255, 255, 0.04);
  --bg-translucent-white-05: rgba(255, 255, 255, 0.05);
  --bg-translucent-white-07: rgba(255, 255, 255, 0.07);
  --bg-translucent-white-03: rgba(255, 255, 255, 0.03);
  --bg-translucent-white-15: rgba(255, 255, 255, 0.15);
  --bg-translucent-white-18: rgba(255, 255, 255, 0.18);
  --bg-translucent-white-20: rgba(255, 255, 255, 0.2);

  --nav-bg: rgba(18, 18, 18, 0.85);
  --marquee-fade: #121212;
  --logo-color-20: rgba(255, 255, 255, 0.2);
  --logo-color-50: rgba(255, 255, 255, 0.5);
  --trust-bg: rgba(255, 255, 255, 0.015);
  --shadow-dash:
    0 0 0 1px rgba(255, 255, 255, 0.04), 0 32px 80px rgba(0, 0, 0, 0.6),
    0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-role-screen: 0 24px 60px rgba(0, 0, 0, 0.5);
  --pvs-problem-color: #ff9494;
  --pvs-solution-color: #8ce8a5;
}

/* ── PREMIUM THEME TOGGLE BUTTON ─────────────────────── */
.btn-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  outline: none;
}

.btn-theme-toggle:hover {
  border-color: var(--bg-translucent-white-18);
  background: var(--bg-translucent-white);
  transform: translateY(-1px);
}

.btn-theme-toggle:active {
  transform: translateY(0) scale(0.95);
}

.btn-theme-toggle svg {
  stroke: currentColor;
  transition:
    transform 0.4s var(--ease-out),
    opacity 0.2s ease;
}

[data-theme="dark"] .btn-theme-toggle .sun-icon {
  display: block;
}
[data-theme="dark"] .btn-theme-toggle .moon-icon {
  display: none;
}
html:not([data-theme="dark"]) .btn-theme-toggle .sun-icon {
  display: none;
}
html:not([data-theme="dark"]) .btn-theme-toggle .moon-icon {
  display: block;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── REVEAL ANIMATIONS ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal.up {
  transform: translateY(22px);
}
.reveal.left {
  transform: translateX(-22px);
}
.reveal.right {
  transform: translateX(22px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* ── NAVBAR ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, 5%);
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition:
    border-color 0.3s,
    background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--white);
}

.nav-logo-mark {
  width: 45%;
  object-fit: cover;
}

.nav-logo-mark svg {
  display: block;
}

.nav-wordmark {
  font-family: var(--f-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--white);
}

.nav-wordmark span {
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-lt);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

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

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-lt);
  text-decoration: none;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  letter-spacing: -0.01em;
}

.btn-ghost:hover {
  border-color: var(--bg-translucent-white-18);
  color: var(--white);
  background: var(--bg-translucent-white);
}

.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--always-dark);
  background: var(--amber);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  letter-spacing: -0.01em;
}

.btn-amber:hover {
  background: var(--amber);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
}

.mobile-only-action {
  display: none !important;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding: 110px max(24px, 5%) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-bg-dot {
  position: fixed;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(248, 115, 21, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--amber);
  background: var(--amber-pale);
  border: 1px solid rgba(248, 115, 21, 0.22);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero-tag-dot {
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

h1.h-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 400;
}

h1.h-title em {
  font-style: italic;
  color: var(--amber);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted-lt);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--always-dark);
  background: var(--amber);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(248, 115, 21, 0.28);
  letter-spacing: -0.01em;
}

.btn-hero-primary:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(248, 115, 21, 0.35);
}

.btn-hero-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted-lt);
  background: transparent;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s;
  letter-spacing: -0.01em;
}

.btn-hero-sec:hover {
  color: var(--white);
  border-color: var(--bg-translucent-white-20);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--ink-80);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-avatars .trust-avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.trust-text strong {
  color: var(--white);
  font-weight: 600;
}

/* ── HERO DASHBOARD ──────────────────────────────────── */
.hero-right {
  position: relative;
  z-index: 1;
}

.hero-right img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.dash-shell {
  background: var(--ink-80);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-dash);
  width: 100%;
}

.dash-titlebar {
  background: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.mac-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mac-r {
  background: #ff5f57;
}
.mac-y {
  background: #febc2e;
}
.mac-g {
  background: #28c840;
}

.dash-url {
  margin-left: 8px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--muted);
  background: var(--ink-80);
  padding: 4px 12px;
  border-radius: 5px;
  border: 1px solid var(--border);
  flex: 1;
  max-width: 240px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dash-inner {
  display: grid;
  grid-template-columns: 172px 1fr;
  min-height: 330px;
}

.dash-sidebar {
  background: var(--ink);
  border-right: 1px solid var(--border);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dash-project-name {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 8px 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}

.sb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  user-select: none;
}

.sb-item svg {
  flex-shrink: 0;
  opacity: 0.6;
}
.sb-item.active {
  background: var(--amber-pale);
  color: var(--amber);
}
.sb-item.active svg {
  opacity: 1;
}
.sb-item:not(.active):hover {
  background: var(--bg-translucent-white);
  color: var(--white);
}

.dash-main {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.dash-toprow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-page-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.dash-live-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(60, 180, 100, 0.1);
  border: 1px solid rgba(60, 180, 100, 0.2);
  color: var(--green-text);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 100px;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-text);
  animation: blink 1.5s ease-in-out infinite;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.kpi-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 13px;
}

.kpi-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 5px;
}

.kpi-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.kpi-value.amber {
  color: var(--amber);
}
.kpi-value.green {
  color: var(--green-text);
}

.kpi-delta {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--green-text);
  display: flex;
  align-items: center;
  gap: 3px;
}

.kpi-delta.warn {
  color: #f5a623;
}

.dash-chart-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 13px;
  flex: 1;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.chart-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
}

.chart-range {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  color: var(--muted);
  background: var(--bg-translucent-white);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.bars-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}

.bar-fill {
  width: 100%;
  border-radius: 3px 3px 0 0;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(248, 115, 21, 0.3);
}

.bar-fill.highlight {
  background: var(--amber);
}

.bar-month {
  font-size: 0.55rem;
  color: var(--muted);
  font-family: var(--f-mono);
}

/* ── TRUST LOGOS STRIP ───────────────────────────────── */
.trust-section {
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  padding: 32px max(24px, 5%);
  background: var(--trust-bg);
  overflow: hidden;
}

.trust-caption {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--marquee-fade), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--marquee-fade), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 0s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-family: var(--f-display);
  font-size: 0.95rem;
  color: var(--logo-color-20);
  white-space: nowrap;
  cursor: default;
  transition: color 0.25s;
  letter-spacing: -0.01em;
}

.logo-item:hover {
  color: var(--logo-color-50);
}

.logo-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-sep {
  color: rgba(248, 115, 21, 0.25);
  font-size: 0.6rem;
  flex-shrink: 0;
  padding: 0 4px;
}

/* ── SECTION COMMONS ─────────────────────────────────── */
.section {
  padding: 100px max(24px, 5%);
  max-width: 1320px;
  margin: 0 auto;
}

.section-full {
  padding: 100px max(24px, 5%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

h2.s-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h2.s-title em {
  font-style: italic;
  color: var(--amber);
}

.s-sub {
  font-size: 1rem;
  color: var(--muted-lt);
  line-height: 1.75;
  max-width: 480px;
}

/* ── FEATURES SECTION ───────────────────────────────── */
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.features-desc-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.feature-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--muted-lt);
  line-height: 1.55;
}

.perk-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber-pale);
  border: 1px solid rgba(248, 115, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.perk-icon svg {
  display: block;
}

/* Features grid - intentionally asymmetric */
.features-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.feat-card {
  background: var(--ink-80);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.feat-card:hover {
  border-color: rgba(248, 115, 21, 0.2);
  transform: translateY(-2px);
}

.feat-card.tall {
  grid-row: span 2;
}

.feat-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--bg-translucent-white-03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feat-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feat-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.feat-visual {
  margin-top: 20px;
  border-radius: var(--r-md);
  overflow: hidden;
}

/* Mini attendance chart inside feature card */
.attend-preview {
  background: var(--ink);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  padding: 14px;
  margin-top: 20px;
}

.attend-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.attend-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.attend-today {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--green-text);
  background: var(--green-soft);
  padding: 2px 7px;
  border-radius: 100px;
}

.attend-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.attend-name {
  font-size: 0.72rem;
  color: var(--muted-lt);
  width: 90px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.attend-bar-track {
  flex: 1;
  height: 6px;
  background: var(--bg-translucent-white-05);
  border-radius: 100px;
  overflow: hidden;
}

.attend-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--amber);
}

.attend-pct {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  color: var(--muted);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

/* Ledger mini table */
.ledger-preview {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ledger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  background: var(--ink);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}

.ledger-party {
  font-size: 0.72rem;
  color: var(--muted-lt);
}

.ledger-tag {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  color: var(--muted);
  background: var(--bg-translucent-white);
  padding: 2px 6px;
  border-radius: 3px;
}

.ledger-amount {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
}

.ledger-amount.cr {
  color: var(--green-text);
}
.ledger-amount.dr {
  color: var(--red-text);
}

/* ── PROBLEM → SOLUTION ────────────────────────────── */
.pvs-section {
  background: var(--ink-80);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pvs-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px max(24px, 5%);
}

.pvs-layout {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: cneter;
  margin-top: 56px;
}

.pvs-col-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.pvs-col-label.before {
  color: var(--red-text);
}
.pvs-col-label.after {
  color: var(--green-text);
}

.pvs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pvs-dot.red {
  background: var(--red-text);
}
.pvs-dot.green {
  background: var(--green-text);
}

.pvs-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pvs-item {
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.pvs-item.problem {
  background: var(--red-soft);
  color: var(--pvs-problem-color);
  border: 1px solid rgba(220, 80, 60, 0.1);
}

.pvs-item.solution {
  background: var(--green-soft);
  color: var(--pvs-solution-color);
  border: 1px solid rgba(60, 180, 100, 0.12);
}

.pvs-item-icon {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.pvs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
}

.pvs-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── STATS SECTION ───────────────────────────────── */
.stats-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px max(24px, 5%);
}

.stats-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.stat-item {
  background: var(--ink-80);
  padding: 36px 28px;
  position: relative;
}

.stat-number {
  font-family: var(--f-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-number em {
  font-style: italic;
  color: var(--amber);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.stat-label strong {
  display: block;
  color: var(--muted-lt);
  font-weight: 500;
  margin-bottom: 2px;
}

/* ── ROLES / PERSONAS SECTION ────────────────────── */
.roles-section {
  background: var(--ink);
  border-top: 1px solid var(--border-lt);
}

.roles-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px max(24px, 5%);
}

.role-tabs {
  display: flex;
  gap: 4px;
  background: var(--ink-80);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 4px;
  width: fit-content;
  margin-top: 40px;
  margin-bottom: 40px;
}

.role-tab {
  padding: 9px 22px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
  border: none;
  background: transparent;
  white-space: nowrap;
}

.role-tab.active {
  background: var(--amber);
  color: var(--always-dark);
}

.role-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.role-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.role-content h3 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.role-content h3 em {
  font-style: italic;
  color: var(--amber);
}

.role-content p {
  font-size: 0.95rem;
  color: var(--muted-lt);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 440px;
}

.role-bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.role-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--muted-lt);
}

.bullet-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--amber-pale);
  border: 1px solid rgba(248, 115, 21, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.role-screen {
  background: var(--ink-80);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-role-screen);
}

.role-screen-bar {
  background: var(--ink-60);
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
}

.role-screen-title {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}

.role-screen-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── TESTIMONIALS ─────────────────────────────────── */
.testi-section {
  border-top: 1px solid var(--border-lt);
  background: var(--ink-80);
}

.testi-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px max(24px, 5%);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}

.testi-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s;
}

.testi-card:hover {
  border-color: rgba(248, 115, 21, 0.15);
}

.testi-card.featured {
  background: var(--ink-60);
  border-color: rgba(248, 115, 21, 0.18);
}

.testi-stars {
  display: flex;
  gap: 3px;
}

.star {
  color: var(--amber);
  font-size: 0.8rem;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testi-card.featured .testi-quote {
  font-size: 1.05rem;
  color: var(--cream);
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── CONTACT US SECTION ───────────────────────────── */
.contact-section {
  background: var(--ink-80);
  border-top: 1px solid var(--border-lt);
}

.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px max(24px, 5%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--amber);
  background: var(--amber-pale);
  border: 1px solid rgba(248, 115, 21, 0.22);
  padding: 5px 13px;
  border-radius: 100px;
  align-self: flex-start;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-info h2 {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  font-weight: 400;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--amber);
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.25s var(--ease-out);
}

.contact-item:hover {
  border-color: rgba(248, 115, 21, 0.2);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--bg-translucent-white-05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1.25rem;
}

.contact-text h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-text p {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

.contact-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-dash);
}

@media (max-width: 576px) {
  .contact-card {
    padding: 28px 20px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.form-control {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--white);
  background: var(--ink-80);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  outline: none;
  transition: all 0.25s var(--ease-out);
}

.form-control::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-control:focus {
  border-color: var(--amber);
  background: var(--ink);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-contact-submit {
  width: 100%;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--always-dark);
  background: var(--amber);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s var(--ease-out);
  letter-spacing: -0.01em;
  box-shadow: 0 6px 28px rgba(248, 115, 21, 0.28);
}

.btn-contact-submit:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(248, 115, 21, 0.35);
}

.btn-contact-submit:active {
  transform: translateY(0);
}

/* ── FAQ ──────────────────────────────────────────── */
.faq-section {
  background: var(--ink-80);
  border-top: 1px solid var(--border-lt);
}

.faq-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px max(24px, 5%);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 80px;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.faq-q:hover {
  color: var(--amber);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.2s,
    border-color 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  border-color: rgba(248, 115, 21, 0.3);
}

.faq-a {
  font-size: 0.875rem;
  color: var(--muted-lt);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s var(--ease-out),
    padding 0.2s;
  padding-bottom: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 18px;
}

/* ── FINAL CTA ────────────────────────────────────── */
.cta-section {
  border-top: 1px solid var(--border-lt);
  position: relative;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(248, 115, 21, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 100px max(24px, 5%);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--amber);
}

.cta-inner p {
  font-size: 1rem;
  color: var(--muted-lt);
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 64px max(24px, 5%) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1320px;
  margin: 0 auto 48px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 240px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
  font-family: var(--f-mono);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-lt);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--f-mono);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.social-link:hover {
  border-color: var(--bg-translucent-white-20);
  color: var(--white);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  h1.h-title {
    font-size: clamp(2.6rem, 6vw, 4rem);
  }
  .features-header {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feat-card.tall {
    grid-row: auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-header {
    grid-template-columns: 1fr;
  }
  .pvs-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pvs-divider {
    display: none;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-sticky {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .role-panel.active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 16px;
    height: 64px;
    justify-content: space-between;
  }
  .nav-logo {
    margin-right: auto;
  }
  .nav-logo img {
    height: 44px !important;
  }
  .nav-wordmark {
    font-size: 1.35rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: var(--nav-bg);
    backdrop-filter: blur(20px) saturate(1.5);
    border-top: 1px solid var(--border);
    padding: 32px max(24px, 6%) 48px;
    gap: 16px;
    overflow-y: auto;
    z-index: 199;
  }
  nav.nav-open .nav-links {
    display: flex !important;
    animation: slideDownMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes slideDownMenu {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .nav-links li {
    width: 100%;
    list-style: none;
  }
  .nav-links li:not(.mobile-only-action) a {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--muted-lt);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
  }
  .nav-links li:not(.mobile-only-action) a::after {
    content: '→';
    font-size: 1.1rem;
    color: var(--muted);
    transition: transform 0.25s ease, color 0.25s ease;
  }
  .nav-links li:not(.mobile-only-action) a:hover {
    color: var(--white);
    background: rgba(248, 115, 21, 0.06);
    border-color: rgba(248, 115, 21, 0.3);
  }
  .nav-links li:not(.mobile-only-action) a:hover::after {
    transform: translateX(4px);
    color: var(--amber);
  }
  .mobile-only-action {
    display: block !important;
  }
  .mobile-only-action .btn-ghost {
    display: flex !important;
    width: 100%;
    padding: 14px;
    justify-content: center;
    align-items: center;
    border-radius: var(--r-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    margin-top: 12px;
    text-decoration: none;
  }
  .mobile-only-action .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--muted);
  }
  .mobile-only-action .btn-amber {
    display: flex !important;
    width: 100%;
    padding: 14px;
    justify-content: center;
    align-items: center;
    border-radius: var(--r-md);
    font-size: 1rem;
    font-weight: 700;
    color: var(--always-dark) !important;
    background: var(--amber) !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(248, 115, 21, 0.25);
    transition: all 0.2s ease;
    text-decoration: none;
  }
  .mobile-only-action .btn-amber:hover {
    background: var(--amber) !important;
    box-shadow: 0 6px 16px rgba(248, 115, 21, 0.4);
    transform: translateY(-1px);
  }
  .nav-actions {
    display: flex;
    align-items: center;
    margin-right: 12px;
  }
  .nav-actions .btn-ghost,
  .nav-actions .btn-amber {
    display: none !important;
  }
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
  }
  nav.nav-open .hamburger {
    border-color: var(--amber) !important;
    background: var(--amber-pale) !important;
    color: var(--amber) !important;
  }
  .mobile-only-action {
    display: block !important;
  }
  .dash-inner {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    display: none;
  }
  .kpi-row {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--r-lg);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .role-tabs {
    flex-wrap: wrap;
  }
}

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

.anim-d0 {
  animation: fadeSlideUp 0.7s var(--ease-out) 0s both;
}
.anim-d1 {
  animation: fadeSlideUp 0.7s var(--ease-out) 0.1s both;
}
.anim-d2 {
  animation: fadeSlideUp 0.7s var(--ease-out) 0.2s both;
}
.anim-d3 {
  animation: fadeSlideUp 0.7s var(--ease-out) 0.35s both;
}
.anim-d4 {
  animation: fadeSlideUp 0.7s var(--ease-out) 0.5s both;
}
.anim-d5 {
  animation: fadeSlideUp 0.7s var(--ease-out) 0.65s both;
}
