@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400;1,600&display=swap");

/* ==========================================================================
   BENE.BIZ — "Aurora" design system
   --------------------------------------------------------------------------
   Hand-written stylesheet (NOT compiled from assets/scss).
   Always loaded AFTER ud-styles.css so the legacy overrides at the bottom win.

   1. Tokens
   2. Base + typography
   3. Layout primitives
   4. Buttons / badges / pills
   5. Cards + grids
   6. Aurora background effects + reveal animation
   7. Header + navigation
   8. Hero
   9. Sections (feature, split, showcase, stats, steps, pricing, faq, cta)
  10. Footer + back-to-top
  11. Legacy ud-* overrides (product pages, docs, legal, 404)
  12. Responsive
   ========================================================================== */

/* ============================ 1. TOKENS ================================== */
:root {
  --au-ink: #16182e;
  --au-body: #3f4560;
  --au-muted: #6b708c;

  --au-primary: #4243c9;
  --au-primary-deep: #3c3db9;
  --au-primary-2: #5a48d8;
  --au-primary-3: #7a66ec;
  --au-primary-soft: #f0f0fc;

  --au-accent: #ff3700;
  --au-accent-deep: #d33000;

  --au-bg: #fbfbfe;
  --au-bg-alt: #f1f1fb;
  --au-night: #191a3f;
  --au-night-2: #2b2c85;
  --au-footer-bg: #15142a;
  --au-white: #ffffff;

  --au-line: rgba(22, 24, 46, 0.09);
  --au-line-strong: rgba(22, 24, 46, 0.14);

  --au-shadow-xs: 0 4px 14px rgba(22, 24, 46, 0.04);
  --au-shadow-sm: 0 12px 28px rgba(22, 24, 46, 0.07);
  --au-shadow-md: 0 24px 48px rgba(22, 24, 46, 0.1);
  --au-shadow-lg: 0 30px 70px rgba(22, 24, 46, 0.12);
  --au-shadow-primary: 0 14px 34px rgba(66, 67, 201, 0.32);

  --au-r-sm: 12px;
  --au-r-md: 18px;
  --au-r-lg: 22px;
  --au-r-xl: 32px;
  --au-r-pill: 999px;

  --au-font-head: "Sora", "Instrument Sans", system-ui, sans-serif;
  --au-font-body: "Instrument Sans", system-ui, -apple-system, sans-serif;

  --au-shell: 1200px;
  --au-gutter: 32px;
  --au-header-h: 72px;

  --au-ease: cubic-bezier(0.2, 0.6, 0.2, 1);

  /* keep legacy variables in sync with the new palette */
  --font: var(--au-font-body);
  --body-color: var(--au-body);
  --heading-color: var(--au-ink);
  --primary-color: var(--au-primary);
  --primary-dark-color: var(--au-primary-deep);
  --hero-bg: var(--au-bg);
  --footer-bg: var(--au-footer-bg);
  --bene-dot-color: var(--au-accent);
}

/* ========================= 2. BASE + TYPOGRAPHY ========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--au-bg);
  color: var(--au-body);
  font-family: var(--au-font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.au-no-scroll {
  overflow: hidden;
}

a {
  color: var(--au-primary);
  text-decoration: none;
  transition: color 0.2s var(--au-ease);
}

a:hover {
  color: var(--au-ink);
}

img {
  max-width: 100%;
}

::selection {
  background: rgba(66, 67, 201, 0.16);
  color: var(--au-ink);
}

.au-h1,
.au-h2,
.au-h3,
.au-h4 {
  font-family: var(--au-font-head);
  color: var(--au-ink);
  letter-spacing: -0.03em;
  margin: 0;
}

.au-h1 {
  font-weight: 800;
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 1.05;
}

.au-h2 {
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
}

.au-h3 {
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.au-h4 {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.au-lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
  color: var(--au-body);
  margin: 0;
}

.au-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--au-body);
  margin: 0;
}

.au-text-sm {
  font-size: 15px;
  line-height: 1.7;
  color: var(--au-body);
  margin: 0;
}

.au-gradient-text {
  background: linear-gradient(95deg, #3c3db9, #5a48d8 45%, #7a66ec 75%, #b95ec9 105%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.au-strong {
  color: var(--au-ink);
  font-weight: 600;
}

.au-bene {
  font-weight: 700;
  color: var(--au-ink);
}

.au-bene-dot {
  color: var(--au-accent);
  font-weight: 800;
}

.au-bene-accent {
  color: var(--au-accent);
  font-style: italic;
  font-weight: 600;
}

/* ========================= 3. LAYOUT PRIMITIVES ========================== */
.au-wrap {
  max-width: var(--au-shell);
  margin: 0 auto;
  padding: 0 var(--au-gutter);
  width: 100%;
}

.au-wrap-narrow {
  max-width: 860px;
}

.au-section {
  position: relative;
  padding: 110px 0;
}

.au-section-sm {
  padding: 80px 0;
}

.au-section-lg {
  padding: 130px 0;
}

.au-bg-alt {
  background: linear-gradient(180deg, var(--au-bg), var(--au-bg-alt) 12%, var(--au-bg-alt) 88%, var(--au-bg));
}

.au-bg-flat {
  background: var(--au-bg-alt);
}

.au-bg-night {
  background: var(--au-night);
  color: rgba(255, 255, 255, 0.78);
}

.au-head {
  max-width: 680px;
  margin-bottom: 64px;
}

.au-head-center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.au-head .au-lead,
.au-head .au-text {
  margin-top: 22px;
}

.au-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--au-primary);
  margin-bottom: 18px;
}

.au-bg-night .au-eyebrow {
  color: #a9a6f5;
}

.au-bg-night .au-h2,
.au-bg-night .au-h3,
.au-bg-night .au-h4 {
  color: #fff;
}

.au-bg-night .au-lead,
.au-bg-night .au-text,
.au-bg-night .au-text-sm {
  color: rgba(255, 255, 255, 0.76);
}

/* ===================== 4. BUTTONS / BADGES / PILLS ======================= */
.au-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--au-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 32px;
  border-radius: var(--au-r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s var(--au-ease);
}

.au-btn-sm {
  font-size: 15px;
  padding: 11px 22px;
}

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

.au-btn-primary:hover {
  background: var(--au-ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(22, 24, 46, 0.28);
}

.au-btn-gradient {
  background: linear-gradient(100deg, var(--au-primary), var(--au-primary-2));
  color: #fff;
  box-shadow: var(--au-shadow-primary);
}

.au-btn-gradient:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(66, 67, 201, 0.42);
}

.au-btn-ghost {
  background: #fff;
  color: var(--au-ink);
  border-color: var(--au-line-strong);
}

.au-btn-ghost:hover {
  border-color: var(--au-primary);
  color: var(--au-primary);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(66, 67, 201, 0.14);
}

.au-btn-light {
  background: #fff;
  color: var(--au-ink);
}

.au-btn-light:hover {
  background: var(--au-accent);
  color: #fff;
  transform: translateY(-2px);
}

.au-btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.au-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

.au-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.au-btn-row-center {
  justify-content: center;
}

.au-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--au-primary);
}

.au-link i {
  font-size: 13px;
  transition: transform 0.25s var(--au-ease);
}

.au-link:hover {
  color: var(--au-ink);
}

.au-link:hover i {
  transform: translateX(4px);
}

