*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #080808;
  --black-2: #0f0f0f;
  --black-3: #161616;
  --white: #ffffff;
  --off: #e4e4e4;
  --muted: #777;
  --gold: #c8a96e;
  --font-display: "Chivo", sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
  /* Store badges: fixed slot + overflow clip; Play PNG has extra transparent padding vs Apple SVG — zoom Play to match visual weight */
  --store-badge-w-hero: 156px;
  --store-badge-h-hero: 52px;
  --store-badge-w-card: 120px;
  --store-badge-h-card: 40px;
  --store-badge-w-cta: 168px;
  --store-badge-h-cta: 56px;
  --store-badge-play-zoom: 1.28;
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(200, 169, 110, 0.45);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.32s cubic-bezier(0.23, 1, 0.32, 1);
}

/* SITE HEADER — primary nav only (legal links live in the site footer, not the navbar) */
:root {
  --site-header-offset: calc(env(safe-area-inset-top, 0px) + 88px);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}
@media (max-width: 900px) {
  .site-header {
    z-index: 150;
  }
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--site-header-offset);
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.97) 0%,
    rgba(8, 8, 8, 0.88) 55%,
    rgba(8, 8, 8, 0.45) 88%,
    transparent 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 0;
  pointer-events: none;
}
body.nav-open .site-header::before {
  background: var(--black);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex: 0 0 auto;
  min-width: 0;
  padding: 22px 0;
}
.nav-brand {
  flex-shrink: 0;
  line-height: 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.nav-toggle:hover {
  border-color: rgba(200, 169, 110, 0.45);
  background: rgba(200, 169, 110, 0.08);
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 22px 0;
  flex: 1;
  justify-content: flex-end;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-cta {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 700 !important;
  transition:
    background 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  transform: scale(1.04);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* MAIN CONTENT 
#mainContent {
  max-width: 1800px;
}*/
/* HERO */
.hero {
  /* height: 100vh; */
  min-height: 700px;

  position: relative;
  overflow: hidden;
  /*display: flex;
  flex-direction: column;
  justify-content: flex-end; */
  padding: 0;
  /* padding-top: calc(var(--site-header-offset) + 20px); */
  box-sizing: border-box;
  background-color: var(--black);
  background-image:
    radial-gradient(
      ellipse 85% 55% at 72% 18%,
      rgba(200, 169, 110, 0.09) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 55% 45% at 12% 85%,
      rgba(200, 169, 110, 0.05) 0%,
      transparent 52%
    ),
    linear-gradient(180deg, #0d0d0d 0%, var(--black) 42%, #050505 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.96) 0%, transparent 24%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 60px 100px;
}
.hero-phones {
  position: relative;
  overflow: hidden;
  height: min(64vh, 660px);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
  box-sizing: border-box;
}
.hero-phone-track {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-phone-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 20px;
  box-sizing: border-box;
}
.hero-phone-slide .cs-phone-wrap {
  width: 100%;
  min-height: 0;
  align-items: center;
  padding: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 7vw, 140px);
  line-height: 0.93;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  margin-top: 26px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 470px;
  line-height: 1.78;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s forwards;
}
.btn-store {
  width: var(--store-badge-w-hero);
  height: var(--store-badge-h-hero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.2s,
    opacity 0.2s;
  line-height: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.btn-store:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}
.btn-store img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.btn-store img.store-badge-play {
  width: calc(100% * var(--store-badge-play-zoom));
  height: calc(100% * var(--store-badge-play-zoom));
}

/* hero carousel dots */
.hero-nav {
  position: absolute;
  bottom: 38px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-dots {
  position: static;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dot {
  width: 24px;
  height: 3px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  width: 48px;
}

/* slide counter */
.hero-counter {
  position: static;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.22);
}
.hero-counter em {
  color: var(--gold);
  font-style: normal;
}

/* progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 2px;
  background: var(--gold);
  width: 0%;
  transition: width 0s linear;
  opacity: 0.7;
}
.hero-progress.running {
  transition: width 5s linear;
  width: 100%;
}

/* MARQUEE */
.marquee-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--black-2);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item span {
  color: var(--gold);
  font-size: 9px;
}

/* PHOTO STRIP */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  height: 460px;
  gap: 3px;
  overflow: hidden;
}
.ps-img {
  overflow: hidden;
  position: relative;
  background: var(--black-3);
}
.ps-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.ps-img:hover img {
  transform: scale(1.07);
}
.ps-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.45) 0%, transparent 50%);
  pointer-events: none;
}

