/* =====================================================================
   Ad Landing Page (Reddit) — ported from the design handoff prototype.
   All design tokens are scoped to .vt-ad-lp so they never leak into the
   rest of the marketing site. Source of truth: assets/colors_and_type.css
   ===================================================================== */

.vt-ad-lp {
  /* brand */
  --vt-violet: #7428F5;
  --vt-violet-hover: #5E1FCB;
  --vt-violet-press: #4B18A4;
  --vt-violet-900: #281853;
  --vt-violet-700: #5E34C9;
  --vt-violet-500: #8D51F5;
  --vt-violet-300: #DECEFB;
  --vt-violet-200: #D2BAFB;
  --vt-violet-100: #F5F1FE;
  --vt-magenta-900: #78296E;
  /* neutrals */
  --vt-fg-1: #1C222B;
  --vt-fg-2: #455468;
  --vt-fg-3: #5E718D;
  --vt-fg-4: #8897AE;
  --vt-fg-5: #AFBACA;
  --vt-border: #E9EFF6;
  --vt-border-strong: #D7DFE9;
  --vt-border-soft: #F0F3F9;
  --vt-bg: #FFFFFF;
  --vt-bg-panel: #F9FAFB;
  --vt-bg-cream: #EFEDE8;
  /* semantic */
  --vt-success: #11A75C;
  --vt-success-dark: #10503C;
  --vt-warning: #E9B90B;
  --vt-warning-soft: #FAD34B;
  --vt-danger: #FF3838;
  --vt-info: #4DABFF;
  /* cta accent (introduced for this LP) */
  --vt-cta-accent: #F4631E;
  /* shadows */
  --vt-shadow-card: 0 20px 65px -5px rgba(18,18,23,0.02), 0 10px 20px -5px rgba(18,18,23,0.02);
  --vt-shadow-popover: 0 4px 16px rgba(18,18,23,0.08);
  --vt-shadow-lift: 0 24px 40px -12px rgba(18,18,23,0.08);
  /* motion */
  --vt-ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  font-family: poppins, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--vt-fg-1);
  background: var(--vt-bg);
  overflow-x: hidden;
}

.vt-ad-lp *,
.vt-ad-lp *::before,
.vt-ad-lp *::after { box-sizing: border-box; }

/* The global site stylesheet adds `section { margin-top: 100px }`, which
   would open a white gap above every band. Our sections own their spacing
   via padding, so neutralise that margin. */
.vt-ad-lp section { margin: 0; }

.vt-ad-lp h1,
.vt-ad-lp h2,
.vt-ad-lp h3,
.vt-ad-lp p { margin: 0; }

.vt-ad-lp img { max-width: 100%; }

