/**
 * U Ai brand system — dual industry pathways
 * Skeleton phase: monochrome only (color accents come later)
 */
:root {
  --uai-ink: #0a0a0a;
  --uai-ink-soft: #111111;
  --uai-muted: #6b6b6b;
  --uai-line: rgba(10, 10, 10, 0.12);
  --uai-surface: #ffffff;
  --uai-surface-soft: #f5f5f5;
  --uai-radius: 14px;
  --uai-radius-lg: 16px;
  --uai-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --uai-shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);

  --uai-home: #0a0a0a;
  --uai-home-deep: #0a0a0a;
  --uai-home-warm: #222222;
  --uai-home-grad: linear-gradient(115deg, #0a0a0a 0%, #222222 100%);

  --uai-rent: #0a0a0a;
  --uai-rent-light: #444444;
  --uai-rent-sky: #666666;
  --uai-rent-grad: linear-gradient(115deg, #0a0a0a 0%, #444444 100%);

  --uai-accent: var(--uai-home);
  --uai-accent-2: var(--uai-home-warm);
  --uai-accent-grad: var(--uai-home-grad);
}

html.theme-home,
body.theme-home,
.pathway--home {
  --uai-accent: var(--uai-home);
  --uai-accent-2: var(--uai-home-warm);
  --uai-accent-grad: var(--uai-home-grad);
}

html.theme-rent,
body.theme-rent,
.pathway--rent {
  --uai-accent: var(--uai-rent);
  --uai-accent-2: var(--uai-rent-light);
  --uai-accent-grad: var(--uai-rent-grad);
}

/* ── Full-bleed wash behind sticky nav (gateway + pathways) ── */
html.home-page-root body.gateway-page,
html.home-page-root body.theme-home,
html.home-page-root body.theme-rent,
body.gateway-page,
body.theme-home,
body.theme-rent {
  background-color: #fff !important;
  background-image:
    radial-gradient(ellipse 95% 58% at 10% -12%, rgba(255, 45, 122, 0.18), transparent 55%),
    radial-gradient(ellipse 85% 52% at 92% -14%, rgba(0, 123, 255, 0.14), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%) !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
}

html.home-page-root body.theme-home,
body.theme-home {
  background-image:
    radial-gradient(ellipse 100% 62% at 14% -14%, rgba(255, 45, 122, 0.2), transparent 56%),
    radial-gradient(ellipse 75% 48% at 90% -6%, rgba(255, 106, 0, 0.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%) !important;
}

html.home-page-root body.theme-rent,
body.theme-rent {
  background-image:
    radial-gradient(ellipse 100% 62% at 14% -14%, rgba(0, 123, 255, 0.18), transparent 56%),
    radial-gradient(ellipse 75% 48% at 90% -6%, rgba(79, 195, 247, 0.14), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%) !important;
}

/* Kill solid overlays that block the wash under the nav */
html.home-page-root body.gateway-page::before,
html.home-page-root body.theme-home::before,
html.home-page-root body.theme-rent::before,
body.gateway-page::before,
body.theme-home::before,
body.theme-rent::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

body.gateway-page .navbar,
body.theme-home .navbar,
body.theme-rent .navbar,
.home-page--obsidian.gateway-page .navbar,
.home-page--obsidian.theme-home .navbar,
.home-page--obsidian.theme-rent .navbar {
  background: rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: none !important;
}

body.gateway-page .gateway-hero {
  background: transparent !important;
}

body.theme-home .home-panel--landing,
body.theme-rent .home-panel--landing,
body.theme-home .hero--obsidian,
body.theme-rent .hero--obsidian {
  background: transparent !important;
}

/* Shared premium components */
.uai-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: none;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.uai-btn--ink {
  background: var(--uai-ink);
  color: #fff;
  box-shadow: var(--uai-shadow-sm);
}

.uai-btn--ink:hover {
  transform: translateY(-1px);
  box-shadow: var(--uai-shadow);
}

.uai-btn--home {
  background: var(--uai-home-grad);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 45, 122, 0.28);
}

.uai-btn--home:hover {
  transform: translateY(-1px);
}

.uai-btn--rent {
  background: var(--uai-rent-grad);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 123, 255, 0.28);
}

.uai-btn--rent:hover {
  transform: translateY(-1px);
}