/* SECTION SHARED */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.93;
  letter-spacing: 0.01em;
}

/* MISSION */
.mission {
  padding: 130px 60px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.mission-desc {
  color: #888;
  font-size: 17px;
  line-height: 1.85;
  margin: 26px 0 42px;
}
.mission-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mission-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 28px 30px;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.mission-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateX(6px);
}
.mission-card:hover::before {
  opacity: 1;
}
.mc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.mission-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}
.mission-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* Mission visual */
.mission-visual {
  position: relative;
  height: 600px;
}
.mv-img {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}
.mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mv-1 {
  width: 68%;
  height: 76%;
  top: 0;
  left: 0;
}
.mv-2 {
  width: 47%;
  height: 53%;
  bottom: 0;
  right: 0;
  border: 3px solid var(--black);
}
.mv-badge {
  position: absolute;
  bottom: 30px;
  left: 28px;
  z-index: 2;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 22px;
}
.mv-badge-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  color: var(--gold);
}
.mv-badge-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* APPS */
.apps {
  position: relative;
  background: var(--black-2);
  padding: 130px 60px;
  margin-bottom: 80px;
}
.apps::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at top left,
      rgba(8, 8, 8, 0.92) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at top right,
      rgba(8, 8, 8, 0.92) 0%,
      transparent 32%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(8, 8, 8, 0.98) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(8, 8, 8, 0.98) 0%,
      transparent 30%
    ),
    linear-gradient(
      180deg,
      var(--black) 0%,
      rgba(8, 8, 8, 0.95) 18%,
      var(--black-2) 100%
    );
}
.apps > * {
  position: relative;
  z-index: 1;
}
.apps-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 68px;
}
.apps-tagline {
  max-width: 300px;
  color: #555;
  font-size: 15px;
  line-height: 1.75;
}
.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.app-card {
  border-radius: 26px;
  padding: 52px 48px 48px;
  position: relative;
  overflow: hidden;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.app-card:hover {
  transform: translateY(-6px);
}
.app-card-customer {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.app-card-business {
  background: linear-gradient(145deg, #b8923a 0%, #c8a96e 55%, #e0c98a 100%);
}
.app-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.app-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center top;
}
.app-card-customer .app-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.15) 0%,
    rgba(8, 8, 8, 0.93) 62%
  );
}
.app-card-business .app-photo {
  display: none;
}
.app-content {
  position: relative;
  z-index: 1;
}
.app-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 17px;
  border-radius: 100px;
  margin-bottom: 20px;
  -webkit-font-smoothing: antialiased;
}
.app-card-customer .app-badge {
  background: rgba(200, 169, 110, 0.22);
  color: #f3e6cc;
  border: 1px solid rgba(230, 200, 140, 0.5);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.app-card-business .app-badge {
  background: rgba(0, 0, 0, 0.22);
  color: #140f08;
  border: 1px solid rgba(0, 0, 0, 0.32);
}
.app-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.app-card-business h2 {
  color: var(--black);
}
.app-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(235, 235, 235, 0.88);
  font-weight: 500;
  margin-bottom: 30px;
  max-width: 340px;
}
.app-card-business .app-desc {
  color: rgba(12, 10, 6, 0.92);
  font-weight: 600;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 34px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(242, 242, 242, 0.92);
}
.app-card-business .feature-item {
  color: rgba(8, 7, 5, 0.94);
  font-weight: 700;
}
.fd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.app-card-business .fd {
  background: #1a1510;
}
.store-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-app {
  width: var(--store-badge-w-card);
  height: var(--store-badge-h-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.2s,
    opacity 0.2s;
  line-height: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.btn-app:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.btn-app img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px;
  flex-shrink: 0;
}
.btn-app img.store-badge-play {
  width: calc(100% * var(--store-badge-play-zoom));
  height: calc(100% * var(--store-badge-play-zoom));
}
/* Apple badge on gold: invert gives dark artwork; do not use filter on Google PNG */
/*.app-badge-apple-on-gold {
  filter: invert(1);
}*/
.btn-dl {
  width: var(--store-badge-w-cta);
  height: var(--store-badge-h-cta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.2s,
    opacity 0.2s;
  line-height: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.btn-dl:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}
.btn-dl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
  flex-shrink: 0;
}
.btn-dl img.store-badge-play {
  width: calc(100% * var(--store-badge-play-zoom));
  height: calc(100% * var(--store-badge-play-zoom));
}

/* SOCIAL PROOF */
.social-proof {
  background: var(--black);
  padding: 130px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.social-proof-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.sp-header {
  max-width: 620px;
  margin-bottom: 52px;
}
.sp-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
  border: 1px solid rgba(200, 169, 110, 0.28);
  background: rgba(200, 169, 110, 0.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.sp-stat-pill span {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sp-card {
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 34px 32px 32px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.sp-card:hover {
  border-color: rgba(200, 169, 110, 0.22);
  transform: translateY(-4px);
}
.sp-stars {
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 18px;
  line-height: 1;
}
.sp-quote {
  font-size: 17px;
  line-height: 1.68;
  color: var(--off);
  margin-bottom: 26px;
  flex-grow: 1;
}
.sp-meta {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.sp-name {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 4px;
}
.sp-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* WHY */
.why {
  padding: 130px 60px;
  display: grid;

  grid-template-columns: 420px 1fr;
  gap: 110px;
  align-items: start;
}
.why-left {
  position: sticky;
  top: 130px;
}
.why-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 22px;
}
.why-img {
  margin-top: 34px;
  border-radius: 20px;
  overflow: hidden;
  height: 330px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pillars {
  display: flex;
  flex-direction: column;
}
.pillar {
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  cursor: default;
  transition: padding-left 0.3s;
}
.pillar:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}
.pillar:hover {
  padding-left: 10px;
}
.p-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.09);
  line-height: 1;
  transition: color 0.3s;
}
.pillar:hover .p-num {
  color: var(--gold);
}
.pillar h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 9px;
  transition: color 0.3s;
}
.pillar:hover h3 {
  color: var(--gold);
}
.pillar p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 3px;
}
.gal-item {
  overflow: hidden;
  position: relative;
  background: var(--black-3);
}
.gal-item.tall {
  grid-row: span 2;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.gal-item:hover img {
  transform: scale(1.06);
}

/* DOWNLOAD CTA */
.download-cta {
  background: var(--black-2);
  padding: 140px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("/images/trim.jpg") center/cover no-repeat;
  opacity: 0.06;
  transform: scale(1.08);
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(
    ellipse,
    rgba(200, 169, 110, 0.09) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.download-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(70px, 10vw, 140px);
  line-height: 0.88;
  margin-bottom: 22px;
  position: relative;
}
.download-cta h2 em {
  font-style: normal;
  color: var(--gold);
}
.download-cta p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 54px;
  line-height: 1.75;
  position: relative;
}
.dl-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

/* FOOTER */
footer,
footer.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}
.sub-page > footer.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-nav-cluster {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  transition:
    color 0.2s,
    background-color 0.2s;
}
.footer-social-link:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.08);
}
.footer-social-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.footer-social-link .fa-brands {
  font-size: 1.375rem;
  line-height: 1;
  width: 1.375rem;
  text-align: center;
}
.footer-links-hint {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.65;
  color: rgba(255, 255, 255, 0.75);
}
.footer-copy {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.03em;
  line-height: 1.55;
}
.footer-copy .footer-copy-sub {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
}
.footer-copy-sub a {
  color: var(--gold);
  text-decoration: none;
}
/* CAROUSEL */
.carousel-section {
  background: var(--black);
  padding: 130px 0;
  overflow: hidden;
  position: relative;
}
.carousel-inner-wrap {
  padding: 0 60px;
  margin-bottom: 56px;
}
.carousel-lead {
  max-width: 520px;
  font-size: 16px;
  color: #777;
  line-height: 1.8;
  margin-top: 20px;
}
.carousel-cta {
  text-align: center;
  padding: 48px 60px 0;
}
.btn-carousel-dl {
  display: inline-block;
  background: var(--gold);
  color: var(--black) !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  transition:
    transform 0.2s,
    filter 0.2s;
}
.btn-carousel-dl:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.carousel-cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.carousel-track-outer {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding: 0 60px;
}
/* slide text */
.cs-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cs-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.cs-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.93;
  margin-bottom: 22px;
}
.cs-sub-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 6vw, 58px);
  line-height: 0.93;
  margin-bottom: 12px;
}
.cs-heading em,
.cs-sub-heading em {
  font-style: normal;
  color: var(--gold);
}
.cs-body {
  font-size: 16px;
  color: #888;
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 36px;
}
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cs-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  transition:
    border-color 0.25s,
    color 0.25s;
}
.cs-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* phone mockups — stacked: rear peeking from behind front, full screenshots (no crop) */
.cs-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  width: 100%;
  overflow: visible;
}
.dual-phone-stage {
  position: relative;
  width: min(100%, 456px);
  min-height: 584px;
  padding: 12px 20px 20px 12px;
  margin: 0 auto;
  flex-shrink: 0;
  box-sizing: border-box;
}
.cs-glow-orb {
  position: absolute;
  left: 42%;
  bottom: 12%;
  transform: translate(-50%, 0);
  width: min(400px, 95vw);
  height: min(400px, 95vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 169, 110, 0.14) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}