/* ------------------------------ Buttons ------------------------------ */
.vt-ad-lp .alp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  padding: 14px 26px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
  transition: filter 160ms ease, background 160ms ease;
}
.vt-ad-lp .alp-btn:hover { filter: brightness(0.96); text-decoration: none; }
.vt-ad-lp .alp-btn-primary { background: var(--vt-violet); color: #fff; border-color: var(--vt-violet); }
.vt-ad-lp .alp-btn-secondary { background: #fff; color: var(--vt-violet); border-color: var(--vt-violet); }
.vt-ad-lp .alp-btn-secondary:hover { background: var(--vt-violet-100); }
.vt-ad-lp .alp-btn-ondark-primary { background: var(--vt-cta-accent); color: #fff; border-color: var(--vt-cta-accent); font-weight: 600; }
.vt-ad-lp .alp-btn-ondark-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }

.vt-ad-lp .alp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* micro line (shield-check + copy) */
.vt-ad-lp .alp-micro {
  font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: -0.2px;
  color: var(--vt-fg-3); display: flex; align-items: center; gap: 6px;
}
.vt-ad-lp .alp-micro .alp-ico { color: var(--vt-success); flex-shrink: 0; }

/* ------------------------------ Section head ------------------------- */
.vt-ad-lp .alp-section { background: var(--vt-bg); padding: 72px 40px; }
.vt-ad-lp .alp-container { max-width: 1280px; margin: 0 auto; }

/* Single-line, centered head (flex column so the subtitle spacing is
   independent and the title stays centered on one line). */
.vt-ad-lp .alp-head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 1120px; margin: 0 auto;
}
.vt-ad-lp .alp-kicker {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 13px; line-height: 18px; letter-spacing: 0.4px;
  text-transform: uppercase; margin-bottom: 16px; color: var(--vt-violet-hover);
  white-space: nowrap;
}
.vt-ad-lp .alp-h2 { font-weight: 500; font-size: 44px; line-height: 52px; letter-spacing: -1.4px; color: var(--vt-fg-1); white-space: nowrap; }
.vt-ad-lp .alp-head-sub {
  font-weight: 400; font-size: 19px; line-height: 30px; letter-spacing: -0.3px;
  margin: 16px auto 0; max-width: 620px; color: var(--vt-fg-3);
}
/* wide variant: lets a short subtitle stay on one line */
.vt-ad-lp .alp-head-sub--wide { max-width: 820px; }
.vt-ad-lp .alp-head--dark .alp-kicker { color: var(--vt-violet-300); }
.vt-ad-lp .alp-head--dark .alp-h2 { color: #fff; }
.vt-ad-lp .alp-head--dark .alp-head-sub { color: var(--vt-violet-300); }

/* ================================ HERO =============================== */
.vt-ad-lp .alp-hero {
  padding: 72px 40px 64px;
  position: relative;
  overflow: hidden;
  background: var(--vt-bg);
}
.vt-ad-lp .alp-hero-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px;
  align-items: center; padding-top: 24px;
}
.vt-ad-lp .alp-hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.vt-ad-lp .alp-h1 {
  font-weight: 500; font-size: 56px; line-height: 62px; letter-spacing: -1.9px;
  color: var(--vt-fg-1); text-align: left; text-wrap: balance;
}
.vt-ad-lp .alp-hero-sub {
  font-weight: 400; font-size: 20px; line-height: 30px; letter-spacing: -0.3px;
  color: var(--vt-fg-2); text-align: left; max-width: 600px; margin: 18px 0 32px;
  text-wrap: pretty;
}
.vt-ad-lp .alp-hero-text .alp-micro { margin-top: 14px; }

.vt-ad-lp .alp-hero-visual { position: relative; }
.vt-ad-lp .alp-visual-wrap { position: relative; width: 100%; padding-bottom: 5%; padding-left: 4%; }
.vt-ad-lp .alp-shell-img {
  display: block; width: 100%; height: auto; border-radius: 12px;
  filter: drop-shadow(0 30px 60px rgba(40,24,83,0.18));
}
.vt-ad-lp .alp-req-card {
  position: absolute; left: 0; bottom: 0; width: 34%; height: auto;
  filter: drop-shadow(0 22px 40px rgba(40,24,83,0.24));
}

/* ============================== PROOF BAR ============================ */
.vt-ad-lp .alp-proof { padding: 20px 40px 80px; background: var(--vt-bg); }
.vt-ad-lp .alp-proof-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.vt-ad-lp .alp-proof-text {
  font-weight: 400; font-size: 15px; line-height: 22px; letter-spacing: -0.2px;
  color: var(--vt-fg-3); margin-bottom: 34px;
}
.vt-ad-lp .alp-logo-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap; max-width: 1120px; margin: 0 auto;
}
.vt-ad-lp .alp-logo-row img { max-height: 32px; max-width: 132px; object-fit: contain; opacity: 0.55; }
.vt-ad-lp .alp-logo-row img.alp-logo-dell { max-height: 48px; max-width: 48px; }

