/* ============================================================
   landing.css — ucp.travel marketing page
   Isolated. Only loaded by index.html.
   All tokens from variables.css — no new custom properties.
   ============================================================ */

/* ── Display font ── */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600&display=swap");

/* ── Page base ── */
.lp {
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* ── NAV ── */
.lnav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
}

.lnav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.lnav__logo { width: 26px; height: 26px; }

.lnav__name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.lnav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lnav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}

.lnav__link:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.lnav__actions { display: flex; align-items: center; gap: 10px; }

.lnav__demo {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), color var(--transition);
}

.lnav__demo:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.lnav__access {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.lnav__access:hover { background: var(--accent-hover); color: #fff; }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 148px 48px 96px;
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: center;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 15, 33, 0.32) 0%, rgba(4, 15, 33, 0.58) 36%, rgba(4, 15, 33, 0.82) 100%),
    linear-gradient(120deg, rgba(255, 176, 65, 0.20) 0%, rgba(255, 176, 65, 0.04) 28%, rgba(12, 38, 68, 0.28) 62%, rgba(4, 15, 33, 0.74) 100%),
    url("/images/hero-flight-booking.png");
  background-position: center 18%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.24);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left bottom, rgba(255, 181, 72, 0.26), transparent 36%),
    radial-gradient(circle at top right, rgba(47, 125, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.45;
  text-align: center;
  color: #f3f8ff;
  background: rgba(245, 249, 255, 0.12);
  border: 1px solid rgba(183, 209, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  margin-bottom: 32px;
  max-width: 100%;
  opacity: 0;
  animation: lp-rise 0.6s ease 0.1s both;
}

.hero__label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #8fb6ff;
  animation: lp-pulse 2.4s ease-in-out infinite;
}

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

.hero__title {
  font-family: 'Sora', var(--font-body);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 12px;
  text-shadow: 0 10px 35px rgba(4, 15, 33, 0.4);
  opacity: 0;
  animation: lp-rise 0.7s ease 0.2s both;
}

.hero__title em {
  
  font-weight: 300;
  color: var(--accent);
}

.hero__subtitle {
  font-family: 'Sora', var(--font-body);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 300;
  
  color: rgba(243, 248, 255, 0.86);
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  opacity: 0;
  animation: lp-rise 0.7s ease 0.3s both;
}

.hero__body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(243, 248, 255, 0.84);
  max-width: 580px;
  margin: 0 auto 44px;
  text-shadow: 0 6px 18px rgba(4, 15, 33, 0.28);
  opacity: 0;
  animation: lp-rise 0.7s ease 0.35s both;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: lp-rise 0.6s ease 0.45s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-md);
  padding: 13px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #f5f8ff;
  background: rgba(245, 249, 255, 0.08);
  border: 1px solid rgba(245, 249, 255, 0.26);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 12px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.btn-secondary:hover {
  border-color: rgba(245, 249, 255, 0.52);
  color: #fff;
  background: rgba(245, 249, 255, 0.14);
}

@keyframes lp-rise {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── FLOW VISUALIZATION ── */
.flow-wrap {
  padding: 0 48px 96px;
  max-width: 1180px;
  margin: 0 auto;
  opacity: 0;
  animation: lp-rise 0.8s ease 0.6s both;
}

.flow-with-phone {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.flow-with-phone .flow {
  flex: 1 1 auto;
  min-width: 0;
}

.flow-phone {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.phone-mock {
  --phone-width: 260px;
  --phone-height: 563px;
  --embed-scale: 0.609;
  --embed-overscan: 164.2%;
  position: relative;
  width: var(--phone-width);
  height: var(--phone-height);
  background: #1a1a1a;
  border-radius: 44px;
  box-shadow:
    0 0 0 1px #3a3a3a,
    0 0 0 9px #1a1a1a,
    0 0 0 10px #3a3a3a,
    0 40px 100px rgba(0, 0, 0, 0.5);
}

.phone-mock::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 110px;
  width: 4px;
  height: 28px;
  background: #2a2a2a;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 42px 0 #2a2a2a, 0 80px 0 #2a2a2a;
}

.phone-mock::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 140px;
  width: 4px;
  height: 56px;
  background: #2a2a2a;
  border-radius: 0 2px 2px 0;
}

.phone-mock__screen {
  position: absolute;
  inset: 10px;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
}

.phone-mock__island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 20;
}