.phone-mockup {
  width: 260px;
  height: 530px;
  background: #111;
  border-radius: 44px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition:
    transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.45s,
    opacity 0.45s;
}
.phone-mockup--behind {
  position: absolute;
  z-index: 1;
  right: 2px;
  bottom: 16px;
  width: 248px;
  height: 504px;
  border-radius: 40px;
  transform: perspective(1000px) rotateY(-10deg);
  transform-origin: bottom right;
  opacity: 0.94;
  filter: brightness(0.8);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.72);
}
.phone-mockup--front {
  position: relative;
  z-index: 3;
  left: -76px;
  margin: 0 auto;
  transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
  transform-origin: bottom center;
}
.cs-phone-wrap:hover .phone-mockup--behind {
  transform: perspective(1000px) rotateY(-7deg) translateX(10px);
  filter: brightness(0.88);
}
.cs-phone-wrap:hover .phone-mockup--front {
  transform: perspective(1000px) rotateY(-2deg) rotateX(0deg) scale(1.02);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #080808;
  border-radius: 100px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.notch-cam {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #222;
}
.notch-speaker {
  width: 38px;
  height: 4px;
  border-radius: 10px;
  background: #1a1a1a;
}

.phone-screen {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  overflow: hidden;
  border-radius: 38px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mockup--behind .phone-screen {
  border-radius: 32px;
}
.phone-screen img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.phone-ui--subtle {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.04) 0%,
    transparent 45%,
    rgba(0, 0, 0, 0.45) 100%
  );
  opacity: 0.88;
}