/* ============================== BENEFITS ============================= */
.vt-ad-lp .alp-benefits { background: var(--vt-bg-cream); }
.vt-ad-lp .alp-showcase {
  display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px;
  align-items: center; margin-top: 60px;
}
.vt-ad-lp .alp-showcase-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 380px; padding: 44px 56px;
}
.vt-ad-lp .alp-frame-wrap { position: relative; width: 340px; max-width: 100%; }
.vt-ad-lp .alp-frame-backdrop {
  position: absolute; inset: -38px -44px; transform: rotate(-4deg);
  border-radius: 34px;
  background: linear-gradient(135deg, var(--vt-violet-100) 0%, var(--vt-violet-200) 100%);
  box-shadow: var(--vt-shadow-card); z-index: 0;
}
.vt-ad-lp .alp-frame {
  position: relative; z-index: 1;
  width: 100%; background: var(--vt-bg); border: 1px solid var(--vt-border);
  border-radius: 22px; box-shadow: var(--vt-shadow-lift); padding: 20px;
  display: flex; align-items: center; justify-content: center;
}
.vt-ad-lp .alp-bm { width: 100%; display: none; }
.vt-ad-lp .alp-bm.is-active { display: block; }

.vt-ad-lp .alp-showcase-list { display: flex; flex-direction: column; gap: 6px; }
.vt-ad-lp .alp-feature {
  display: flex; align-items: flex-start; gap: 16px; padding: 16px 18px;
  border-radius: 14px; border: 1px solid transparent; background: transparent;
  cursor: pointer; text-align: left; width: 100%; font-family: inherit;
  transition: background .25s var(--vt-ease), border-color .25s var(--vt-ease), box-shadow .25s var(--vt-ease);
}
.vt-ad-lp .alp-feature.is-active { background: var(--vt-bg); border-color: var(--vt-border); box-shadow: var(--vt-shadow-card); }
.vt-ad-lp .alp-feature-num {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9999px;
  border: 1.5px solid var(--vt-border-strong); display: inline-flex;
  align-items: center; justify-content: center; margin-top: 1px;
  color: var(--vt-fg-3); background: var(--vt-bg);
  transition: color .25s, background .25s, border-color .25s;
}
.vt-ad-lp .alp-feature.is-active .alp-feature-num { color: #fff; background: var(--vt-violet); border-color: var(--vt-violet); }
.vt-ad-lp .alp-feature-body-wrap { flex: 1; }
.vt-ad-lp .alp-feature-title {
  display: block; font-weight: 500; font-size: 18px; line-height: 25px;
  letter-spacing: -0.3px; color: var(--vt-fg-2); transition: color .25s;
}
.vt-ad-lp .alp-feature.is-active .alp-feature-title { color: var(--vt-fg-1); }
.vt-ad-lp .alp-feature-body {
  display: none; font-weight: 400; font-size: 14px; line-height: 21px;
  letter-spacing: -0.2px; color: var(--vt-fg-3); margin-top: 7px;
}
.vt-ad-lp .alp-feature.is-active .alp-feature-body { display: block; }

/* --------- benefit mocks (shared card) --------- */
.vt-ad-lp .bm-card {
  background: var(--vt-bg-panel); border: 1px solid var(--vt-border);
  border-radius: 12px; padding: 16px; width: 100%;
  display: flex; flex-direction: column; gap: 12px;
}
.vt-ad-lp .bm-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.vt-ad-lp .bm-title {
  font-weight: 500; font-size: 12px; line-height: 16px; letter-spacing: -0.1px;
  color: var(--vt-fg-3); text-transform: uppercase;
}
/* sync */
.vt-ad-lp .bm-live { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: 11px; line-height: 16px; color: var(--vt-success); }
.vt-ad-lp .bm-live-dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--vt-success); display: inline-block; }
.vt-ad-lp .bm-rows { display: flex; flex-direction: column; gap: 8px; }
.vt-ad-lp .bm-loc-row {
  display: flex; align-items: center; gap: 10px; padding: 8px 12px;
  background: #fff; border: 1px solid var(--vt-border); border-radius: 9px;
}
.vt-ad-lp .bm-loc-dot { width: 9px; height: 9px; border-radius: 9999px; flex-shrink: 0; }
.vt-ad-lp .bm-loc-name { font-weight: 500; font-size: 13px; line-height: 18px; letter-spacing: -0.2px; color: var(--vt-fg-1); white-space: nowrap; }
.vt-ad-lp .bm-loc-count { font-weight: 400; font-size: 12px; line-height: 16px; color: var(--vt-fg-3); margin-left: 6px; white-space: nowrap; }
.vt-ad-lp .bm-check-tail { margin-left: auto; color: var(--vt-success); display: inline-flex; }
/* laws */
.vt-ad-lp .bm-region-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px;
  background: #fff; border: 1px solid var(--vt-border-strong); border-radius: 9999px;
  font-weight: 500; font-size: 12px; line-height: 16px; letter-spacing: -0.2px; color: var(--vt-fg-1);
}
.vt-ad-lp .bm-region-chip .alp-ico { color: var(--vt-violet); }
.vt-ad-lp .bm-law-rows { display: flex; flex-direction: column; gap: 7px; }
.vt-ad-lp .bm-law-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; background: #fff; border: 1px solid var(--vt-border); border-radius: 9px;
}
.vt-ad-lp .bm-law-label { font-weight: 400; font-size: 13px; line-height: 18px; letter-spacing: -0.2px; color: var(--vt-fg-3); }
.vt-ad-lp .bm-law-val { font-weight: 500; font-size: 13px; line-height: 18px; letter-spacing: -0.2px; color: var(--vt-fg-1); }
/* approve */
.vt-ad-lp .bm-chan { font-weight: 500; font-size: 12px; line-height: 16px; letter-spacing: -0.2px; color: var(--vt-fg-2); }
.vt-ad-lp .bm-req-row {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border: 1px solid var(--vt-border); border-radius: 10px; background: #fff;
  transition: background .4s var(--vt-ease), border-color .4s var(--vt-ease);
}
.vt-ad-lp .bm-req-row.is-approved { border-color: rgba(17,167,92,0.35); background: rgba(17,167,92,0.06); }
.vt-ad-lp .bm-req-avatar { width: 28px; height: 28px; border-radius: 9999px; background: var(--vt-violet); color: #fff; font-weight: 500; font-size: 12px; line-height: 28px; text-align: center; flex-shrink: 0; }
.vt-ad-lp .bm-req-name { font-weight: 400; font-size: 13px; line-height: 18px; letter-spacing: -0.2px; color: var(--vt-fg-1); }
.vt-ad-lp .bm-req-meta { font-weight: 400; font-size: 11px; line-height: 16px; color: var(--vt-fg-4); }
.vt-ad-lp .bm-action-wrap { position: relative; height: 30px; }
.vt-ad-lp .bm-action-layer { position: absolute; inset: 0; display: flex; align-items: center; gap: 8px; transition: opacity .45s var(--vt-ease), transform .45s var(--vt-ease); }
.vt-ad-lp .bm-action-buttons { pointer-events: none; }
.vt-ad-lp .bm-mini-btn { padding: 5px 14px; border-radius: 7px; border: 1px solid; font-weight: 500; font-size: 12px; line-height: 16px; letter-spacing: -0.2px; }
.vt-ad-lp .bm-mini-approve { background: var(--vt-success); color: #fff; border-color: var(--vt-success); }
.vt-ad-lp .bm-mini-deny { background: #fff; color: var(--vt-fg-2); border-color: var(--vt-border-strong); }
.vt-ad-lp .bm-approved-pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 13px; border-radius: 9999px; background: rgba(17,167,92,0.12); color: var(--vt-success-dark); font-weight: 500; font-size: 12px; line-height: 16px; letter-spacing: -0.2px; }
/* the approve-flip is driven by .is-approved on the card */
.vt-ad-lp .bm-action-buttons { opacity: 1; transform: none; }
.vt-ad-lp .bm-action-approved { opacity: 0; transform: translateY(-5px); }
.vt-ad-lp .bm-card.is-approved .bm-action-buttons { opacity: 0; transform: translateY(5px); }
.vt-ad-lp .bm-card.is-approved .bm-action-approved { opacity: 1; transform: none; }
/* chart */
.vt-ad-lp .bm-trend { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; font-size: 12px; line-height: 16px; color: var(--vt-success); }
.vt-ad-lp .bm-chart { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; height: 92px; padding-top: 4px; }
.vt-ad-lp .bm-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; }
.vt-ad-lp .bm-bar-track { flex: 1; width: 100%; display: flex; align-items: flex-end; background: rgba(116,40,245,0.06); border-radius: 6px; overflow: hidden; }
.vt-ad-lp .bm-bar { width: 100%; background: linear-gradient(180deg, var(--vt-violet) 0%, var(--vt-violet-700) 100%); border-radius: 6px; transform-origin: bottom; }
.vt-ad-lp .bm-bar-label { font-weight: 500; font-size: 10px; line-height: 12px; color: var(--vt-fg-4); }

/* ===================== HOW IT WORKS — connected flow ================ */
.vt-ad-lp .alp-flow-panel {
  margin-top: 56px; background: var(--vt-violet-100); border: 1px solid var(--vt-violet-200);
  border-radius: 24px; padding: 44px 32px; display: flex; align-items: stretch; gap: 8px;
}
.vt-ad-lp .alp-flow-col { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.vt-ad-lp .alp-flow-arrow-wrap { display: flex; align-items: center; padding: 0 4px; }
.vt-ad-lp .alp-flow-arrow {
  width: 34px; height: 34px; border-radius: 9999px; background: #fff;
  border: 1px solid var(--vt-violet-200); display: inline-flex; align-items: center; justify-content: center;
  color: var(--vt-violet);
}
.vt-ad-lp .alp-flow-head { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.vt-ad-lp .alp-flow-num {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 9999px; background: var(--vt-violet);
  color: #fff; font-weight: 600; font-size: 16px; line-height: 38px; text-align: center;
  box-shadow: 0 0 0 5px #fff;
}
.vt-ad-lp .alp-flow-title { font-weight: 600; font-size: 16px; line-height: 21px; letter-spacing: -0.3px; color: var(--vt-fg-1); }
.vt-ad-lp .alp-flow-screen { flex: 1; }
.vt-ad-lp .alp-flow-body { font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: -0.2px; color: var(--vt-fg-3); margin: 16px 0 0; }

/* --------- product screens (StepScreens) --------- */
.vt-ad-lp .hw-card {
  background: #fff; border: 1px solid var(--vt-border); border-radius: 12px; overflow: hidden;
  box-shadow: var(--vt-shadow-card); height: 330px; display: flex; flex-direction: column;
}
.vt-ad-lp .hw-crumb {
  padding: 10px 14px; border-bottom: 1px solid var(--vt-border); background: var(--vt-bg-panel);
  font-weight: 500; font-size: 11px; line-height: 15px; letter-spacing: 0.3px; text-transform: uppercase; color: var(--vt-fg-4);
}
.vt-ad-lp .hw-body { padding: 15px; flex: 1; display: flex; flex-direction: column; }
.vt-ad-lp .hw-body--connect { gap: 7px; justify-content: center; }
.vt-ad-lp .hw-body--policy { gap: 12px; }
.vt-ad-lp .hw-body--request { gap: 10px; }
/* connect */
.vt-ad-lp .hw-connect-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid var(--vt-border-strong); border-radius: 9px; padding: 9px 10px;
  font-weight: 500; font-size: 13px; line-height: 18px; letter-spacing: -0.2px; color: var(--vt-fg-1);
}
.vt-ad-lp .hw-connect-btn img { height: 18px; width: 18px; object-fit: contain; }
.vt-ad-lp .hw-or { display: flex; align-items: center; gap: 10px; }
.vt-ad-lp .hw-or-line { flex: 1; height: 1px; background: var(--vt-border); }
.vt-ad-lp .hw-or-text { font-weight: 600; font-size: 11px; line-height: 16px; color: var(--vt-fg-4); }
.vt-ad-lp .hw-primary-btn {
  border: 0; background: var(--vt-violet); color: #fff; border-radius: 8px; width: 100%;
  font-weight: 500; font-size: 14px; line-height: 19px; padding: 11px 0; cursor: pointer; margin-top: 2px;
}
.vt-ad-lp .hw-primary-btn--sm { font-size: 13px; line-height: 18px; padding: 10px 0; margin-top: 0; }
/* fields (connect + request) */
.vt-ad-lp .hw-field {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--vt-border-strong); border-radius: 8px; padding: 10px 12px;
  font-weight: 400; font-size: 13px; line-height: 17px; color: var(--vt-fg-2);
}
.vt-ad-lp .hw-field--muted { color: var(--vt-fg-4); }
.vt-ad-lp .hw-field-label { font-weight: 500; font-size: 11px; line-height: 15px; letter-spacing: 0.2px; text-transform: uppercase; color: var(--vt-fg-4); margin-bottom: 5px; }
/* policy */
.vt-ad-lp .hw-policy-head { display: flex; align-items: center; justify-content: space-between; }
.vt-ad-lp .hw-policy-title { font-weight: 600; font-size: 15px; line-height: 20px; letter-spacing: -0.3px; color: var(--vt-fg-1); }
.vt-ad-lp .hw-region-pill { display: inline-flex; align-items: center; gap: 5px; font-weight: 500; font-size: 12px; line-height: 16px; color: var(--vt-fg-1); background: var(--vt-bg); border: 1px solid var(--vt-border-strong); border-radius: 9999px; padding: 4px 11px; }
.vt-ad-lp .hw-region-pill .alp-ico { color: var(--vt-violet); }
.vt-ad-lp .hw-opt-list { flex: 1; border: 1px solid var(--vt-border); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; }
.vt-ad-lp .hw-opt-row { flex: 1; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; }
.vt-ad-lp .hw-opt-row + .hw-opt-row { border-top: 1px solid var(--vt-border); }
.vt-ad-lp .hw-opt-label { font-weight: 400; font-size: 13px; line-height: 18px; color: var(--vt-fg-2); letter-spacing: -0.2px; }
.vt-ad-lp .hw-opt-val,
.vt-ad-lp .hw-opt-sel { display: inline-flex; align-items: center; font-weight: 500; font-size: 12px; line-height: 16px; color: var(--vt-fg-1); border: 1px solid var(--vt-border-strong); border-radius: 7px; padding: 4px 10px; white-space: nowrap; }
.vt-ad-lp .hw-check { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--vt-border-strong); background: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vt-ad-lp .hw-check--on { border: none; background: var(--vt-violet); color: #fff; }
/* request balance strip */
.vt-ad-lp .hw-bal-row { display: flex; align-items: center; border: 1px solid var(--vt-border); border-radius: 9px; padding: 10px 4px; margin-top: 4px; }
.vt-ad-lp .hw-bal-cell { flex: 1; text-align: center; }
.vt-ad-lp .hw-bal-cell + .hw-bal-cell { border-left: 1px solid var(--vt-border); }
.vt-ad-lp .hw-bal-num { font-weight: 600; font-size: 18px; line-height: 22px; color: var(--vt-fg-1); letter-spacing: -0.4px; }
.vt-ad-lp .hw-bal-cell--accent .hw-bal-num { color: var(--vt-violet); }
.vt-ad-lp .hw-bal-key { font-weight: 400; font-size: 10px; line-height: 14px; color: var(--vt-fg-4); text-transform: uppercase; letter-spacing: 0.3px; }

/* ============================ TESTIMONIAL =========================== */
.vt-ad-lp .alp-quote-section { background: var(--vt-bg); padding: 72px 40px; }
.vt-ad-lp .alp-quote-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.vt-ad-lp .alp-quote-mark { font-weight: 700; font-size: 80px; line-height: 0.6; color: var(--vt-violet); height: 40px; }
.vt-ad-lp .alp-quote { font-weight: 500; font-size: 32px; line-height: 44px; letter-spacing: -0.9px; color: var(--vt-fg-1); margin: 0 0 40px; text-wrap: balance; }
.vt-ad-lp .alp-quote-footer { display: flex; align-items: center; justify-content: center; gap: 18px; }
.vt-ad-lp .alp-quote-avatar { width: 56px; height: 56px; flex: 0 0 56px; border-radius: 9999px; overflow: hidden; background: #E7E0F7; }
.vt-ad-lp .alp-quote-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vt-ad-lp .alp-quote-id { text-align: left; }
.vt-ad-lp .alp-quote-name { font-weight: 500; font-size: 16px; line-height: 22px; letter-spacing: -0.3px; color: var(--vt-fg-1); }
.vt-ad-lp .alp-quote-role { font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: -0.2px; color: var(--vt-fg-3); }
.vt-ad-lp .alp-quote-divider { width: 1px; height: 40px; background: rgba(40,24,83,0.16); }
.vt-ad-lp .alp-quote-stat { text-align: left; }
.vt-ad-lp .alp-quote-stat-big { font-weight: 600; font-size: 18px; line-height: 24px; letter-spacing: -0.4px; color: var(--vt-cta-accent); }
.vt-ad-lp .alp-quote-stat-sub { font-weight: 400; font-size: 13px; line-height: 18px; letter-spacing: -0.2px; color: var(--vt-fg-3); }

/* ============================= FINAL CTA ============================ */
.vt-ad-lp .alp-cta-band { padding: 104px 40px; background: var(--vt-violet-900); }
.vt-ad-lp .alp-cta-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.vt-ad-lp .alp-cta-h2 { font-weight: 500; font-size: 50px; line-height: 58px; letter-spacing: -1.8px; color: #fff; margin: 0; text-wrap: balance; }
.vt-ad-lp .alp-cta-sub { font-weight: 400; font-size: 20px; line-height: 30px; letter-spacing: -0.3px; color: var(--vt-violet-300); margin: 18px 0 32px; }
.vt-ad-lp .alp-cta-band .alp-cta-row { justify-content: center; }
.vt-ad-lp .alp-cta-micro { font-weight: 400; font-size: 14px; line-height: 20px; letter-spacing: -0.2px; color: var(--vt-violet-300); margin-top: 16px; text-align: center; }
.vt-ad-lp .alp-cta-micro .alp-ico { color: var(--vt-cta-accent); margin-right: 6px; }

/* integration banner */
.vt-ad-lp .alp-banner { max-width: 1200px; margin: 60px auto 0; padding-top: 44px; border-top: 1px solid rgba(255,255,255,0.12); text-align: center; }
.vt-ad-lp .alp-banner-label { font-weight: 400; font-size: 15px; line-height: 22px; letter-spacing: -0.2px; color: var(--vt-violet-300); margin-bottom: 30px; }
.vt-ad-lp .alp-banner-groups { display: flex; justify-content: center; align-items: flex-start; flex-wrap: wrap; row-gap: 28px; }
.vt-ad-lp .alp-banner-group { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 0 30px; }
.vt-ad-lp .alp-banner-group-label { font-weight: 600; font-size: 12px; line-height: 16px; letter-spacing: 0.4px; text-transform: uppercase; color: rgba(222,206,251,0.75); }
.vt-ad-lp .alp-banner-tiles { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.vt-ad-lp .alp-banner-divider { width: 1px; align-self: stretch; min-height: 92px; background: rgba(255,255,255,0.12); }
.vt-ad-lp .alp-tile { width: 56px; height: 56px; border-radius: 14px; background: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px -4px rgba(0,0,0,0.28); }
.vt-ad-lp .alp-tile img { height: 32px; width: 32px; object-fit: contain; }

/* ============================== ICONS =============================== */
/* Phosphor webfont glyphs inherit color via currentColor. */
.vt-ad-lp .alp-ico { flex-shrink: 0; line-height: 1; vertical-align: -2px; }
.vt-ad-lp .bm-check-tail { color: var(--vt-success); }

/* =========================== ENTRANCE MOTION ======================== */
@media (prefers-reduced-motion: no-preference) {
  .vt-ad-lp.reveal-armed .fade-seq { opacity: 0; transform: translateY(18px); }
  .vt-ad-lp.reveal-armed .fade-seq.reveal { opacity: 1; transform: none; transition: opacity 0.6s var(--vt-ease), transform 0.6s var(--vt-ease); }

  .vt-ad-lp .hero-float { animation: alpHeroFloat 5s ease-in-out infinite; }
  .vt-ad-lp .bm-live-dot { animation: alpBmPulse 1.6s ease-in-out infinite; }
  .vt-ad-lp .bm-rise { animation: alpBmRise 0.5s var(--vt-ease) both; }
  .vt-ad-lp .bm-fade { animation: alpBmFade 0.42s var(--vt-ease); }
  .vt-ad-lp .bm-grow { animation: alpBmGrow 0.8s var(--vt-ease) both; }
}

@keyframes alpHeroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes alpBmPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.6); } }
@keyframes alpBmRise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes alpBmFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
@keyframes alpBmGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ============================= RESPONSIVE =========================== */
@media (max-width: 980px) {
  .vt-ad-lp .alp-hero { padding: 48px 24px 64px; }
  .vt-ad-lp .alp-hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 8px; }
  .vt-ad-lp .alp-hero-text { align-items: flex-start; }
  .vt-ad-lp .alp-h1 { font-size: 44px; line-height: 50px; letter-spacing: -1.4px; }
  .vt-ad-lp .alp-section { padding: 72px 24px; }
  .vt-ad-lp .alp-h2 { font-size: 34px; line-height: 42px; letter-spacing: -1px; white-space: normal; }
  .vt-ad-lp .alp-kicker { white-space: normal; }

  /* proof logos: centered wrap, not space-between (which left ugly gaps) */
  .vt-ad-lp .alp-proof { padding: 16px 24px 56px; }
  .vt-ad-lp .alp-logo-row { justify-content: center; gap: 24px 32px; }
  .vt-ad-lp .alp-logo-row img { max-height: 28px; }
  .vt-ad-lp .alp-logo-row img.alp-logo-dell { max-height: 40px; max-width: 40px; }

  /* benefits showcase: stack, widen the framed mock, shrink the tilted
     backdrop so it no longer overflows / clips on small screens */
  .vt-ad-lp .alp-showcase { grid-template-columns: 1fr; gap: 32px; }
  .vt-ad-lp .alp-showcase-visual { min-height: auto; padding: 28px 24px; overflow: hidden; }
  .vt-ad-lp .alp-frame-wrap { width: 100%; max-width: 380px; }
  .vt-ad-lp .alp-frame-backdrop { inset: -16px -16px; border-radius: 26px; }

  /* connected flow stacks vertically; arrows rotate to point down */
  .vt-ad-lp .alp-flow-panel { flex-direction: column; gap: 8px; padding: 32px 20px; }
  .vt-ad-lp .alp-flow-col { width: 100%; }
  .vt-ad-lp .alp-flow-arrow-wrap { justify-content: center; padding: 4px 0; }
  .vt-ad-lp .alp-flow-arrow { transform: rotate(90deg); }

  /* match section gutters so the CTA buttons sit side-by-side like the hero */
  .vt-ad-lp .alp-quote-section { padding: 72px 24px; }
  .vt-ad-lp .alp-cta-band { padding: 72px 24px; }
  .vt-ad-lp .alp-quote { font-size: 26px; line-height: 36px; letter-spacing: -0.6px; }
  .vt-ad-lp .alp-cta-h2 { font-size: 36px; line-height: 44px; letter-spacing: -1.2px; }
  .vt-ad-lp .alp-banner-divider { display: none; }
}

@media (max-width: 600px) {
  .vt-ad-lp .alp-h1 { font-size: 36px; line-height: 42px; }
  .vt-ad-lp .alp-hero-sub { font-size: 18px; line-height: 28px; }
  .vt-ad-lp .alp-cta-row { width: 100%; }
  .vt-ad-lp .alp-cta-row .alp-btn { flex: 1; }

  /* fixed 3-per-row grid (3 + 3) so logos line up evenly on phones */
  .vt-ad-lp .alp-logo-row { display: grid; grid-template-columns: repeat(3, 1fr); justify-items: center; align-items: center; gap: 26px 10px; }
  .vt-ad-lp .alp-logo-row img { max-height: 24px; max-width: 100%; }
  .vt-ad-lp .alp-logo-row img.alp-logo-dell { max-height: 32px; max-width: 100%; }

  /* testimonial footer: stack avatar / name / verified vertically, centered */
  .vt-ad-lp .alp-quote { font-size: 24px; line-height: 34px; }
  .vt-ad-lp .alp-quote-footer { flex-direction: column; gap: 14px; }
  .vt-ad-lp .alp-quote-id,
  .vt-ad-lp .alp-quote-stat { text-align: center; }
  .vt-ad-lp .alp-quote-divider { display: none; }
}