.phone-mock__statusbar {
  position: absolute;
  inset: 0 0 auto 0;
  height: 44px;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 18px 7px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

.phone-mock__time {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.2px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

.phone-mock__icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-mock__icons svg {
  fill: #fff;
}

.phone-mock__content {
  position: absolute;
  inset: 0;
}

.phone-mock__content iframe {
  width: var(--embed-overscan);
  height: var(--embed-overscan);
  border: none;
  transform-origin: top left;
  transform: scale(var(--embed-scale));
}

.phone-mock__home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  z-index: 10;
}

.phone-mock__glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  border-radius: 36px;
  pointer-events: none;
  z-index: 5;
}

.flow__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.flow__dots { display: flex; gap: 6px; }
.flow__dot  { width:10px; height:10px; border-radius:50%; background:var(--border); }
.flow__dot:nth-child(1) { background:#ff5f57; }
.flow__dot:nth-child(2) { background:#febc2e; }
.flow__dot:nth-child(3) { background:#28c840; }

.flow__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.flow__confirmed {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--success);
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: var(--radius-pill);
  padding: 2px 9px;
}

.flow__confirmed::before {
  content:'';
  width:5px; height:5px;
  border-radius:50%;
  background: var(--success-dot);
}

.flow__body { padding: 28px 28px 20px; }

.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow__step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  opacity: 0;
  animation: lp-rise 0.5s ease both;
}

.flow__step:last-child { border-bottom: none; }
.flow__step:nth-child(1) { animation-delay: 0.8s; }
.flow__step:nth-child(2) { animation-delay: 1.0s; }
.flow__step:nth-child(3) { animation-delay: 1.2s; }
.flow__step:nth-child(4) { animation-delay: 1.4s; }
.flow__step:nth-child(5) { animation-delay: 1.6s; }
.flow__step:nth-child(6) { animation-delay: 1.8s; }

.flow__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
  margin-top: 1px;
}

.flow__step--done .flow__num {
  background: var(--success-bg);
  border-color: var(--success-border);
  color: var(--success);
}

.flow__step--active .flow__num {
  background: var(--accent-subtle);
  border-color: var(--accent-muted);
  color: var(--accent);
}

.flow__content {}

.flow__action {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.flow__detail {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.flow__result {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
}

/* ── DIVIDER ── */
.lp-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0;
}

/* ── SECTION LAYOUT ── */
.lp-section {
  padding: 100px 48px;
  max-width: 1080px;
  margin: 0 auto;
}

.lp-section--shaded {
  max-width: 100%;
  padding: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.lp-section--shaded .lp-section-inner {
  padding: 100px 48px;
  max-width: 1080px;
  margin: 0 auto;
}

.lp-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.lp-section__title {
  font-family: 'Sora', var(--font-body);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 0 0 18px;
}

.lp-section__title em {
  
  color: var(--accent);
}

.lp-section__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ── GAP (missing layer) ── */
.gap-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}

.gap-col__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 20px;
}

.gap-col__label--without {
  color: var(--danger);
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
}

.gap-col__label--with {
  color: var(--success);
  background: var(--success-bg);
  border: 1px solid var(--success-border);
}

.gap-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gap-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.gap-list__icon { flex-shrink:0; font-size:14px; margin-top:1px; }

/* ── AUDIENCE CARDS ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}

.audience-card {
  padding: 36px 32px;
  background: var(--bg-primary);
  transition: background var(--transition);
}

.audience-card:hover { background: var(--bg-secondary); }

.audience-card__title {
  font-family: 'Sora', var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.audience-card__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ── GOVERNANCE ── */
.governance-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}

.governance-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.governance-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background var(--transition);
}

.governance-list li:last-child { border-bottom: none; }
.governance-list li:hover { background: var(--bg-secondary); }

