/* AirBook landing — premium marketing page */

.ab-landing {
  --lp-max: 1180px;
  --lp-gold: #c9a227;
  --lp-gold-light: #f0dfa0;
  --lp-sky: #4a9eff;
  --lp-glass: rgba(15, 26, 46, 0.72);
  --lp-glass-border: rgba(255, 255, 255, 0.1);
  --lp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lp-font-display: "Fraunces", "Georgia", serif;
}

/* ── Ambient background ── */
.ab-landing__ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ab-landing__grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
}

.ab-landing__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: lp-orb-drift 18s var(--lp-ease) infinite alternate;
}

.ab-landing__orb--gold {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: -8%;
  left: -12%;
  background: rgba(201, 162, 39, 0.22);
}

.ab-landing__orb--blue {
  width: min(45vw, 440px);
  height: min(45vw, 440px);
  top: 12%;
  right: -10%;
  background: rgba(30, 77, 140, 0.45);
  animation-delay: -6s;
}

.ab-landing__orb--teal {
  width: min(35vw, 360px);
  height: min(35vw, 360px);
  bottom: 5%;
  left: 35%;
  background: rgba(61, 214, 140, 0.08);
  animation-delay: -12s;
}

@keyframes lp-orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(3%, 4%) scale(1.08); }
}

/* ── Nav ── */
.ab-landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  max-width: calc(var(--lp-max) + 4rem);
  margin: 0 auto;
  width: 100%;
  transition: background 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease), backdrop-filter 0.35s var(--lp-ease);
}

.ab-landing-nav--scrolled {
  background: rgba(7, 13, 24, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--ab-border), 0 8px 32px rgba(0, 0, 0, 0.25);
}

.ab-landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}

.ab-landing-brand__icon {
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.ab-logo--nav {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ab-landing-nav__links {
  display: none;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ab-border);
}

.ab-landing-nav__links a {
  color: var(--ab-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.ab-landing-nav__links a:hover,
.ab-landing-nav__links a.is-active {
  color: var(--ab-text);
  background: rgba(255, 255, 255, 0.08);
}

.ab-landing-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ab-landing-screenshot-toggle {
  display: flex;
  align-items: center;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ab-border);
}

.ab-landing-screenshot-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ab-muted);
  font-family: var(--ab-font);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ab-landing-screenshot-toggle__btn:hover {
  color: var(--ab-text);
}

.ab-landing-screenshot-toggle__btn[aria-pressed="true"] {
  color: var(--ab-text);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.ab-landing-screenshot-toggle__btn svg {
  flex-shrink: 0;
  opacity: 0.85;
}

@media (max-width: 520px) {
  .ab-landing-screenshot-toggle__label { display: none; }
  .ab-landing-screenshot-toggle__btn { padding: 0.45rem 0.55rem; }
}

.ab-landing-screenshot-stack {
  position: relative;
  display: grid;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.ab-landing-screenshot-stack .ab-landing-screenshot-layer {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s var(--lp-ease);
  will-change: opacity;
}

.ab-landing-screenshot-stack .ab-landing-screenshot-layer.is-visible {
  opacity: 1;
  z-index: 2;
}

.ab-landing-screenshot-stack .ab-landing-screenshot-layer:not(.is-visible) {
  pointer-events: none;
}

.ab-landing-showcase {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--lp-glass-border);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
  background: var(--ab-bg-elevated);
}

.ab-landing-showcase .ab-landing-screenshot-stack {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.ab-landing-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (prefers-reduced-motion: reduce) {
  .ab-landing-screenshot-stack .ab-landing-screenshot-layer {
    transition: none;
    will-change: auto;
  }
}

.ab-landing-nav__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--ab-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ab-text);
  cursor: pointer;
}

.ab-landing-nav__menu-btn svg { display: block; }

@media (min-width: 900px) {
  .ab-landing-nav__links { display: flex; }
  .ab-landing-nav__menu-btn { display: none; }
}

.ab-landing-nav__sign-in {
  border-radius: 999px !important;
  padding: 0.5rem 1.15rem !important;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid var(--ab-border) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--ab-text) !important;
  white-space: nowrap;
}

.ab-landing-nav__sign-in:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

/* Mobile drawer */
.ab-landing-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  visibility: hidden;
}

.ab-landing-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.ab-landing-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ab-landing-drawer.is-open .ab-landing-drawer__backdrop { opacity: 1; }