.uai-btn--ghost {
  background: transparent;
  color: var(--uai-ink);
  border: 1.5px solid var(--uai-line);
}

.uai-card {
  background: var(--uai-surface);
  border: 1px solid var(--uai-line);
  border-radius: var(--uai-radius-lg);
  box-shadow: var(--uai-shadow-sm);
}

/* Dual-path selection cards */
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.15rem, 2.8vw, 1.75rem);
}

@media (max-width: 720px) {
  .path-grid {
    grid-template-columns: 1fr;
  }
}

.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: clamp(1.6rem, 3.2vw, 2.15rem);
  border-radius: 18px;
  border: none;
  background: #111;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 17.5rem;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.16);
}

.path-card--home,
.path-card--rent,
.path-card--home:hover,
.path-card--rent:hover {
  border: none;
}

.path-card__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.path-card--home .path-card__bar {
  background: var(--uai-home-grad);
}

.path-card--rent .path-card__bar {
  background: var(--uai-rent-grad);
}

.path-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-top: 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.path-card--home .path-card__icon {
  background: rgba(255, 45, 122, 0.1);
  color: var(--uai-home-deep);
}

.path-card--rent .path-card__icon {
  background: rgba(0, 123, 255, 0.1);
  color: var(--uai-rent);
}

.path-card__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--uai-muted);
}

.path-card--home .path-card__eyebrow {
  color: var(--uai-home-deep);
}

.path-card--rent .path-card__eyebrow {
  color: var(--uai-rent);
}

.path-card__title {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--uai-ink);
  line-height: 1.12;
}

.path-card__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #475569;
  flex: 1;
}

.path-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.94rem;
  font-weight: 650;
  padding-top: 0.25rem;
}

.path-card--home .path-card__cta {
  color: var(--uai-home-deep);
}

.path-card--rent .path-card__cta {
  color: var(--uai-rent);
}

.path-card:hover .path-card__cta {
  gap: 0.65rem;
}

/* Gateway hero */
.gateway-hero {
  position: relative;
  padding: clamp(6.5rem, 14vh, 8.5rem) 0 clamp(3.5rem, 7vh, 5rem);
  background: transparent;
}

.gateway-hero__wrap {
  width: min(72rem, calc(100% - 2 * var(--flow-gutter, 1.5rem)));
  margin: 0 auto;
}

.gateway-hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--uai-muted);
}

.gateway-hero__title {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.65rem, 6.5vw, 4.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--uai-ink);
}

.gateway-hero__lead {
  margin: 0 0 2.25rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  line-height: 1.55;
  color: #475569;
}

.gateway-hero__paths {
  margin-top: 0.35rem;
}

/* Modules */
.gateway-modules {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 1rem;
}

.gateway-modules li {
  padding: 1.25rem 1.3rem;
}

.gateway-modules strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--uai-ink);
  font-size: 1rem;
}

.gateway-modules span {
  color: var(--uai-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Black & white integrations marquee */
.int-marquee {
  position: relative;
  padding: 1.75rem 0;
  border-block: 1px solid rgba(15, 23, 42, 0.08);
  background: #0f172a;
  color: #fff;
  overflow: hidden;
}

.int-marquee__label {
  width: min(72rem, calc(100% - 2 * var(--flow-gutter, 1.5rem)));
  margin: 0 auto 1rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.int-marquee__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.int-marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: int-marquee 38s linear infinite;
  align-items: center;
  padding: 0.35rem 0;
}

.int-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0.9;
}

.int-marquee__item img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

@keyframes int-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .int-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: min(72rem, calc(100% - 3rem));
    margin: 0 auto;
    justify-content: center;
    gap: 1.5rem 2.5rem;
  }
}

/* Testimonials */
.gw-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

@media (max-width: 900px) {
  .gw-quotes {
    grid-template-columns: 1fr;
  }
}

.gw-quote {
  padding: 1.5rem 1.45rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--uai-line);
  box-shadow: var(--uai-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.gw-quote__stars {
  color: #0f172a;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.gw-quote__text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--uai-ink);
  letter-spacing: -0.01em;
}

.gw-quote__meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gw-quote__meta strong {
  font-size: 0.9rem;
  color: var(--uai-ink);
}

.gw-quote__meta span {
  font-size: 0.82rem;
  color: var(--uai-muted);
}

/* Process strip on gateway */
.gw-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: gwstep;
}