.au-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 55, 0, 0.07);
  border: 1px solid rgba(255, 55, 0, 0.2);
  color: var(--au-accent-deep);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--au-r-pill);
  margin-bottom: 24px;
}

.au-badge-primary {
  background: rgba(66, 67, 201, 0.08);
  border-color: rgba(66, 67, 201, 0.22);
  color: var(--au-primary);
}

.au-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 18px;
  border-radius: var(--au-r-pill);
}

.au-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.au-pill-light {
  color: var(--au-ink);
  background: #fff;
  border-color: var(--au-line);
  box-shadow: var(--au-shadow-xs);
}

/* ========================== 5. CARDS + GRIDS ============================= */
.au-grid {
  display: grid;
  gap: 24px;
}

.au-grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.au-grid-auto-sm {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

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

.au-span-2 {
  grid-column: span 2;
}

.au-card {
  background: #fff;
  border: 1px solid var(--au-line);
  border-radius: var(--au-r-lg);
  padding: 34px 32px;
  box-shadow: var(--au-shadow-xs);
  transition: all 0.35s var(--au-ease);
}

.au-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--au-shadow-md);
  border-color: rgba(66, 67, 201, 0.35);
}

.au-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.au-icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  background: rgba(66, 67, 201, 0.1);
  color: var(--au-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.au-icon-accent {
  background: rgba(255, 55, 0, 0.09);
  color: var(--au-accent-deep);
}

.au-icon-lg {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  font-size: 26px;
}

.au-card p a {
  font-weight: 500;
}

.au-card-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.au-card-glass .au-h4,
.au-card-glass h3 {
  color: #fff;
}

.au-card-glass p {
  color: rgba(255, 255, 255, 0.76);
}

.au-card-glass .au-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Product teaser card (Power BI visuals grid) */
.au-product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--au-line);
  border-radius: var(--au-r-lg);
  padding: 30px 28px;
  box-shadow: var(--au-shadow-xs);
  transition: all 0.35s var(--au-ease);
  height: 100%;
}

.au-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--au-shadow-md);
  border-color: rgba(66, 67, 201, 0.35);
}

.au-product-card img.au-product-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
}

.au-product-card h3 {
  font-family: var(--au-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--au-ink);
  margin: 0;
}

.au-product-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--au-body);
  margin: 0;
  flex: 1 1 auto;
}

/* Injected "explore our visuals" strip (products-visuals.html) */
.au-visuals-strip {
  border-top: 1px solid var(--au-line);
  padding-top: 64px;
  margin-top: 72px;
}

.au-product-card-cta {
  justify-content: center;
  background: linear-gradient(120deg, var(--au-night), var(--au-night-2) 70%, var(--au-primary));
  border-color: transparent;
}

.au-product-card-cta h3 {
  color: #fff;
}

.au-product-card-cta p {
  color: rgba(255, 255, 255, 0.78);
  flex: 0 1 auto;
}

.au-product-card-cta .au-btn {
  align-self: flex-start;
}

/* ================ 6. AURORA EFFECTS + REVEAL ANIMATION =================== */
@keyframes auroraFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.15); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes auroraFloat2 {
  0% { transform: translate(0, 0) scale(1.1); }
  50% { transform: translate(-70px, 50px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1.1); }
}

@keyframes auScrollCue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.au-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.au-blob {
  position: absolute;
  border-radius: 50%;
}

.au-blob-1 {
  top: -15%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(66, 67, 201, 0.16), transparent 65%);
  animation: auroraFloat 14s ease-in-out infinite;
}

.au-blob-2 {
  bottom: -20%;
  right: -12%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 55, 0, 0.08), transparent 62%);
  animation: auroraFloat2 18s ease-in-out infinite;
}

.au-blob-3 {
  top: 30%;
  right: 10%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(122, 102, 236, 0.12), transparent 60%);
  animation: auroraFloat 22s ease-in-out infinite;
}

.au-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
  filter: brightness(1.2);
  pointer-events: none;
}

.au-video-bg-strong {
  opacity: 0.14;
}

[data-reveal] {
  will-change: opacity, transform;
}

.au-reveal-hidden {
  opacity: 0;
  transform: translateY(28px);
}

.au-reveal-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--au-ease), transform 0.7s var(--au-ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .au-blob, .au-video-bg { animation: none; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ======================= 7. HEADER + NAVIGATION ========================== */
.au-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  transition: background 0.35s var(--au-ease), box-shadow 0.35s var(--au-ease), backdrop-filter 0.35s var(--au-ease);
}

.au-header.au-header-stuck {
  background: rgba(251, 251, 254, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(22, 24, 46, 0.08);
}

.au-header-inner {
  max-width: var(--au-shell);
  margin: 0 auto;
  padding: 0 var(--au-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: var(--au-header-h);
}

.au-brand {
  display: flex;
  align-items: center;
  flex: none;
}

.au-brand img {
  width: 150px;
}

.au-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
}

.au-nav > a,
.au-nav-trigger {
  font-family: var(--au-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--au-ink);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s var(--au-ease);
}

.au-nav > a:hover,
.au-nav-trigger:hover,
.au-nav > a.au-active,
.au-nav-group.au-active > .au-nav-trigger {
  color: var(--au-primary);
}

.au-nav > a.au-active,
.au-nav-group.au-active > .au-nav-trigger {
  font-weight: 600;
}

.au-nav-trigger i {
  font-size: 11px;
}

.au-nav-group {
  position: relative;
}

.au-menu {
  position: absolute;
  top: 100%;
  left: -14px;
  padding-top: 14px;
  width: 268px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s var(--au-ease);
}

.au-nav-group:hover .au-menu,
.au-nav-group:focus-within .au-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.au-menu-inner {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(22, 24, 46, 0.08);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 24px 54px rgba(22, 24, 46, 0.16);
}

.au-menu-inner a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--au-ink);
  border-radius: 10px;
  transition: all 0.2s var(--au-ease);
}

.au-menu-inner a:hover {
  background: var(--au-primary-soft);
  color: var(--au-primary);
}

.au-menu-sep {
  height: 1px;
  background: var(--au-line);
  margin: 8px 12px;
}

.au-header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.au-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.au-burger span {
  width: 22px;
  height: 2px;
  background: var(--au-ink);
  display: block;
  transition: all 0.3s var(--au-ease);
}

.au-burger.au-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.au-burger.au-open span:nth-child(2) { opacity: 0; }
.au-burger.au-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.au-mobile-panel {
  display: none;
  position: absolute;
  top: var(--au-header-h);
  right: 16px;
  width: 320px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - var(--au-header-h) - 24px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--au-r-md);
  box-shadow: 0 24px 60px rgba(22, 24, 46, 0.18);
  border: 1px solid var(--au-line);
  padding: 12px;
}

.au-mobile-panel.au-open {
  display: block;
}

.au-mobile-panel a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--au-ink);
  border-radius: var(--au-r-sm);
}

.au-mobile-panel a:hover {
  background: var(--au-primary-soft);
  color: var(--au-primary);
}

.au-mobile-panel a.au-sub {
  padding: 10px 16px 10px 32px;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--au-body);
}

.au-mobile-panel .au-mobile-label {
  padding: 14px 16px 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--au-muted);
}

/* ============================== 8. HERO ================================= */
.au-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--au-bg);
  padding: 140px 0 90px;
}