.ab-landing-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100%;
  padding: 5rem 1.5rem 2rem;
  background: var(--ab-bg-elevated);
  border-left: 1px solid var(--ab-border);
  transform: translateX(100%);
  transition: transform 0.35s var(--lp-ease);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ab-landing-drawer.is-open .ab-landing-drawer__panel { transform: translateX(0); }

.ab-landing-drawer__panel a {
  color: var(--ab-text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ab-border);
}

/* ── Hero ── */
.ab-landing-hero {
  position: relative;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 8vw, 5rem);
  min-height: min(92vh, 900px);
  display: grid;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 960px) {
  .ab-landing-hero {
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    min-height: calc(100vh - 4rem);
  }
}

.ab-landing-hero__inner {
  position: relative;
  z-index: 2;
}

.ab-landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.85rem 0.4rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-gold-light);
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.28);
}

.ab-landing-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-gold);
  box-shadow: 0 0 12px var(--lp-gold);
  animation: lp-pulse 2.5s ease infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.ab-landing-hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--lp-font-display);
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.ab-landing-hero__title em {
  font-style: normal;
  display: block;
  background: linear-gradient(120deg, var(--lp-gold) 0%, #fff4d0 45%, var(--lp-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ab-landing-hero__lead {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  line-height: 1.6;
  color: var(--ab-muted);
  max-width: 32rem;
}

.ab-landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.ab-landing-hero__actions--center { justify-content: center; }

.ab-landing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  border: none !important;
  background: linear-gradient(135deg, #e0bc3a 0%, #b8921f 50%, #8a6d15 100%) !important;
  color: #0a0f18 !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 12px 32px rgba(201, 162, 39, 0.35);
  text-decoration: none;
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease), filter 0.2s ease;
}

.ab-landing-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 16px 40px rgba(201, 162, 39, 0.45);
}

.ab-landing-cta__arrow {
  transition: transform 0.2s var(--lp-ease);
}

.ab-landing-cta:hover .ab-landing-cta__arrow { transform: translateX(3px); }

.ab-landing-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--ab-text) !important;
  border: 1px solid var(--lp-glass-border) !important;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--lp-ease);
}

.ab-landing-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.09) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-1px);
}

.ab-landing-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 28rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ab-landing-hero__stat {
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(12px);
  text-align: center;
}

.ab-landing-hero__stat-value {
  display: block;
  font-family: var(--lp-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ab-text);
  line-height: 1.1;
}

.ab-landing-hero__stat-value--gold {
  background: linear-gradient(135deg, var(--lp-gold), var(--lp-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ab-landing-hero__stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ab-muted);
}

/* Hero visual — device stack */
.ab-landing-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.ab-landing-hero__visual-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.ab-landing-hero__stack {
  position: relative;
  width: min(100%, 520px);
  transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s var(--lp-ease);
}

.ab-landing-hero__stack:hover {
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.ab-landing-hero__stack .ab-ipad {
  width: 100%;
}

.ab-landing-hero__float-card {
  position: absolute;
  z-index: 5;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  background: rgba(15, 26, 46, 0.92);
  border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  animation: lp-float 5s ease-in-out infinite;
}

.ab-landing-hero__float-card--tl {
  top: 8%;
  left: -4%;
  animation-delay: 0s;
}

.ab-landing-hero__float-card--br {
  bottom: 12%;
  right: -2%;
  animation-delay: -2.5s;
}

.ab-landing-hero__float-card strong {
  color: var(--lp-gold);
  font-weight: 700;
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── iPad frame ── */
.ab-ipad {
  position: relative;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(155deg, #3a4556 0%, #1e2634 40%, #121820 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 40px 80px rgba(0, 0, 0, 0.55);
}

.ab-ipad--mini {
  width: min(280px, 100%);
  flex-shrink: 0;
  margin-inline: auto;
}

.ab-ipad__camera {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0a0e14;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.ab-ipad__screen {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ab-bg);
  line-height: 0;
}

.ab-ipad__screen > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.ab-ipad__screen--wide > img {
  aspect-ratio: 16 / 10;
}

.ab-ipad__screen .ab-landing-screenshot-stack {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.ab-ipad__screen--wide .ab-landing-screenshot-stack {
  aspect-ratio: 16 / 10;
}

/* Feature screenshot carousels (logbook, NOTAM, roster, tools) */
.ab-landing-feature-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  outline: none;
}

@media (min-width: 860px) {
  .ab-landing-feature-demo { margin-inline: 0; }
}

.ab-landing-feature-demo__device {
  width: 100%;
}

.ab-landing-feature-demo__screen {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--ab-bg);
}

.ab-landing-feature-demo__screen .ab-landing-feature-demo__slide {
  display: block;
  width: 100%;
  height: 100%;
}

.ab-landing-feature-demo__slide .ab-landing-screenshot-stack {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ab-landing-feature-demo__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.65s var(--lp-ease),
    transform 0.65s var(--lp-ease);
  will-change: opacity, transform;
  pointer-events: none;
}

.ab-landing-feature-demo__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.ab-landing-feature-demo.is-hovering .ab-landing-feature-demo__slide.is-active {
  transform: scale(1.01);
}

.ab-landing-feature-demo__nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ab-border);
}

.ab-landing-feature-demo__tab {
  padding: 0.45rem 0.9rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ab-muted);
  font-family: var(--ab-font);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.ab-landing-feature-demo__tab:hover {
  color: var(--ab-text);
}

.ab-landing-feature-demo__tab.is-active {
  color: var(--ab-text);
  background: rgba(201, 162, 39, 0.18);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.25);
}