.phone-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0) 38%,
    rgba(0, 0, 0, 0.72) 100%
  );
  padding: 0 16px 24px;
  pointer-events: none;
}
.phone-ui-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.phone-ui-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.phone-ui-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.phone-ui-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

/* carousel nav */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  margin-top: 52px;
}
.carousel-dots {
  display: flex;
  gap: 10px;
}
.cdot {
  width: 28px;
  height: 3px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.35s;
  border: none;
  padding: 0;
}
.cdot.active {
  background: var(--gold);
  width: 52px;
}
.carousel-arrows,
.hero-arrows {
  display: flex;
  gap: 12px;
}
.carrow,
.hero-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
}
.carrow:hover,
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: scale(1.08);
}
.carousel-counter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
}
.carousel-counter span {
  color: var(--gold);
}

@media (max-width: 600px) {
  .apps {
    margin-bottom: 0;
  }
  .hero-inner {
    margin-bottom: 100px;
  }
  .hero-nav {
    flex-direction: column;
    padding: 24px;
    height: 150px;
  }
  .carousel-section {
    padding: 50px 0;
  }
  .carousel-nav {
    flex-direction: column;
    padding: 24px;
    height: 150px;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .carousel-slide {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 0 24px;
  }
  .carousel-inner-wrap {
    padding: 0 24px;
  }
  .carousel-nav {
    padding: 24px;
  }
  .carousel-cta {
    padding: 36px 24px 0;
  }
  .hero-phones {
    min-height: 440px;
    height: auto;
    padding-top: 20px;
  }
  .hero-phone-slide {
    padding: 24px 12px 16px;
  }
  .dual-phone-stage {
    width: min(100%, 320px);
    min-height: 448px;
    padding: 6px 8px 12px;
  }
  .phone-mockup {
    width: 190px;
    height: 390px;
    border-radius: 36px;
  }
  .dual-phone-stage .phone-screen {
    border-radius: 30px;
  }
  .phone-mockup--behind {
    width: 176px;
    height: 360px;
    right: 2px;
    bottom: 10px;
    border-radius: 28px;
  }
  .dual-phone-stage .phone-mockup--behind .phone-screen {
    border-radius: 22px;
  }
  .phone-mockup--front {
    left: -44px;
    transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  }
  .cs-phone-wrap:hover .phone-mockup--behind {
    transform: perspective(1000px) rotateY(-5deg) translateX(6px);
  }
  .cs-phone-wrap:hover .phone-mockup--front {
    transform: perspective(1000px) rotateY(-1deg) rotateX(0deg) scale(1.02);
  }
}

/* FAQ */
.faq-section {
  background: var(--black);
  padding: 130px 60px;
  scroll-margin-top: var(--site-header-offset);
  max-width: 1800px;
}
.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(56px, 7vw, 132px);
  align-items: start;
}
.faq-left {
  position: sticky;
  top: calc(var(--site-header-offset) + 20px);
  min-width: 0;
  max-width: 100%;
  padding-right: clamp(0px, 2vw, 24px);
}
.faq-left .section-heading {
  font-size: clamp(36px, 4vw, 62px);
  line-height: 0.96;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
.faq-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
}
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-width: 0;
}
.faq-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  text-align: left;
  transition: color 0.25s;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.faq-a p {
  font-size: 15px;
  color: #888;
  line-height: 1.8;
  padding-bottom: 22px;
}