/* Soft scrim so the video texture never competes with the headline */
.au-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 72% 62% at 50% 45%,
    rgba(251, 251, 254, 0.94),
    rgba(251, 251, 254, 0.55) 62%,
    rgba(251, 251, 254, 0) 100%
  );
}

.au-hero-sm {
  min-height: 0;
  padding: 170px 0 90px;
}

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

.au-hero-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.au-hero-center .au-lead {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.au-hero .au-h1 {
  margin-bottom: 28px;
}

.au-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.au-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 44px;
  overflow: hidden;
}

.au-scroll-cue span {
  display: block;
  width: 2px;
  height: 100%;
  background: linear-gradient(var(--au-primary), transparent);
  animation: auScrollCue 2.2s ease-in-out infinite;
}

/* ============================ 9. SECTIONS =============================== */
/* --- Showcase panel (dark gradient hero-card, used for Docus) --- */
.au-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--au-night), var(--au-night-2) 60%, var(--au-primary));
  border-radius: var(--au-r-xl);
  padding: 56px;
  color: #fff;
}

.au-showcase::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 55, 0, 0.2), transparent 65%);
  animation: auroraFloat2 16s ease-in-out infinite;
  pointer-events: none;
}

.au-showcase > * {
  position: relative;
  z-index: 1;
}

.au-showcase .au-h2,
.au-showcase .au-h3 {
  color: #fff;
}

/* --- Split panel (image + text) --- */
.au-split {
  background: #fff;
  border: 1px solid var(--au-line);
  border-radius: var(--au-r-xl);
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.9fr);
  gap: 40px;
  align-items: center;
  box-shadow: var(--au-shadow-lg);
  overflow: hidden;
}

.au-split-reverse {
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
}

.au-split-body {
  padding: 72px 24px 72px 72px;
}

.au-split-reverse .au-split-body {
  padding: 72px 72px 72px 24px;
}

.au-split-media {
  padding: 48px;
}

.au-split-media img {
  width: 100%;
  border-radius: 20px;
}

.au-split-body .au-text,
.au-split-body .au-text-sm {
  margin-bottom: 18px;
}

.au-split-body .au-btn {
  margin-top: 18px;
}

/* --- Steps / how it works --- */
.au-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  counter-reset: austep;
}

.au-step {
  position: relative;
  padding-top: 26px;
  border-top: 2px solid var(--au-line);
}

.au-step::before {
  counter-increment: austep;
  content: "0" counter(austep);
  display: block;
  font-family: var(--au-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--au-primary);
  margin-bottom: 14px;
}

.au-step h3 {
  font-family: var(--au-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--au-ink);
  margin: 0 0 12px;
}

.au-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--au-body);
  margin: 0;
}

.au-bg-night .au-step {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.au-bg-night .au-step h3 {
  color: #fff;
}

.au-bg-night .au-step p {
  color: rgba(255, 255, 255, 0.72);
}

/* --- Stats --- */
.au-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.au-stat {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid var(--au-line);
  border-radius: var(--au-r-lg);
  box-shadow: var(--au-shadow-xs);
}

.au-stat strong {
  display: block;
  font-family: var(--au-font-head);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--au-ink);
  margin-bottom: 6px;
}

.au-stat span {
  font-size: 14.5px;
  color: var(--au-muted);
}

/* --- Checklist --- */
.au-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.au-checklist li {
  position: relative;
  padding-left: 34px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--au-body);
}

.au-checklist li::before {
  content: "\eee8"; /* lni-check */
  font-family: "Lineicons";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(66, 67, 201, 0.1);
  color: var(--au-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.au-bg-night .au-checklist li {
  color: rgba(255, 255, 255, 0.78);
}

.au-bg-night .au-checklist li::before {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* --- Screenshot frame / product mock --- */
.au-frame {
  position: relative;
  border-radius: var(--au-r-md);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  background: rgba(251, 251, 254, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.au-frame img {
  display: block;
  width: 100%;
}

.au-frame-light {
  box-shadow: var(--au-shadow-lg);
  border: 1px solid var(--au-line);
  background: #fff;
}

/* Abstract app mock used where no product screenshot exists yet */
.au-mock {
  --mock-fg: rgba(22, 24, 46, 0.1);
  aspect-ratio: 16 / 9;
  background: #fbfbfe;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.au-mock-bar {
  height: 38px;
  flex: none;
  background: #fff;
  border-bottom: 1px solid var(--au-line);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.au-mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mock-fg);
}

.au-mock-tab {
  margin-left: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--au-muted);
  padding: 5px 12px;
  border-radius: var(--au-r-pill);
  background: var(--au-primary-soft);
}

.au-mock-body {
  flex: 1;
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 0;
}

.au-mock-side {
  border-right: 1px solid var(--au-line);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: #fff;
}

.au-mock-main {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.au-mock-line {
  height: 9px;
  border-radius: 5px;
  background: var(--mock-fg);
}

.au-mock-line.w-90 { width: 90%; }
.au-mock-line.w-75 { width: 75%; }
.au-mock-line.w-60 { width: 60%; }
.au-mock-line.w-45 { width: 45%; }
.au-mock-line.w-30 { width: 30%; }

.au-mock-line.au-mock-accent {
  background: linear-gradient(90deg, var(--au-primary), var(--au-primary-3));
  opacity: 0.75;
  height: 13px;
  width: 46%;
}

.au-mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.au-mock-card {
  border: 1px solid var(--au-line);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.au-mock-chip {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(66, 67, 201, 0.12);
}

/* --- Pricing --- */
.au-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.au-price {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--au-line);
  border-radius: var(--au-r-xl);
  padding: 40px 34px;
  box-shadow: var(--au-shadow-xs);
  transition: all 0.35s var(--au-ease);
}

.au-price:hover {
  transform: translateY(-6px);
  box-shadow: var(--au-shadow-md);
}

.au-price-featured {
  border-color: rgba(66, 67, 201, 0.4);
  box-shadow: 0 24px 60px rgba(66, 67, 201, 0.16);
  position: relative;
}

.au-price-featured::before {
  content: "Most popular";
  position: absolute;
  top: -13px;
  left: 34px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(100deg, var(--au-primary), var(--au-primary-2));
  padding: 6px 14px;
  border-radius: var(--au-r-pill);
}

.au-price h3 {
  font-family: var(--au-font-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--au-ink);
  margin: 0 0 8px;
}

.au-price-tag {
  font-family: var(--au-font-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--au-ink);
  margin: 18px 0 4px;
}

.au-price-tag small {
  /* Own line, so a long price label ("On request") never splits the
     "per user / month" qualifier across two lines. */
  display: block;
  margin-top: 2px;
  font-family: var(--au-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--au-muted);
  letter-spacing: 0;
}

.au-price .au-checklist {
  margin: 26px 0 32px;
  flex: 1 1 auto;
}

.au-price .au-btn {
  width: 100%;
}

/* --- FAQ accordion --- */
.au-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.au-faq-item {
  background: #fff;
  border: 1px solid var(--au-line);
  border-radius: var(--au-r-md);
  overflow: hidden;
  transition: border-color 0.3s var(--au-ease);
}

.au-faq-item:hover {
  border-color: rgba(66, 67, 201, 0.32);
}

.au-bg-night .au-faq-item,
.au-faq-dark .au-faq-item {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.12);
}

.au-bg-night .au-faq-item:hover,
.au-faq-dark .au-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.au-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--au-font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--au-ink);
}

.au-bg-night .au-faq-q,
.au-faq-dark .au-faq-q {
  color: #fff;
}

.au-faq-icon {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  background: rgba(66, 67, 201, 0.1);
  color: var(--au-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 0.35s var(--au-ease);
}

.au-bg-night .au-faq-icon,
.au-faq-dark .au-faq-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.au-faq-item.au-open .au-faq-icon {
  transform: rotate(180deg);
}

.au-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--au-ease);
}