.ab-landing-feature-demo__caption {
  margin: 0;
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.4;
  min-height: calc(2 * 1.4 * 0.82rem);
  max-width: 22rem;
}

@media (prefers-reduced-motion: reduce) {
  .ab-landing-feature-demo__slide {
    transition: none;
    transform: none;
  }
}

/* ── Sections ── */
.ab-landing-section {
  position: relative;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 2rem);
}

.ab-landing-section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.ab-landing-section__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-gold);
}

.ab-landing-section__head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--lp-font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.ab-landing-section__head p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ab-muted);
}

/* Scroll reveal — translate only so content stays readable before JS runs */
[data-reveal] {
  transform: translateY(24px);
  transition: transform 0.75s var(--lp-ease);
}

[data-reveal].is-visible {
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transform: none;
    transition: none;
  }
  .ab-landing__orb,
  .ab-landing-hero__float-card,
  .ab-landing-eyebrow__dot { animation: none; }
}

/* ── Features ── */
.ab-landing-features {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 10vw, 7rem);
}

.ab-landing-feature {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .ab-landing-feature {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }

  .ab-landing-feature--reverse .ab-landing-feature__copy { order: 2; }
  .ab-landing-feature--reverse .ab-landing-feature__visual { order: 1; }
}

.ab-landing-feature__index {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--lp-font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--lp-gold);
  opacity: 0.85;
}

.ab-landing-feature h3 {
  margin: 0 0 1rem;
  font-family: var(--lp-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.ab-landing-feature p {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ab-muted);
}

.ab-landing-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  list-style: none;
  padding: 0;
}

.ab-landing-feature__tags li {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ab-border);
  color: var(--ab-muted);
}

.ab-landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.4rem;
  padding: 0.22rem 0.6rem;
  font-family: var(--ab-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--lp-gold-light);
}

.ab-landing-badge img {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  object-fit: contain;
}

.ab-landing-note {
  font-size: 0.88rem !important;
  margin-top: 1rem !important;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--lp-gold);
}

.ab-landing-feature__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.ab-landing-feature__visual-glow {
  position: absolute;
  inset: 10% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 158, 255, 0.12) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.ab-landing-feature__visual-glow--gold {
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
}

.ab-landing-showcase--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.12), transparent 50%),
    var(--ab-bg-elevated);
}

.ab-landing-showcase--icon img {
  width: auto;
  max-width: 140px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

/* ── Tools bento ── */
.ab-landing-section--tools {
  max-width: none;
  padding-inline: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
  border-block: 1px solid var(--ab-border);
}

.ab-landing-section--tools .ab-landing-section__head,
.ab-landing-bento {
  max-width: var(--lp-max);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.ab-landing-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ab-landing-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .ab-landing-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .ab-landing-bento__cell--wide { grid-column: span 2; }
}

.ab-landing-bento__cell {
  position: relative;
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.3s var(--lp-ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.ab-landing-bento__cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ab-landing-bento__cell:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.ab-landing-bento__cell:hover::before { opacity: 1; }

.ab-landing-bento__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  color: var(--lp-gold);
}

.ab-landing-bento__cell h4 {
  position: relative;
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ab-text);
}

.ab-landing-bento__cell p {
  position: relative;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ab-muted);
}