/* SUB PAGES */
.sub-page {
  background: var(--black);
  min-height: 100vh;
  color: var(--white);
  padding-top: var(--site-header-offset);
  display: flex;
  flex-direction: column;
}
.sub-page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 60px 80px;
}
.sub-page-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sub-page-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.sub-page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  margin-bottom: 14px;
}
.sub-page-date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 64px;
  letter-spacing: 0.04em;
}
.sub-page-body h2:not(.legal-shop-banner) {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 12px;
}
.sub-page-body h2:not(.legal-shop-banner):first-child {
  margin-top: 0;
}
.sub-page-body h2 span {
  color: var(--gold);
}
.sub-page-body p {
  font-size: 15px;
  color: #888;
  line-height: 1.85;
  margin-bottom: 12px;
}
.sub-page-body a {
  color: var(--gold);
  text-decoration: none;
}
.sub-page-body a:hover {
  text-decoration: underline;
}
.sub-page-body strong {
  color: var(--off);
}
.sub-page-body ul {
  margin-left: 20px;
}
.sub-page-body li {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}
.sub-page-body table {
  margin: 10px 0;
}
.sub-page-body td li {
  font-size: 12px;
}
.sub-page-body td,
th {
  font-size: 12px;
  border: 1px solid #dddddd;
  padding: 6px;
}
.sub-page-body th {
  font-size: 16px;
  border: 1px solid #dddddd;
  padding: 10px;
  background-color: #888;
  text-align: left;
  color: #000;
}
.legal-lead {
  font-size: 15px;
  color: #9a9a9a;
  line-height: 1.8;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
/* Business terms — hierarchical layout (numbered / Roman / caps) */
.legal-doc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: #a3a3a3;
  margin-top: 8px;
}
.legal-doc .legal-p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.78;
  color: #a3a3a3;
}
.legal-doc .legal-p--welcome {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--off);
}
.legal-doc .legal-ul--defs {
  margin: 0 0 18px;
  padding-left: 1.25em;
}
.legal-doc .legal-p strong,
.legal-doc strong {
  color: var(--off);
  font-weight: 600;
}
.legal-shop-banner {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 36px 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-sec {
  margin-bottom: 40px;
}
.legal-sec-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.legal-sec-heading--caps {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
}
.legal-sec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6em;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 16px;
}
.legal-subsec-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 28px 0 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.legal-subsec-num {
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-display);
}
.legal-subhead-caps {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 22px 0 10px;
}
.legal-letter {
  margin: 0 0 14px;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.78;
  color: #a3a3a3;
}
.legal-letter--b {
  margin-top: 18px;
}
.legal-marker {
  font-weight: 700;
  color: var(--gold);
  margin-right: 6px;
}
.legal-def-grid {
  margin: 12px 0 20px;
  padding-left: 0;
}
.legal-def-row {
  display: grid;
  grid-template-columns: 3.25em 1fr;
  gap: 10px 16px;
  align-items: start;
  margin-bottom: 12px;
}
.legal-roman {
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}
.legal-def-body {
  font-size: 14px;
  line-height: 1.78;
  color: #a3a3a3;
}
.legal-def-body strong {
  color: var(--off);
}
.legal-ul {
  margin: 0 0 16px;
  padding-left: 1.35em;
  color: #a3a3a3;
}
.legal-ul li {
  margin-bottom: 8px;
  line-height: 1.72;
}
.legal-p--hang {
  padding-left: 0;
}
.sub-page-body .legal-doc a {
  color: var(--gold);
}