.au-faq-item.au-open .au-faq-a {
  max-height: 1600px;
}

.au-faq-a-inner {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--au-body);
}

.au-bg-night .au-faq-a-inner,
.au-faq-dark .au-faq-a-inner {
  color: rgba(255, 255, 255, 0.78);
}

.au-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.au-faq-tab {
  font-family: var(--au-font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--au-body);
  background: #fff;
  border: 1px solid var(--au-line);
  border-radius: var(--au-r-pill);
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.25s var(--au-ease);
}

.au-faq-tab:hover {
  border-color: rgba(66, 67, 201, 0.4);
  color: var(--au-primary);
}

.au-faq-tab.au-active {
  background: var(--au-primary);
  border-color: var(--au-primary);
  color: #fff;
}

/* --- CTA band --- */
.au-cta {
  text-align: center;
}

.au-cta .au-h2 {
  margin-bottom: 24px;
}

.au-cta .au-lead {
  margin: 0 auto 44px;
  max-width: 640px;
}

/* --- Logos / trust row --- */
.au-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--au-muted);
}

.au-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.au-trust i {
  color: var(--au-primary);
  font-size: 15px;
}

/* ====================== 10. FOOTER + BACK TO TOP ========================= */
.au-footer,
footer.ud-footer {
  background: var(--au-footer-bg);
  padding: 90px 0 0;
  color: rgba(243, 244, 254, 0.75);
}

.au-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  padding-bottom: 64px;
}

/* the shared footer markup is injected into <footer class="au-footer">
   on new pages and <footer class="ud-footer"> on legacy ones */
.au-footer h5,
.ud-footer h5 {
  font-family: var(--au-font-head);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 24px;
}

.ud-footer .au-footer-grid,
.ud-footer .au-footer-bottom,
.ud-footer .au-footer-links,
.ud-footer .au-footer-desc,
.ud-footer .au-footer-legal,
.ud-footer .au-footer-copy {
  color: rgba(243, 244, 254, 0.75);
}

.au-footer-logo {
  display: block;
  max-width: 160px;
  margin-bottom: 16px;
}

.au-footer-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 244, 254, 0.75);
  margin: 0 0 22px;
}

.au-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.au-footer-links a {
  font-size: 15px;
  color: rgba(243, 244, 254, 0.75);
  transition: all 0.3s var(--au-ease);
}

.au-footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.au-footer-bottom {
  border-top: 1px solid rgba(136, 144, 164, 0.28);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.au-footer-legal {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.au-footer-legal a,
.au-footer-copy {
  font-size: 14px;
  color: rgba(243, 244, 254, 0.7);
  margin: 0;
}

.au-footer-legal a:hover {
  color: #fff;
}

#language-switch {
  cursor: pointer;
  text-decoration: underline;
  color: rgba(243, 244, 254, 0.75);
  font-size: 14px;
  margin: 0;
}

#language-switch:hover {
  color: #fff;
}

.back-to-top,
.au-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 95;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--au-primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(66, 67, 201, 0.4);
  transition: all 0.3s var(--au-ease);
  border: none;
  cursor: pointer;
}

.back-to-top:hover,
.au-top:hover {
  background: var(--au-ink);
  color: #fff;
  transform: translateY(-3px);
}

/* ==================== 11. LEGACY ud-* OVERRIDES ========================= */
/* These re-skin the pages that still use the old Bootstrap/UIdeck markup
   (Power BI product pages, docs, legal, 404) with the Aurora look. */

.ud-header {
  background: transparent;
  box-shadow: none;
  transition: all 0.35s var(--au-ease);
}

.ud-header.sticky {
  background: rgba(251, 251, 254, 0.82) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(22, 24, 46, 0.08) !important;
}

.ud-header .navbar-nav .nav-item > a,
.ud-header .navbar-nav .ud-submenu-link {
  font-family: var(--au-font-body);
  font-weight: 500;
  color: var(--au-ink);
}

.ud-header .navbar-nav .nav-item > a:hover,
.ud-header .navbar-nav .nav-item > a.active {
  color: var(--au-primary);
}

.ud-header .ud-submenu {
  border: 1px solid rgba(22, 24, 46, 0.08);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 24px 54px rgba(22, 24, 46, 0.16);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.ud-header .ud-submenu-link {
  border-radius: 10px;
  padding: 10px 14px;
}

.ud-header .ud-submenu-link:hover {
  background: var(--au-primary-soft);
  color: var(--au-primary);
}

/* the legacy nav gained a Docus entry — keep it on one line */
.ud-header .navbar-nav {
  gap: 6px;
}

.ud-header .navbar-nav .nav-item > a {
  white-space: nowrap;
  font-size: 15px;
  padding-left: 12px;
  padding-right: 12px;
}

/* bootstrap's .d-sm-inline-block uses !important, so match it */
.ud-header .navbar-btn,
.ud-header .navbar-btn.d-sm-inline-block {
  display: flex !important;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex: none;
}

/* the legacy sheet put 20px of padding on every <li> on top of the link
   padding — with 8 entries that is 320px the nav does not have, so the last
   item ("Docs") slid underneath the Download/Contact buttons */
.ud-header .navbar-nav .nav-item {
  white-space: nowrap;
  padding: 0;
}

.ud-header .navbar-collapse {
  min-width: 0;
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  /* keep the nav inside its own track instead of spilling under the CTAs */
  .ud-header .navbar-nav {
    flex-wrap: nowrap;
    max-width: 100%;
  }
}

@media (max-width: 1600px) {
  .ud-header .navbar-nav {
    gap: 2px;
  }

  .ud-header .navbar-nav .nav-item > a {
    font-size: 14.5px;
    padding-left: 9px;
    padding-right: 9px;
  }

  .ud-header .navbar-btn .ud-main-btn {
    padding: 10px 18px;
    font-size: 14.5px;
  }
}

@media (min-width: 992px) and (max-width: 1300px) {
  .ud-header .navbar-nav {
    gap: 0;
  }

  .ud-header .navbar-nav .nav-item > a {
    font-size: 14px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .ud-header .navbar-btn .ud-main-btn {
    padding: 9px 14px;
    font-size: 14px;
  }

  .ud-header .navbar-brand img {
    max-width: 132px;
  }
}

.ud-main-btn {
  font-family: var(--au-font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--au-r-pill);
  padding: 15px 34px;
  transition: all 0.3s var(--au-ease);
  border: 1px solid transparent;
}

.ud-main-btn.ud-white-btn,
.ud-main-btn.ud-link-btn {
  background: var(--au-primary);
  color: #fff;
}

.ud-main-btn.ud-white-btn:hover,
.ud-main-btn.ud-link-btn:hover {
  background: var(--au-ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(22, 24, 46, 0.28);
}

.ud-main-btn.ud-black-btn {
  background: var(--au-ink);
  color: #fff;
}

.ud-main-btn.ud-black-btn:hover {
  background: var(--au-primary);
  color: #fff;
  transform: translateY(-2px);
}

.navbar-btn .ud-main-btn {
  font-size: 15px;
  padding: 11px 22px;
}

.ud-hero {
  background: var(--au-bg);
  padding-top: 150px;
  padding-bottom: 90px;
}

.ud-hero .hero-video {
  opacity: 0.06;
  filter: brightness(1.2);
}

.ud-hero .video-overlay {
  background: transparent;
}

.ud-hero-title,
.ud-hero-content h1 {
  font-family: var(--au-font-head);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--au-ink);
}

.ud-hero-title-smaller {
  font-family: var(--au-font-head);
  font-weight: 600;
  color: var(--au-body);
}

.ud-hero-desc,
.ud-hero-desc-2 {
  font-family: var(--au-font-body);
  color: var(--au-body);
  line-height: 1.65;
}

.ud-section-title span {
  font-family: var(--au-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--au-primary);
}

.ud-section-title h2,
.ud-section-title h3 {
  font-family: var(--au-font-head);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--au-ink);
}

.ud-section-title p {
  font-family: var(--au-font-body);
  color: var(--au-body);
}

.ud-features {
  background: transparent;
}

/* the cards are height:100% inside zero-padding bootstrap columns, so their
   own margin-bottom collapses to nothing — the row has to own the spacing,
   and 24px keeps it level with bootstrap's 24px horizontal gutter */
.ud-features .row {
  row-gap: 24px;
}

.ud-single-feature {
  background: #fff;
  border: 1px solid var(--au-line);
  border-radius: var(--au-r-lg);
  padding: 32px;
  height: 100%;
  box-shadow: var(--au-shadow-xs);
  transition: all 0.35s var(--au-ease);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.ud-single-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--au-shadow-md);
  border-color: rgba(66, 67, 201, 0.35);
}