/* ── Pricing ── */
.ab-landing-section--pricing {
  position: relative;
}

.ab-landing-section--pricing::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80vw);
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.ab-landing-pricing {
  position: relative;
  display: grid;
  gap: 1.25rem;
  max-width: 54rem;
  margin: 0 auto;
}

@media (min-width: 720px) {
  .ab-landing-pricing {
    grid-template-columns: 1fr 1.05fr;
    gap: 1.5rem;
    align-items: stretch;
  }
}

.ab-landing-pricing__card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border-radius: 22px;
  border: 1px solid var(--lp-glass-border);
  background: var(--lp-glass);
  backdrop-filter: blur(16px);
  transition: transform 0.3s var(--lp-ease);
}

.ab-landing-pricing__card:hover { transform: translateY(-3px); }

.ab-landing-pricing__card--free {
  border-color: var(--ab-border);
}

.ab-landing-pricing__card--premium {
  position: relative;
  border-color: rgba(201, 162, 39, 0.45);
  background:
    linear-gradient(165deg, rgba(30, 48, 80, 0.85) 0%, rgba(21, 34, 56, 0.9) 100%);
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.15) inset,
    0 24px 64px rgba(0, 0, 0, 0.4);
}

.ab-landing-pricing__card--premium::after {
  content: "Most popular";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--lp-gold-light);
}

.ab-landing-pricing__label {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-gold);
}

.ab-landing-pricing__price {
  margin: 0 0 0.5rem;
  font-family: var(--lp-font-display);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ab-landing-pricing__amount {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ab-landing-pricing__period {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ab-muted);
}

.ab-landing-pricing__tagline {
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--ab-muted);
}

.ab-landing-pricing__list {
  flex: 1;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.ab-landing-pricing__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ab-muted);
}

.ab-landing-pricing__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-gold);
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.5);
}

.ab-landing-pricing__cta {
  width: 100%;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  justify-content: center;
}

.ab-landing-pricing__footnote {
  position: relative;
  margin: 2rem auto 0;
  max-width: 38rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ── Sync ── */
.ab-landing-sync {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
    var(--lp-glass);
  border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(12px);
}

@media (min-width: 900px) {
  .ab-landing-sync { grid-template-columns: 1fr 1fr; }
}

.ab-landing-sync h2 {
  margin: 0 0 0.85rem;
  font-family: var(--lp-font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ab-landing-sync p {
  margin: 0 0 1.25rem;
  line-height: 1.6;
  color: var(--ab-muted);
}

.ab-landing-sync__list {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.ab-landing-sync__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--ab-muted);
  line-height: 1.5;
}

.ab-landing-sync__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lp-gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.ab-landing-sync__list a {
  color: var(--lp-gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}

.ab-landing-sync__list a:hover { border-bottom-color: var(--lp-gold); }

.ab-landing-sync__devices {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
}

.ab-landing-sync__devices .ab-landing-showcase {
  width: 85%;
  transform: rotate(-2deg);
  transition: transform 0.4s var(--lp-ease);
}

.ab-landing-sync__devices:hover .ab-landing-showcase {
  transform: rotate(0deg);
}

/* ── Final CTA band ── */
.ab-landing-cta-band {
  position: relative;
  text-align: center;
  max-width: none;
  margin: 0;
  padding: clamp(4rem, 10vw, 6rem) clamp(1.25rem, 4vw, 2rem);
  overflow: hidden;
}

.ab-landing-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(201, 162, 39, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.ab-landing-cta-band__inner {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
}

.ab-landing-cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--lp-font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ab-landing-cta-band p {
  margin: 0 0 2rem;
  font-size: 1.08rem;
  color: var(--ab-muted);
  line-height: 1.55;
}

/* ── Footer ── */
.ab-landing-footer {
  margin-top: auto;
  padding: 2.5rem clamp(1.25rem, 4vw, 2rem) 3rem;
  border-top: 1px solid var(--ab-border);
  max-width: var(--lp-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.ab-landing-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ab-landing-footer__brand {
  margin: 0;
  font-weight: 600;
}

.ab-landing-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

.ab-landing-footer__links a {
  color: var(--ab-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.ab-landing-footer__links a:hover { color: var(--lp-gold); }

.ab-landing-footer__disclaimer {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 44rem;
  color: var(--ab-muted);
  opacity: 0.85;
}