@media (max-width: 900px) {
  .gw-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .gw-steps {
    grid-template-columns: 1fr;
  }
}

.gw-steps li {
  position: relative;
  padding: 1.35rem 1.25rem 1.35rem 1.25rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--uai-line);
  counter-increment: gwstep;
}

.gw-steps li::before {
  content: counter(gwstep, decimal-leading-zero);
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--uai-muted);
}

.gw-steps strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  color: var(--uai-ink);
}

.gw-steps span {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--uai-muted);
}

/* Solutions dropdown */
.navbar__links .nav-dd {
  position: relative;
}

.navbar__links .nav-dd > button {
  appearance: none;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-dd__panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 16.5rem;
  padding: 0.45rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--uai-line);
  box-shadow: var(--uai-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 80;
}

.nav-dd:hover .nav-dd__panel,
.nav-dd:focus-within .nav-dd__panel,
.nav-dd.is-open .nav-dd__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dd__link {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}

.nav-dd__link:hover {
  background: var(--uai-surface-soft);
}

.nav-dd__link strong {
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--uai-ink);
}

.nav-dd__link span {
  font-size: 0.8rem;
  color: var(--uai-muted);
  line-height: 1.35;
}

.nav-dd__link--home strong {
  color: var(--uai-home-deep);
}

.nav-dd__link--rent strong {
  color: var(--uai-rent);
}

@media (max-width: 900px) {
  .nav-dd__panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0.25rem 0.75rem;
    min-width: 0;
  }
}

body.gateway-page .deck-rail,
body.gateway-page #deck-rail,
body.gateway-page .deck-progress,
body.gateway-page #deck-progress {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Pathway badges */
.pathway-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pathway-badge--home {
  color: var(--uai-home-deep);
  background: rgba(255, 45, 122, 0.1);
  border: 1px solid rgba(255, 45, 122, 0.22);
}

.pathway-badge--rent {
  color: #0369a1;
  background: rgba(0, 123, 255, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.22);
}

/* Pathway hero: breathe — more inset, badge first */
body.theme-home .home-panel--landing .hero--split .hero__copy,
body.theme-rent .home-panel--landing .hero--split .hero__copy {
  padding-top: clamp(1.5rem, 4vh, 2.75rem) !important;
  padding-left: clamp(0.25rem, 1.5vw, 1rem) !important;
  max-width: 34rem !important;
}

body.theme-home .home-panel--landing .hero--split .hero__h,
body.theme-rent .home-panel--landing .hero--split .hero__h {
  margin-top: 0.35rem !important;
}

body.theme-home .home-panel--landing .hero--split .pathway-badge,
body.theme-rent .home-panel--landing .hero--split .pathway-badge {
  margin-bottom: 1rem;
}

body.theme-rent .hero__h-accent,
html.theme-rent .hero__h-accent {
  background: var(--uai-rent-grad) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

body.theme-rent .btn-convert,
body.theme-rent .btn--glow,
body.theme-rent .america-offer__cta,
body.theme-rent .book-banner__phone {
  background: var(--uai-rent-grad) !important;
  border: none !important;
  box-shadow: 0 10px 28px rgba(0, 123, 255, 0.28) !important;
}

body.theme-rent .book-banner__eyebrow {
  background: var(--uai-rent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.theme-rent .cursor-texture__pink {
  background: #0a0a0a !important;
}

body.theme-rent .cursor-texture__orange {
  background: #4a4a4a !important;
}

/* Wichita strip placement when moved mid-page */
.wichita-strip--after-platform {
  margin: clamp(1.5rem, 4vh, 2.75rem) 0;
}

/* ═══════════════════════════════════════════
   PREMIUM GATEWAY — Airbnb / Uber / Tesla grade
   ═══════════════════════════════════════════ */

body.gateway-page {
  --gw-display: "Space Grotesk", "Space Grotesk", system-ui, sans-serif;
  --gw-body: "Space Grotesk", system-ui, sans-serif;
  --gw-ink: #0b0f19;
  --gw-muted: #5b6472;
  --gw-soft: #f4f5f7;
  --gw-line: rgba(11, 15, 25, 0.08);
  font-family: var(--gw-body);
  color: var(--gw-ink);
}

body.gateway-page .gateway-hero__title,
body.gateway-page .sec-head__title,
body.gateway-page .path-card__title,
body.gateway-page .deliver-tile__title,
body.gateway-page .gw-brand-band__name,
body.gateway-page .brand__word,
body.gateway-page .book-banner__title {
  font-family: var(--gw-display);
  font-weight: 650;
  letter-spacing: -0.04em;
}

/* Nav lockup */
body.gateway-page .brand--lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--gw-ink);
}

body.gateway-page .brand__mark--nav {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gw-line);
  box-shadow: 0 1px 2px rgba(11, 15, 25, 0.04);
}