.ud-single-feature .ud-feature-icon,
.ud-feature-icon {
  width: 64px;
  height: 64px;
  flex: none;
  border-radius: 18px;
  background: rgba(66, 67, 201, 0.1);
  color: var(--au-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
}

/* the legacy icon had a rotating square behind it — drop it */
.ud-single-feature .ud-feature-icon::before,
.ud-single-feature:hover .ud-feature-icon::before {
  display: none;
}

.ud-single-feature .ud-feature-logo {
  margin-bottom: 18px;
}

.ud-feature-title {
  font-family: var(--au-font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--au-ink);
  margin-bottom: 12px;
}

.ud-feature-desc {
  font-family: var(--au-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--au-body);
}

/* the legacy sheet reserved 40px under every description for a "Learn more"
   link that these pages never render — reclaim it so the cards aren't hollow */
.ud-single-feature .ud-feature-desc,
.ud-single-feature .ud-feature-desc.product-desc {
  margin-bottom: 0;
}

.ud-single-feature .ud-feature-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.ud-single-feature .ud-feature-link {
  margin-top: 18px;
}

.ud-cto-as-a-service-wrapper,
.ud-individual-custom-visuals-wrapper,
.ud-product-gallery-wrapper,
.ud-product-pricing-plans-wrapper {
  background: #fff;
  border: 1px solid var(--au-line);
  border-radius: var(--au-r-xl);
  box-shadow: var(--au-shadow-lg);
  overflow: hidden;
}

.ud-cto-as-a-service-content h2,
.ud-individual-custom-visuals-content h2,
.ud-product-gallery-content h3,
.ud-product-pricing-plans-content h4 {
  font-family: var(--au-font-head);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--au-ink);
}

.ud-cto-as-a-service-content .tag,
.ud-individual-custom-visuals-content .tag,
.ud-product-gallery-content .tag,
.ud-product-pricing-plans-content .tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--au-primary);
  background: transparent;
  padding: 0;
  margin-bottom: 18px;
}

.ud-faq {
  background: var(--au-night);
}

.ud-faq .faq-video {
  opacity: 0.14;
  filter: brightness(1.2);
}

.ud-faq .ud-section-title span,
.ud-faq .ud-section-title h2 {
  color: #fff;
}

.ud-single-faq,
.ud-product-single-faq {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--au-r-md);
  overflow: hidden;
  transition: border-color 0.3s var(--au-ease);
}

.ud-single-faq:hover,
.ud-product-single-faq:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.ud-product-faq {
  background: var(--au-night);
}

.ud-product-single-faq {
  background: #fff;
  border-color: var(--au-line);
  backdrop-filter: none;
}

.ud-product-faq .ud-product-single-faq {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.ud-faq-btn,
.ud-product-faq-btn {
  font-family: var(--au-font-body);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  padding: 22px 26px;
}

.ud-faq-btn .icon,
.ud-product-faq-btn .icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.ud-faq-body,
.ud-product-faq-body {
  font-family: var(--au-font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  padding: 0 26px 24px;
}

/* product FAQ lives on a dark band — beat the legacy light styling */
.ud-product-faq .ud-section-title span,
.ud-product-faq .ud-section-title h2,
.ud-product-faq .ud-section-title h3,
.ud-product-faq .ud-faq-title span,
.ud-product-faq .ud-faq-title h2 {
  color: #ffffff;
}

.ud-product-faq .ud-product-single-faq {
  margin-bottom: 14px;
}

.ud-product-single-faq .accordion .ud-product-faq-btn,
.ud-product-single-faq .accordion .ud-product-faq-btn:not(.collapsed) {
  background: transparent;
  color: #ffffff;
  font-family: var(--au-font-body);
  font-size: 17px;
  font-weight: 600;
  padding: 22px 26px;
  opacity: 1;
  gap: 4px;
}

.ud-product-single-faq .accordion .ud-product-faq-btn .icon {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-right: 14px;
}

.ud-product-single-faq .accordion .ud-product-faq-body {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--au-font-body);
  font-size: 15px;
  line-height: 1.75;
  padding: 0 26px 24px 74px;
}

/* the answers are injected as <p>/<ul> that otherwise inherit the dark
   body colour and become unreadable on the night band */
.ud-product-faq-body p,
.ud-product-faq-body li,
.ud-product-faq-body span,
.ud-product-faq-body div,
.ud-product-faq-body strong,
.ud-product-faq-body b {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--au-font-body);
  font-size: 15px;
  line-height: 1.75;
}

.ud-product-faq-body strong,
.ud-product-faq-body b {
  color: #ffffff;
}

.ud-product-faq-body p:last-child,
.ud-product-faq-body ul:last-child {
  margin-bottom: 0;
}

.ud-product-faq-body a {
  color: #b9baff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ud-product-faq-body a:hover {
  color: #ffffff;
}

.ud-product-faq-tabs {
  border-bottom: none;
  gap: 10px;
  margin-bottom: 36px;
}

.ud-product-faq-tabs .tab-button {
  margin: 0;
}

.ud-product-faq-tabs .tab-button {
  font-family: var(--au-font-body);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--au-r-pill);
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.25s var(--au-ease);
}

.ud-product-faq-tabs .tab-button:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.ud-product-faq-tabs .tab-button.active {
  background: #fff;
  border-color: #fff;
  color: var(--au-ink);
}

/* the legacy sheet drew a 3px bar under the active tab — the pill is the
   active state now, so the leftover underline just looks like an artefact */
.ud-product-faq-tabs .tab-button.active::after {
  display: none;
}