.governance-list__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--success);
  flex-shrink: 0;
}

.governance-copy {}

.governance-copy__title {
  font-family: 'Sora', var(--font-body);
  font-size: 1.6rem;
  font-weight: 300;
  
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.governance-copy__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── HOW IT WORKS ── */
.steps-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}

.step-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.step-row:last-child { border-bottom: none; }

.step-row__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.step-row__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-row__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── UNIFIED LAYER ── */
.unified-box {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.unified-box__top {
  padding: 40px 40px 36px;
  background: var(--bg-primary);
}

.unified-box__headline {
  font-family: 'Sora', var(--font-body);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.unified-box__sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
}

.unified-box__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

.unified-col {
  padding: 28px 28px 24px;
  background: var(--bg-secondary);
}

.unified-col__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.unified-col__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.unified-col__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── CTA SECTION ── */
.lp-cta {
  padding: 112px 48px;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.lp-cta__inner { max-width: 560px; margin: 0 auto; }

.lp-cta__title {
  font-family: 'Sora', var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
}

.lp-cta__title em {  color: var(--accent); }

.lp-cta__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.lp-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lp-cta__actions .btn-secondary {
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lp-cta__actions .btn-secondary:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: var(--bg-secondary);
}

/* ── FOOTER ── */
.lfooter {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}

.lfooter__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lfooter__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.lfooter__details {
  margin-top: 10px;
  display: grid;
  gap: 4px;
}

.lfooter__details,
.lfooter__details a {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  text-decoration: none;
}

.lfooter__details a:hover {
  color: var(--text-secondary);
}

.lfooter__name {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.lfooter__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.lfooter__links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.lfooter__links a:hover { color: var(--text-secondary); }

.lfooter__copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .lnav { padding: 0 20px; }
  .lnav__links { display: none; }

  .hero {
    max-width: 1100px;
    width: auto;
    margin: 18px 16px 0;
    padding: 120px 24px 72px;
    border-radius: 28px;
    background-position: 68% 28%;
    background-size: cover;
  }
  .flow-wrap { padding: 0 24px 72px; }
  .flow-with-phone { gap: 36px; }

  .lp-section { padding: 72px 24px; }
  .lp-section--shaded .lp-section-inner { padding: 72px 24px; }

  .gap-layout { grid-template-columns: 1fr; gap: 32px; }
  .audience-grid { grid-template-columns: 1fr; }
  .governance-layout { grid-template-columns: 1fr; gap: 40px; }
  .unified-box__row { grid-template-columns: 1fr; }
  .unified-box__top { padding: 28px 24px; }

  .lp-cta { padding: 80px 24px; }
  .lfooter { padding: 32px 24px; }
  .lfooter__inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 600px) {
  .lnav {
    height: auto;
    min-height: 60px;
    padding: 10px 14px;
    gap: 10px;
  }

  .lnav__brand {
    gap: 8px;
    min-width: 0;
  }

  .lnav__name {
    font-size: 12px;
  }

  .lnav__actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .lnav__demo,
  .lnav__access {
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero__label {
    width: 100%;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .hero {
    width: auto;
    margin: 12px 12px 0;
    padding: 108px 18px 60px;
    border-radius: 24px;
    background-position: 72% center;
    background-size: cover;
  }

  .hero__title { font-size: 2.6rem; }
  .lp-section__title { font-size: 1.8rem; }
  .lp-cta__title { font-size: 2rem; }
}

@media (max-width: 768px) {
  .flow-with-phone {
    flex-direction: column;
    gap: 28px;
  }

  .flow-phone {
    order: -1;
    width: 100%;
    margin-top: 18px;
  }

  .phone-mock {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .phone-mock {
    --phone-width: 220px;
    --phone-height: 476px;
    --embed-scale: 0.5063;
    --embed-overscan: 197.5%;
  }
}

@media (max-width: 360px) {
  .phone-mock {
    --phone-width: 200px;
    --phone-height: 433px;
    --embed-scale: 0.4557;
    --embed-overscan: 219.4%;
  }
}

.accent-text { color: var(--accent); }