body.gateway-page .brand__mark--nav .brand__img {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
}

body.gateway-page .brand__word {
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Hero — brand first */
body.gateway-page .gateway-hero {
  padding: clamp(7rem, 15vh, 9.5rem) 0 clamp(4rem, 8vh, 5.5rem);
}

body.gateway-page .gateway-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.75rem;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--gw-line);
  box-shadow: 0 8px 28px rgba(11, 15, 25, 0.06);
  backdrop-filter: blur(10px);
}

body.gateway-page .gateway-hero__logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

body.gateway-page .gateway-hero__word {
  font-family: var(--gw-display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--gw-ink);
  padding-right: 0.35rem;
}

body.gateway-page .gateway-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gw-muted);
}

body.gateway-page .gateway-hero__title {
  max-width: 12ch;
  font-size: clamp(3rem, 7.2vw, 4.75rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: var(--gw-ink);
  margin: 0 0 1.15rem;
}

body.gateway-page .gateway-hero__lead {
  max-width: 32rem;
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  line-height: 1.55;
  color: var(--gw-muted);
  margin: 0 0 2.75rem;
}

/* Pro pathway cards — Airbnb / Uber media cards */
body.gateway-page .path-card--pro {
  padding: 0;
  gap: 0;
  min-height: 0;
  border-radius: 24px;
  border: 1px solid var(--gw-line);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(11, 15, 25, 0.04),
    0 18px 40px rgba(11, 15, 25, 0.07);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

body.gateway-page .path-card--pro:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 4px rgba(11, 15, 25, 0.04),
    0 28px 56px rgba(11, 15, 25, 0.12);
}

body.gateway-page .path-card--pro .path-card__bar {
  display: none;
}

body.gateway-page .path-card__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 9.5rem;
  padding: 1.25rem 1.35rem;
  color: #fff;
}

body.gateway-page .path-card__media--sm {
  min-height: 6.5rem;
}

body.gateway-page .path-card__media--home {
  background: #0a0a0a;
}

body.gateway-page .path-card__media--rent {
  background: #111111;
}

body.gateway-page .path-card__media-label {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
}

body.gateway-page .path-card__media-mark {
  font-family: var(--gw-display);
  font-size: 2.4rem;
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
  opacity: 0.35;
}

body.gateway-page .path-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.45rem 1.45rem 1.55rem;
}

body.gateway-page .path-card--pro .path-card__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

body.gateway-page .path-card--pro .path-card__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

body.gateway-page .path-card--pro .path-card__text {
  margin: 0;
  color: var(--gw-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

body.gateway-page .path-card__chips {
  list-style: none;
  margin: 0.25rem 0 0.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

body.gateway-page .path-card__chips li {
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: var(--gw-soft);
  color: var(--gw-ink);
  font-size: 0.75rem;
  font-weight: 550;
  letter-spacing: 0.01em;
}

body.gateway-page .path-card__cta--btn {
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 2.75rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 650;
  color: #fff !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.gateway-page .path-card--home .path-card__cta--btn {
  background: var(--uai-home-grad);
  box-shadow: 0 8px 22px rgba(255, 45, 122, 0.28);
}

body.gateway-page .path-card--rent .path-card__cta--btn {
  background: var(--uai-rent-grad);
  box-shadow: 0 8px 22px rgba(0, 123, 255, 0.28);
}

body.gateway-page .path-card--pro:hover .path-card__cta--btn {
  transform: translateY(-1px);
}

/* Section heads */
body.gateway-page .gw-sec-head .sec-head__title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--gw-ink);
}

body.gateway-page .gw-sec-head .sec-head__lead {
  color: var(--gw-muted);
  max-width: 36rem;
}

body.gateway-page .gw-sec-head .sec-head__eyebrow {
  letter-spacing: 0.16em;
  color: var(--gw-muted);
}

/* Deliver bento */
body.gateway-page .deliver-bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

body.gateway-page .deliver-tile {
  grid-column: span 2;
  padding: 1.5rem 1.4rem 1.55rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--gw-line);
  box-shadow: 0 10px 30px rgba(11, 15, 25, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 11.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.gateway-page .deliver-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11, 15, 25, 0.08);
}