/* --- product docs band --- */
.ud-product-docs {
  background: transparent;
  padding: 30px 0 90px;
}

.ud-docs-card {
  display: flex;
  align-items: center;
  gap: 34px;
  background: #fff;
  border: 1px solid var(--au-line);
  border-radius: var(--au-r-xl);
  box-shadow: var(--au-shadow-sm);
  padding: 42px 46px;
  overflow: hidden;
}

.ud-docs-icon {
  width: 64px;
  height: 64px;
  flex: none;
  border-radius: 18px;
  background: rgba(66, 67, 201, 0.1);
  color: var(--au-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.ud-docs-content {
  flex: 1 1 auto;
  min-width: 0;
}

.ud-docs-content h3 {
  font-family: var(--au-font-head);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.02em;
  color: var(--au-ink);
  margin: 0 0 10px;
}

.ud-product-docs .ud-docs-content p {
  font-family: var(--au-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--au-body);
  margin: 0 0 24px;
  max-width: 62ch;
}

/* the product illustration keeps its legacy background-image class */
.ud-docs-visual {
  flex: 0 0 220px;
  align-self: stretch;
  min-height: 160px;
  margin-top: 0;
  opacity: 0.9;
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .ud-docs-card {
    flex-wrap: wrap;
    gap: 24px;
    padding: 34px 30px;
  }

  .ud-docs-content {
    flex: 1 1 100%;
  }

  .ud-docs-visual {
    flex: 1 1 100%;
    min-height: 150px;
    background-position: center;
  }
}

.pricing-table-container {
  border-radius: var(--au-r-md);
  border: 1px solid var(--au-line);
  overflow: hidden;
}

.pricing-header {
  background: var(--au-primary-soft);
  color: var(--au-ink);
  font-family: var(--au-font-head);
  font-weight: 700;
}

.pricing-row:hover {
  background: rgba(66, 67, 201, 0.04);
}

.pricing-price {
  font-family: var(--au-font-head);
  font-weight: 700;
  color: var(--au-ink);
}

.ud-contact {
  background: transparent;
}

.ud-contact-title span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--au-primary);
}

.ud-contact-title h3 {
  font-family: var(--au-font-head);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--au-ink);
}

.ud-footer .ud-widget-title {
  font-family: var(--au-font-head);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.ud-footer .ud-widget-links a,
.ud-footer .ud-widget-desc,
.ud-footer .ud-footer-bottom-left a,
.ud-footer .ud-footer-bottom-right {
  font-family: var(--au-font-body);
  color: rgba(243, 244, 254, 0.75);
}

.ud-footer .ud-widget-links a:hover,
.ud-footer .ud-footer-bottom-left a:hover {
  color: #fff;
}

.ud-404 {
  background: var(--au-bg);
}

.ud-404-title {
  font-family: var(--au-font-head);
  font-weight: 800;
  color: var(--au-ink);
}

.documentation-body,
.ud-legal-content {
  font-family: var(--au-font-body);
  color: var(--au-body);
}

.documentation-body h1,
.documentation-body h2,
.documentation-body h3,
.ud-legal-content h1,
.ud-legal-content h2,
.ud-legal-content h3 {
  font-family: var(--au-font-head);
  color: var(--au-ink);
  letter-spacing: -0.02em;
}

.bene-text-accent {
  color: var(--au-accent);
  font-style: italic;
}

.bene-dot-logo {
  color: var(--au-accent);
}

/* ========================== 12. RESPONSIVE ============================== */
@media (max-width: 1160px) {
  .au-nav {
    display: none;
  }

  .au-burger {
    display: flex;
  }
}

@media (max-width: 992px) {
  :root {
    --au-gutter: 24px;
  }

  .au-section {
    padding: 80px 0;
  }

  .au-section-lg {
    padding: 96px 0;
  }

  .au-hero-split,
  .au-split,
  .au-split-reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .au-split-body,
  .au-split-reverse .au-split-body {
    padding: 48px 32px 8px;
  }

  .au-split-media {
    padding: 24px 32px 48px;
  }

  .au-split-reverse .au-split-media {
    order: 2;
  }

  .au-showcase {
    padding: 40px 26px;
  }

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

  .au-span-2 {
    grid-column: auto;
  }

  .au-head {
    margin-bottom: 44px;
  }

  .au-mock-body {
    grid-template-columns: 130px 1fr;
  }

  .au-mock-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  :root {
    --au-gutter: 20px;
  }

  .au-hero {
    padding: 120px 0 70px;
  }

  .au-h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .au-h2 {
    font-size: clamp(28px, 7.4vw, 38px);
  }

  .au-brand img {
    width: 118px;
  }

  .au-header-inner {
    gap: 12px;
  }

  .au-header-cta {
    gap: 6px;
  }

  .au-header-cta .au-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .au-burger {
    padding: 6px;
  }

  .au-btn {
    padding: 14px 26px;
    font-size: 15px;
  }

  .au-card,
  .au-product-card {
    padding: 26px 22px;
  }

  .au-faq-q {
    font-size: 15.5px;
    padding: 18px 18px;
  }

  .au-faq-a-inner {
    padding: 0 18px 20px;
  }

  .au-footer-bottom {
    justify-content: flex-start;
  }

  .au-mock {
    /* the fixed 16:9 frame clips the content once the sidebar is gone */
    aspect-ratio: auto;
  }

  .au-mock-body {
    grid-template-columns: 1fr;
  }

  .au-mock-side {
    display: none;
  }

  .au-mock-main {
    padding: 18px;
  }
}

/* ==========================================================================
   Docus product components
   Screenshot frames, alternating feature rows, embed tabs, comparison table
   and the Microsoft-surface strip. Used by / and /products/docus/.
   ========================================================================== */

/* --- Screenshot frame ---------------------------------------------------- */
.au-shot {
  position: relative;
  border-radius: var(--au-r-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--au-line);
  box-shadow: var(--au-shadow-lg);
}
.au-shot img {
  display: block;
  width: 100%;
  height: auto;
}
/* Window chrome above a screenshot, so it reads as a real app */
.au-shot-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: var(--au-bg-alt);
  border-bottom: 1px solid var(--au-line);
}
.au-shot-bar span.au-shot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--au-line-strong);
}
.au-shot-bar .au-shot-title {
  margin-left: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--au-muted);
  letter-spacing: 0.01em;
}
.au-shot-caption {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--au-muted);
  text-align: center;
}
/* Portrait detail crops (side panels) sit shorter and centred */
.au-shot-portrait {
  max-width: 380px;
  margin-inline: auto;
}

/* Glow behind the hero screenshot */
.au-shot-glow {
  position: relative;
}
.au-shot-glow::before {
  content: "";
  position: absolute;
  inset: -14% -8% -22%;
  background: radial-gradient(
    ellipse at 50% 45%,
    rgba(90, 72, 216, 0.35),
    rgba(122, 102, 236, 0.14) 45%,
    transparent 70%
  );
  filter: blur(38px);
  z-index: 0;
  pointer-events: none;
}
.au-shot-glow > * {
  position: relative;
  z-index: 1;
}

/* --- Hero screenshot stack (3D fan) --------------------------------------
   The main shot sits flat in front; two more are angled away behind it so a
   slice of each stays visible at the edges. The wings are depth, not content:
   below 980px they drop out and the main shot takes the full width.
   `data-reveal` must go on `.au-shot-stack` (or an ancestor), never on a wing
   — `.au-reveal-in` sets `transform: none`, which would flatten it.
   ------------------------------------------------------------------------ */
