/*
  Aliunity Home — premium overrides
  Scoped to body.home so other pages remain untouched.

  NOTE: Agrandir Grand is referenced as a self-hosted font.
  Add your real font files here (recommended):
    assets/fonts/AgrandirGrand-Bold.woff2
    assets/fonts/AgrandirGrand-Bold.woff
  Then keep the @font-face below.
*/

@font-face {
  font-family: "Agrandir Grand";
  src:
    url("assets/fonts/AgrandirGrand-Bold.woff2") format("woff2"),
    url("assets/fonts/AgrandirGrand-Bold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

body.home {
  background: #070707;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body.home a {
  text-decoration: none;
}

/* Utility */
.home .al-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("assets/grain.png");
  background-size: 320px 320px;
}

/* If grain asset doesn't exist yet, we fall back to CSS noise (subtle). */
@supports (background-image: repeating-radial-gradient(circle at 0 0, #000 0 1px, transparent 1px 2px)) {
  .home .al-grain {
    background-image: repeating-radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 2px);
    background-size: 180px 180px;
  }
}

/* NAV */
.home .al-nav {
  background: rgba(10, 10, 10, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home .al-nav__container {
  /* Keep the logo/hamburger away from the screen edges on mobile */
  padding: 12px clamp(16px, 4vw, 28px);
}

.home .al-nav__logo a {
  font-family: "Agrandir Grand", Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
}

.home .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.home .nav-cta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* LOADER */
.home #al-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #070707;
}

.home .al-loader__inner {
  position: relative;
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 28px;
}

.home .al-loader__logo {
  font-family: "Agrandir Grand", Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: clamp(18px, 2.4vw, 34px);
  color: rgba(255, 255, 255, 0.94);
}

.home .al-loader__line {
  width: min(320px, 70vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  position: relative;
}

.home .al-loader__sweep {
  position: absolute;
  inset: 0;
  width: 35%;
  transform: translateX(-120%);
  background: rgba(255, 255, 255, 0.72);
}

.home .al-loader__hint {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* HERO */
.home .al-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.home .al-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05) brightness(0.92);
  transform: scale(1.04);
}

.home .al-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 50% 45%, rgba(255, 255, 255, 0.10), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.82));
}

.home .al-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

/* Cursor spotlight (replaces the old "box" feel) */
.home .al-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 1;
  background: radial-gradient(
    520px circle at var(--al-mx, 50%) var(--al-my, 45%),
    rgba(255, 255, 255, 0.06),
    transparent 62%
  );
  transition: background 0.12s ease-out;
}

@media (hover: none) {
  .home .al-spotlight {
    display: none;
  }
}

.home .al-hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0;
  /* Push hero copy lower so it doesn't feel glued to the top-left. */
  padding: clamp(240px, 20vh, 340px) 22px 90px;
  text-align: left;
  padding-left: clamp(24px, 6vw, 96px);
}

.home .al-hero__kicker {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.home .al-hero__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 0.92;
  font-size: clamp(46px, 6.2vw, 92px);
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
}

.home .al-hero__titleLine {
  display: block;
  white-space: nowrap;
}