/* FAQ hub + sub-page accordions */
.faq-hub-lead {
  font-size: 16px;
  color: #9a9a9a;
  line-height: 1.85;
  margin-bottom: 20px;
}
.faq-hub-lead:last-of-type {
  margin-bottom: 48px;
}
.faq-choice-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.faq-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.faq-choice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
}
.faq-choice-card:hover {
  border-color: rgba(200, 169, 110, 0.35);
  background: rgba(200, 169, 110, 0.04);
  transform: translateY(-2px);
}
.faq-choice-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--white);
}
.faq-choice-card p {
  font-size: 15px;
  color: #888;
  line-height: 1.75;
  margin: 0 0 24px;
  flex: 1;
}
.faq-choice-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.faq-choice-cta::after {
  content: "→";
  transition: transform 0.2s;
}
.faq-choice-card:hover .faq-choice-cta::after {
  transform: translateX(4px);
}
.sub-page-faq-intro {
  font-size: 15px;
  color: #9a9a9a;
  line-height: 1.8;
  margin: 0 0 40px;
}
.sub-page-faq-crosslink {
  margin-top: 48px;
  font-size: 15px;
  color: #888;
}
.sub-page-faq {
  margin-top: 0;
}
.sub-page-faq .faq-group-label {
  margin-top: 0;
}
.sub-page-faq .faq-item.open .faq-a {
  max-height: 1200px;
}
.sub-page--faq-hub .sub-page-content {
  max-width: 880px;
}