.au-shot-stack {
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
}
.au-shot-stack-main {
  position: relative;
  z-index: 3;
  width: 70%;
  margin-inline: auto;
  transform: perspective(1800px) rotateX(2deg);
}
.au-shot-stack-main .au-shot {
  box-shadow: 0 36px 74px -26px rgba(24, 22, 62, 0.46), 0 8px 22px -10px rgba(24, 22, 62, 0.22);
}
.au-shot-stack-side {
  position: absolute;
  top: 8%;
  width: 46%;
  z-index: 1;
  opacity: 0.86;
  transition: transform 0.55s var(--au-ease), opacity 0.55s var(--au-ease);
}
.au-shot-stack-side .au-shot {
  box-shadow: 0 26px 56px -24px rgba(24, 22, 62, 0.42);
}
/* Only the outer edge of a wing is ever visible, and on every Docus capture
   that edge is the document tree. Crop to 4:3 anchored right so the sliver
   that shows is page content rather than sidebar. */
.au-shot-stack-side .au-shot img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: right center;
}
.au-shot-stack-left {
  left: 0;
  transform-origin: right center;
  transform: perspective(1600px) rotateY(15deg) rotateX(3deg) rotate(-1.5deg) scale(0.94);
}
.au-shot-stack-right {
  right: 0;
  transform-origin: left center;
  transform: perspective(1600px) rotateY(-15deg) rotateX(3deg) rotate(1.5deg) scale(0.94);
}
/* Hovering the group fans the wings out a little further */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .au-shot-stack:hover .au-shot-stack-side {
    opacity: 1;
  }
  .au-shot-stack:hover .au-shot-stack-left {
    transform: perspective(1600px) translateX(-3%) rotateY(12deg) rotateX(3deg) rotate(-1.5deg) scale(0.97);
  }
  .au-shot-stack:hover .au-shot-stack-right {
    transform: perspective(1600px) translateX(3%) rotateY(-12deg) rotateX(3deg) rotate(1.5deg) scale(0.97);
  }
}
@media (max-width: 980px) {
  .au-shot-stack-side {
    display: none;
  }
  .au-shot-stack-main {
    width: 100%;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .au-shot-stack-side {
    transition: none;
  }
}

/* --- Alternating feature rows -------------------------------------------- */
.au-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: center;
}
.au-feature + .au-feature {
  margin-top: 104px;
}
.au-feature-flip .au-feature-media {
  order: -1;
}
.au-feature-body h3 {
  font-family: var(--au-font-head);
  font-size: clamp(24px, 2.3vw, 33px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--au-ink);
  margin: 14px 0 18px;
}
.au-feature-body > p {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--au-body);
}
.au-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.au-feature-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--au-body);
}
.au-feature-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--au-primary), var(--au-primary-3));
}
.au-feature-list li strong {
  color: var(--au-ink);
  font-weight: 650;
}

/* --- Microsoft surface strip --------------------------------------------- */
.au-surfaces {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.au-surface {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: var(--au-r-pill);
  background: #fff;
  border: 1px solid var(--au-line);
  box-shadow: var(--au-shadow-xs);
  font-size: 14px;
  font-weight: 600;
  color: var(--au-ink);
}
.au-surface i {
  color: var(--au-primary);
  font-size: 16px;
}

/* --- Embed tabs ----------------------------------------------------------- */
.au-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.au-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--au-r-pill);
  border: 1px solid var(--au-line);
  background: #fff;
  color: var(--au-body);
  font-family: var(--au-font-body);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--au-ease);
}
.au-tab:hover {
  border-color: var(--au-primary);
  color: var(--au-primary);
}
.au-tab[aria-selected="true"] {
  background: var(--au-primary);
  border-color: var(--au-primary);
  color: #fff;
  box-shadow: var(--au-shadow-primary);
}
.au-tabpanel[hidden] {
  display: none;
}

/* --- Comparison table ----------------------------------------------------- */
.au-compare-wrap {
  overflow-x: auto;
  border-radius: var(--au-r-lg);
  border: 1px solid var(--au-line);
  background: #fff;
  box-shadow: var(--au-shadow-md);
}
.au-compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15px;
}
.au-compare th,
.au-compare td {
  padding: 17px 22px;
  text-align: left;
  border-bottom: 1px solid var(--au-line);
  vertical-align: top;
}
.au-compare thead th {
  font-family: var(--au-font-head);
  font-size: 14px;
  font-weight: 650;
  color: var(--au-ink);
  background: var(--au-bg-alt);
  white-space: nowrap;
}
.au-compare thead th:first-child {
  width: 30%;
}
.au-compare tbody th {
  font-weight: 600;
  color: var(--au-ink);
  font-size: 15px;
}
.au-compare td {
  color: var(--au-body);
  line-height: 1.55;
}
.au-compare .au-col-us {
  background: rgba(66, 67, 201, 0.045);
  border-left: 1px solid rgba(66, 67, 201, 0.16);
  border-right: 1px solid rgba(66, 67, 201, 0.16);
  color: var(--au-ink);
  font-weight: 560;
}
.au-compare thead .au-col-us {
  background: rgba(66, 67, 201, 0.1);
  color: var(--au-primary);
}
.au-compare tbody tr:last-child th,
.au-compare tbody tr:last-child td {
  border-bottom: none;
}
/* Hanging icon: wrapped lines stay aligned with the first line's text, not
   under the glyph. These classes sit ON the <td>, so the cell must keep its
   table-cell display — only the padding and the absolute ::before change. */
.au-compare td.au-yes,
.au-compare td.au-no,
.au-compare td.au-part {
  position: relative;
  padding-left: 47px;
}
.au-yes::before,
.au-no::before,
.au-part::before {
  font-family: "Lineicons";
  position: absolute;
  left: 22px;
  top: 18px;
  font-size: 15px;
  line-height: 1.55;
}
.au-yes::before {
  content: "\eee8"; /* check */
  color: #16a34a;
}
.au-no::before {
  content: "\ff0d"; /* lni-xmark */
  color: #b9bcd0;
}
.au-part::before {
  content: "\f761"; /* lni-minus */
  color: #e0912f;
}

/* --- Quote / positioning band --------------------------------------------- */
.au-quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.au-quote p {
  font-family: var(--au-font-head);
  font-size: clamp(21px, 2.3vw, 31px);
  line-height: 1.42;
  letter-spacing: -0.02em;
  color: #fff;
}
.au-quote p em {
  font-style: normal;
  background: linear-gradient(100deg, #b9aaff, #ff8f6b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 900px) {
  .au-feature {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .au-feature + .au-feature {
    margin-top: 68px;
  }
  .au-feature-flip .au-feature-media {
    order: 0;
  }
  .au-shot-portrait {
    max-width: 320px;
  }
}

/* Hero that carries a product screenshot: size to content and tighten the
   vertical rhythm so the top of the shot peeks above the fold. */
.au-hero-shot {
  min-height: auto;
  padding: 118px 0 74px;
}
@media (max-width: 900px) {
  .au-hero-shot {
    padding: 104px 0 60px;
  }
}

/* --- Hero surface callout --------------------------------------------------
   Answers "where do I actually open this?" in the hero itself. Two cards, one
   per Microsoft surface, each naming the concrete form Docus takes there —
   short slogans ("Runs on SharePoint Online") read as marketing and left the
   question open. Stacks below ~700px.
   -------------------------------------------------------------------------- */
.au-hero-surfaces {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 780px;
  margin-inline: auto;
}
.au-hero-surface {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 330px;
  max-width: 390px;
  padding: 15px 20px;
  text-align: left;
  border-radius: var(--au-r-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--au-line);
  box-shadow: var(--au-shadow-xs);
  backdrop-filter: blur(6px);
}
.au-hero-surface > i {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--au-primary), var(--au-primary-3));
  color: #fff;
  font-size: 17px;
}
.au-hero-surface > span {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--au-muted);
}
.au-hero-surface b {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 700;
  color: var(--au-ink);
}