.home .al-hero__titleAccent {
  display: block;
  background: linear-gradient(135deg, #a7a186 0%, #958E69 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home .al-hero__subtitle {
  margin: 18px 0 0;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.home .al-hero__rotating {
  display: inline-block;
  margin-left: 6px;
  background: linear-gradient(135deg, #a7a186 0%, #958E69 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s ease;
}

.home .al-hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.home .al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.home .al-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
}

.home .al-btn--primary {
  background: rgba(167, 161, 134, 0.16);
  border-color: rgba(167, 161, 134, 0.32);
}

.home .al-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
}

/* Floating cards */
.home .al-heroCards {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.home .al-card {
  pointer-events: auto;
  position: absolute;
  width: min(320px, 78vw);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transform: translateZ(0);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.home .al-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.home .al-card:nth-child(1) {
  left: 7vw;
  bottom: 10vh;
}

.home .al-card--mid {
  right: 10vw;
  bottom: 16vh;
  width: min(270px, 74vw);
}

.home .al-card--right {
  right: 6vw;
  top: 18vh;
  width: min(260px, 72vw);
}

.home .al-card__media {
  height: 170px;
  background: rgba(255, 255, 255, 0.06);
}

.home .al-card__media video,
.home .al-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home .al-card__meta {
  padding: 14px 14px 16px;
}

.home .al-card__brand {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.home .al-card__stats {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
}

/* Scroll hint */
.home .al-scrollHint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
}

.home .al-scrollHint__line {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
}

/* TRUST STRIP */
.home .al-trust {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.65);
}

.home .al-trust__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
}

.home .al-trust__label {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
}

.home .al-trust__strip {
  display: flex;
  /* spacing only (no dots) */
  gap: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.home .al-trust__strip::-webkit-scrollbar {
  display: none;
}

.home .al-trust__name {
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  position: relative;
  transform: translateY(0);
  transition:
    transform 260ms cubic-bezier(.2,.8,.2,1),
    color 220ms ease;
  will-change: transform;
}

/* no separators here — spacing handled by strip gap */

.home .al-trust__name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition:
    transform 360ms cubic-bezier(.2,.8,.2,1),
    opacity 220ms ease;
}

.home .al-trust__name:hover{
  color: rgba(255,255,255,0.95);
  transform: translateY(-2px);
}

.home .al-trust__name:hover::after{
  transform: scaleX(1);
  opacity: 1;
}

.home .al-trust__name:focus-visible{
  outline: none;
  color: rgba(255,255,255,0.98);
  transform: translateY(-2px);
}

.home .al-trust__name:focus-visible::after{
  transform: scaleX(1);
  opacity: 1;
}

/* Section headings */
.home .al-h2 {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw, 52px);
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.94);
}

.home .al-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 16px;
  max-width: 70ch;
}

/* REEL */
.home .al-reel {
  padding: 86px 0 30px;
}

.home .al-reel__header {
  margin-bottom: 28px;
}

.home .al-reel__pin {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home .al-reel__track {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 22px;
  padding: 22px;
  will-change: transform;
}

.home .al-reelCard {
  flex: 0 0 min(520px, 88vw);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  display: grid;
  grid-template-rows: 1fr auto;
}

.home .al-reelCard__media {
  position: relative;
  min-height: 100%;
}

.home .al-reelCard__media video,
.home .al-reelCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.05);
}

.home .al-reelCard__text {
  padding: 14px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0));
}

.home .al-reelCard__title {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.home .al-reelCard__meta {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

/* IMPACT GRAPH */
.home .al-impact {
  padding: 90px 0;
}

.home .al-impact__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 16px;
}

.home .al-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.04);
}

.home .al-impact__stage {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: radial-gradient(900px 420px at 50% 30%, rgba(167, 161, 134, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.03);
  min-height: 520px;
}

.home .al-impact__canvas {
  width: 100%;
  height: 520px;
  display: block;
}

.home .al-impact__card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100% - 36px));
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.home .al-impact__card[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.home .al-impact__cardTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home .al-impact__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  flex: 0 0 auto;
}

.home .al-impact__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.home .al-impact__brand {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.home .al-impact__close {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.80);
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}