body.gateway-page .deliver-tile--feature {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 100%;
  padding: 1.85rem 1.7rem;
  background:
    linear-gradient(165deg, #0b0f19 0%, #171c2a 55%, #1a2236 100%);
  color: #fff;
  border: none;
  box-shadow: 0 24px 50px rgba(11, 15, 25, 0.22);
}

body.gateway-page .deliver-tile--crm,
body.gateway-page .deliver-tile--auto {
  grid-column: span 3;
  min-height: 12rem;
}

body.gateway-page .deliver-tile__kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gw-muted);
}

body.gateway-page .deliver-tile--feature .deliver-tile__kicker {
  color: rgba(255, 255, 255, 0.55);
}

body.gateway-page .deliver-tile__title {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--gw-ink);
}

body.gateway-page .deliver-tile--feature .deliver-tile__title {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  color: #fff;
  max-width: 16ch;
}

body.gateway-page .deliver-tile__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gw-muted);
}

body.gateway-page .deliver-tile--feature .deliver-tile__text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 34ch;
  font-size: 1.02rem;
}

body.gateway-page .deliver-tile__viz {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
}

body.gateway-page .deliver-tile__viz span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 900px) {
  body.gateway-page .deliver-bento {
    grid-template-columns: 1fr 1fr;
  }

  body.gateway-page .deliver-tile,
  body.gateway-page .deliver-tile--feature,
  body.gateway-page .deliver-tile--crm,
  body.gateway-page .deliver-tile--auto {
    grid-column: span 1;
    grid-row: auto;
  }

  body.gateway-page .deliver-tile--feature {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body.gateway-page .deliver-bento {
    grid-template-columns: 1fr;
  }
}

/* Brand band */
body.gateway-page .gw-brand-band {
  margin: clamp(1rem, 3vh, 2rem) 0;
  padding: clamp(3.5rem, 8vh, 5.5rem) 1.5rem;
  background: #0b0f19;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.gateway-page .gw-brand-band::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 45, 122, 0.22), transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(0, 123, 255, 0.18), transparent 50%);
  pointer-events: none;
}

body.gateway-page .gw-brand-band__in {
  position: relative;
  z-index: 1;
  width: min(40rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
}

body.gateway-page .gw-brand-band__logo {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

body.gateway-page .gw-brand-band__line {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.015em;
}

body.gateway-page .gw-brand-band__name {
  margin: 0.25rem 0 0;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.05em;
  color: #fff;
}

/* Quotes / steps polish on gateway */
body.gateway-page .gw-quote {
  border-radius: 22px;
  border-color: var(--gw-line);
  box-shadow: 0 12px 32px rgba(11, 15, 25, 0.05);
}

body.gateway-page .gw-quote__text {
  font-family: var(--gw-display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

body.gateway-page .gw-steps li {
  border-radius: 20px;
  border-color: var(--gw-line);
  background: #fff;
  box-shadow: 0 8px 24px rgba(11, 15, 25, 0.04);
}

body.gateway-page .gw-steps strong {
  font-family: var(--gw-display);
  letter-spacing: -0.025em;
}

body.gateway-page .int-marquee {
  background: #0b0f19;
}

body.gateway-page .obs-sec#deliver,
body.gateway-page .obs-sec#how-gateway,
body.gateway-page .obs-sec#quotes,
body.gateway-page .obs-sec#proof {
  background: transparent;
}

body.gateway-page .obs-sec#how-gateway,
body.gateway-page .obs-sec#proof {
  background: linear-gradient(180deg, transparent, rgba(244, 245, 247, 0.85), transparent);
}