/* --- Docus logo lockups ---------------------------------------------------- */
.au-logo-mark {
  display: block;
  width: 112px;
  height: auto;
  margin: 0 auto 34px;
  filter: drop-shadow(0 14px 30px rgba(66, 67, 201, 0.28));
}
.au-logo-inline {
  width: 30px;
  height: auto;
  vertical-align: -8px;
  margin-right: 10px;
}
.au-logo-card {
  width: 56px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 18px rgba(66, 67, 201, 0.22));
}

/* --- Availability badge (replaces the demo CTA until launch) ---------------- */
.au-avail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: var(--au-r-pill);
  background: linear-gradient(120deg, var(--au-primary), var(--au-primary-3));
  color: #fff;
  font-family: var(--au-font-body);
  font-size: 14.5px;
  font-weight: 650;
  letter-spacing: 0.01em;
  box-shadow: var(--au-shadow-primary);
  white-space: nowrap;
}
.au-avail i {
  font-size: 16px;
}
.au-avail-sm {
  padding: 8px 16px;
  font-size: 13px;
  box-shadow: none;
}
/* Quiet variant for dark bands */
.au-avail-light {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}
.au-avail-note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--au-muted);
}

/* --- Screenshot lightbox --------------------------------------------------- */
.au-shot[data-zoom] {
  cursor: zoom-in;
}
.au-shot[data-zoom]::after {
  content: "\ff26"; /* lni-zoom */
  font-family: "Lineicons";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(22, 24, 46, 0.62);
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s var(--au-ease), transform 0.22s var(--au-ease);
  pointer-events: none;
}
.au-shot[data-zoom]:hover::after,
.au-shot[data-zoom]:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.au-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 11, 26, 0.93);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--au-ease), visibility 0.28s var(--au-ease);
}
.au-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.au-lightbox-figure {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.au-lightbox-img {
  display: block;
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--au-r-sm);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  background: #fff;
}
.au-lightbox-cap {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  max-width: 720px;
}
.au-lightbox-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s var(--au-ease);
}
.au-lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.26);
}
/* Pinned to the viewport, not the figure — a tall image would otherwise push
   the close button off-screen. */
.au-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 1;
}
.au-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 20px;
}
.au-lightbox-prev {
  left: -70px;
}
.au-lightbox-next {
  right: -70px;
}
@media (max-width: 1100px) {
  .au-lightbox-prev {
    left: 8px;
  }
  .au-lightbox-next {
    right: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .au-lightbox,
  .au-shot[data-zoom]::after {
    transition: none;
  }
}

/* The header availability badge is long; below the nav breakpoint the burger
   takes over and the badge would crowd the logo. It reappears in the hero. */
@media (max-width: 1160px) {
  .au-header-cta .au-avail {
    display: none;
  }
}

/* In the header the badge is a persistent status cue, not a call to action —
   keep it quiet so it doesn't compete with the same badge in the hero. */
.au-header-cta .au-avail {
  background: var(--au-primary-soft);
  border: 1px solid rgba(66, 67, 201, 0.22);
  color: var(--au-primary);
  box-shadow: none;
}
.au-header-cta .au-avail i {
  color: var(--au-primary);
}

/* Registered mark inside display type — the glyph is full-size in the heading
   font and reads as a typo at h1 scale. */
.au-reg {
  font-size: 0.42em;
  vertical-align: 0.75em;
  letter-spacing: 0;
  font-weight: 600;
}

/* --- "Everything included" panel ------------------------------------------- */
.au-included {
  background: var(--au-bg-alt);
  border: 1px solid var(--au-line);
  border-radius: var(--au-r-lg);
  padding: 36px 40px;
}
.au-included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px 32px;
  margin-top: 22px;
}
@media (max-width: 640px) {
  .au-included {
    padding: 26px 22px;
  }
}

/* Visually hidden, still read by assistive tech (table captions, skip labels). */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* On the narrowest phones the availability badge is wider than the viewport
   with nowrap, so let it break onto two lines instead of pushing the page. */
@media (max-width: 430px) {
  .au-avail {
    white-space: normal;
    text-align: center;
    padding: 10px 16px;
    font-size: 13.5px;
    line-height: 1.4;
  }
}


/* --- Pricing table -----------------------------------------------------------
   Ported from the Power BI product pages (ud-styles.css `.pricing-*`) so Docus
   prices read identically across the site. Same class names and markup shape,
   so the two can be unified later; the legacy `--primary-color` /
   `--heading-color` aliases at the top of this file make the colours resolve.
   -------------------------------------------------------------------------- */
.pricing-table-container {
  margin: 30px 0;
}
.pricing-table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.pricing-header {
  display: flex;
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 20px;
  text-align: center;
}
.pricing-header div {
  flex: 1;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 600;
}
.pricing-row {
  display: flex;
  border-bottom: 1px solid #f3f4fe;
  transition: all 0.3s ease;
  padding: 0 20px;
}
.pricing-row:last-child {
  border-bottom: none;
}
.pricing-row:hover {
  background-color: #f9faff;
}
.pricing-data,
.pricing-price {
  flex: 1;
  /* Matches the Power BI pages: 25px above, 30px below, so row height and
     rhythm are identical across both pricing tables. */
  padding: 25px 10px 30px;
  font-size: 16px;
  color: var(--primary-color);
  text-align: center;
}
.pricing-data {
  font-weight: 600;
  text-align: left;
}
.pricing-price {
  font-weight: 700;
  color: var(--heading-color);
}
.pricing-price span {
  font-weight: 400;
  font-size: 14px;
  color: #6d6d6d;
  margin-left: 3px;
}
/* Enterprise row — one wide cell instead of two prices */
.pricing-row .pricing-price-wide {
  flex: 2;
  color: var(--primary-color);
  font-weight: 700;
}
.pricing-intro {
  margin-bottom: 30px;
}
.pricing-notes {
  border-radius: 10px;
  padding: 25px 30px 10px 30px;
  margin: 20px 0 30px;
  background: var(--au-bg-alt);
}
.pricing-notes p {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  color: var(--au-body);
}
.pricing-notes p:last-child {
  margin-bottom: 0;
}
.pricing-notes i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 18px;
  flex: none;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .pricing-header,
  .pricing-row {
    flex-direction: column;
  }
  .pricing-header {
    display: none;
  }
  .pricing-row {
    padding: 18px 20px;
  }
  .pricing-data,
  .pricing-price {
    padding: 4px 0;
    text-align: center;
  }
  .pricing-data {
    text-align: center;
    font-size: 15px;
    margin-bottom: 4px;
  }
  .pricing-notes {
    padding: 22px 20px 8px;
  }
}