.home .al-impact__meta {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.home .al-impact__oneLine {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.home .al-impact__oneLine .al-cardVertical {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.home .al-impact__oneLine .al-cardOverview {
  font-weight: 650;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.home .al-impact__oneLine .al-cardExec {
  margin-top: 8px;
  font-weight: 550;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.68);
}

.home .al-impact__stats {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.home .al-impact__stats .chip {
  border-radius: 999px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.home .al-impact__miniMedia {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.home .al-impact__miniMedia img,
.home .al-impact__miniMedia video {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.home .al-impact__link {
  display: inline-flex;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Mobile-only simplified proof UI */
.home .al-impactMobile {
  display: none;
  padding: 18px;
}

.home .al-impactMobile__chips {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.home .al-impactChip {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
}

.home .al-impactChip.is-active {
  background: rgba(167, 161, 134, 0.22);
  border-color: rgba(167, 161, 134, 0.42);
}

.home .al-impactMobile__card {
  margin-top: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px;
}

.home .al-mCardTop { display: flex; align-items: center; gap: 12px; }
.home .al-mLogo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  flex: 0 0 auto;
}
.home .al-mLogo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home .al-mBrand { font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.92); }
.home .al-mMeta { margin-top: 2px; font-size: 12px; color: rgba(255,255,255,0.62); font-weight: 700; }
.home .al-mDesc { margin-top: 10px; color: rgba(255,255,255,0.78); font-weight: 600; }

.home .al-mDetails {
  margin-top: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  padding: 10px 12px;
}

.home .al-mDetails summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,0.82);
}

.home .al-mDetails summary::-webkit-details-marker { display: none; }

.home .al-mDetails__body {
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  line-height: 1.35;
}

.home .al-mDetails__k {
  margin-top: 10px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,0.62);
}

.home .al-mDetails__v { margin-top: 6px; }
.home .al-mDetails ul { margin: 8px 0 0 18px; padding: 0; }
.home .al-mDetails li { margin: 6px 0; }
.home .al-mStats { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.home .al-mStats .chip { border-radius: 999px; padding: 8px 10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); font-size: 12px; color: rgba(255,255,255,0.72); }
.home .al-mMedia { margin-top: 12px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.10); }
.home .al-mMedia img { width: 100%; height: 170px; object-fit: cover; display: block; }
.home .al-mLink { display: inline-flex; margin-top: 12px; color: rgba(255,255,255,0.86); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; font-size: 12px; }

@media (max-width: 820px) {
  .home .al-impact__header { flex-direction: column; align-items: flex-start; }
  .home .al-impact__legend { display: none; }
  .home .al-impact__stage { min-height: unset; }
  .home .al-impact__canvas { display: none; }
  .home .al-impact__card { display: none !important; }
  .home .al-impactMobile { display: block; }
}

/* WHAT WE DO */
.home .al-what {
  padding: 88px 0;
}

.home .al-what__stack {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.home .al-statement {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.home .al-statement__big {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.90);
}

.home .al-statement__small {
  color: rgba(255, 255, 255, 0.68);
  max-width: 80ch;
}

/* RESULTS */
.home .al-results {
  padding: 86px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home .al-results__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.home .al-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.home .al-metric {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.home .al-metric__num {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.92);
}

.home .al-metric__label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.home .al-phone {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
  max-width: 420px;
  margin-left: auto;
}

.home .al-phone__top,
.home .al-phone__bottom {
  height: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.home .al-phone__screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* PHILOSOPHY */
.home .al-philo {
  padding: 86px 0 110px;
}

.home .al-philo__box {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: radial-gradient(900px 420px at 50% 0%, rgba(167, 161, 134, 0.14), transparent 58%),
    rgba(255, 255, 255, 0.03);
  padding: 28px;
}

.home .al-philo__lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.home .al-philo__box .al-btn {
  margin-top: 44px;
}

/* Responsive */
@media (max-width: 980px) {
  .home .al-trust__row {
    grid-template-columns: 1fr;
  }
  .home .al-results__grid {
    grid-template-columns: 1fr;
  }
  .home .al-phone {
    margin: 10px auto 0;
  }
  .home .al-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home .al-card:nth-child(1),
  .home .al-card--mid,
  .home .al-card--right {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }
  .home .al-heroCards {
    position: relative;
    padding: 0 18px 30px;
    display: grid;
    gap: 12px;
    justify-items: center;
    max-width: 420px;
    margin: 0 auto;
  }
  .home .al-hero__content {
    padding: 170px 18px 22px;
  }
  .home .al-scrollHint {
    display: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .home #al-loader {
    display: none;
  }
  .home .al-hero__canvas {
    display: none;
  }
}


/* Trusted by marquee track */
.home .al-trust__strip{
  overflow: hidden;
  position: relative;
  /* No fade/mask — user wants equal left/right */
  mask-image: none;
  -webkit-mask-image: none;
}

.home .al-trust__track{
  display: inline-flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}