/* Single FAQ page — customer vs business (separate panels) */
.faq-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}
.faq-tab {
  flex: 1;
  min-width: 160px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--off);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
  text-align: center;
}
.faq-tab:hover {
  border-color: rgba(200, 169, 110, 0.35);
  color: var(--white);
}
.faq-tab--active {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.12);
  color: var(--white);
}
.faq-panel-intro {
  font-size: 15px;
  color: #9a9a9a;
  line-height: 1.8;
  margin: 0 0 28px;
}
.faq-switch-note {
  margin-top: 36px;
  font-size: 15px;
  color: #888;
  line-height: 1.75;
}
.faq-switch-note a {
  color: var(--gold);
  text-decoration: none;
}
.faq-switch-note a:hover {
  text-decoration: underline;
}
button.faq-inline-switch {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: var(--gold);
  text-decoration: underline;
  cursor: pointer;
}
button.faq-inline-switch:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .faq-choice-grid {
    grid-template-columns: 1fr;
  }
  .faq-section {
    padding: 80px 24px;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-left {
    position: static;
  }
  .sub-page-content {
    padding: 40px 24px 64px;
  }
  .legal-def-row {
    grid-template-columns: 2.5em 1fr;
    gap: 6px 10px;
  }
}
@media (max-width: 520px) {
  .legal-def-row {
    grid-template-columns: 1fr;
  }
  .legal-roman {
    text-align: left;
    padding-top: 0;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  /* Nav row ≈ 18+44+18 + border; safe-area added on .site-header — keep hero clear of fixed bar */
  :root {
    --site-header-offset: calc(env(safe-area-inset-top, 0px) + 86px);
  }
  .site-header {
    padding-left: 24px;
    padding-right: 24px;
  }
  .site-header > nav.site-nav {
    flex: 1 1 100%;
    width: 100%;
    justify-content: space-between;
    padding: 16px 0 18px;
    position: relative;
    z-index: 220;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
  .site-header > .nav-links {
    flex: 0 0 auto;
    justify-content: flex-start;
  }
  .site-header .nav-links {
    position: fixed;
    inset: 0;
    z-index: 200;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--site-header-offset) + 8px) 20px 40px;
    background-color: var(--black);
    background-image: linear-gradient(
      180deg,
      #121212 0%,
      #0a0a0a 45%,
      var(--black) 100%
    );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease;
  }
  body.nav-open .site-header .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.nav-open {
    overflow: hidden;
  }
  .site-header .nav-links > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .site-header .nav-links a {
    display: block;
    padding: 18px 8px;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-align: left;
  }
  .site-header .nav-links .nav-cta {
    text-align: center;
    margin-top: 8px;
    border-radius: 100px;
  }
  /* flex-end + tall inner block pushed headline under fixed nav — start from top; inset matches --site-header-offset */
  .hero {
    justify-content: flex-start;
    padding-top: calc(var(--site-header-offset) + 16px);
    padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    min-height: 100dvh;
    min-height: 100svh;
  }
  .hero-inner {
    padding: 12px 24px 72px;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .hero-phones {
    height: auto;
    min-height: 460px;
    padding-top: 20px;
  }
  .hero-phone-slide .cs-phone-wrap {
    min-height: 0;
    align-items: center;
  }
  .hero-nav {
    bottom: 24px;
    padding: 0 24px;
  }
  .photo-strip {
    grid-template-columns: 1fr 1fr;
    height: 320px;
  }
  .ps-img:nth-child(3),
  .ps-img:nth-child(4) {
    display: none;
  }
  .mission {
    padding: 120px 24px;
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .mission-visual {
    height: 380px;
  }
  .apps {
    padding: 80px 24px;
  }
  .apps-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
  }
  .apps-grid {
    grid-template-columns: 1fr;
  }
  .app-card {
    min-height: 520px;
    padding: 40px 32px;
  }
  .social-proof {
    padding: 80px 24px;
  }
  .sp-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .why {
    padding: 80px 24px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-left {
    position: static;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gal-item.tall {
    grid-row: span 1;
  }
  .download-cta {
    padding: 100px 24px;
  }
  footer {
    padding: 40px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 1800px) {
  .apps,
  .hero-inner,
  .mission,
  .why,
  #business,
  .faq-section {
    max-width: 1600px;
    margin: 0 auto;
  }
  .gallery {
    grid-template-rows: 500px 500px;
  }
}
