/* MC Scout Pro public landing V3 — scoped, framework-free, real product screens. */

.landing-page {
  --lv3-bg: #f4f7fb;
  --lv3-bg-soft: #eaf0f7;
  --lv3-surface: rgba(255, 255, 255, .92);
  --lv3-surface-solid: #ffffff;
  --lv3-surface-soft: #eef4f8;
  --lv3-ink: #0b1b31;
  --lv3-copy: #43556f;
  --lv3-muted: #6c7b91;
  --lv3-line: rgba(49, 76, 108, .14);
  --lv3-line-strong: rgba(45, 86, 120, .23);
  --lv3-brand: #0abf99;
  --lv3-brand-strong: #078c73;
  --lv3-brand-soft: rgba(10, 191, 153, .1);
  --lv3-blue: #3979e9;
  --lv3-indigo: #6768e8;
  --lv3-navy: #06172b;
  --lv3-navy-soft: #0a263a;
  --lv3-focus: rgba(30, 151, 226, .48);
  --lv3-shadow-sm: 0 10px 30px rgba(23, 48, 78, .07);
  --lv3-shadow: 0 24px 70px rgba(15, 39, 68, .12);
  --lv3-radius-sm: 14px;
  --lv3-radius: 24px;
  --lv3-radius-lg: 34px;
  margin: 0;
  overflow-x: clip;
  color: var(--lv3-ink);
  background:
    radial-gradient(circle at 3% 5%, rgba(42, 191, 166, .13), transparent 24rem),
    radial-gradient(circle at 95% 12%, rgba(83, 105, 232, .12), transparent 30rem),
    var(--lv3-bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

html[data-theme="dark"] .landing-page {
  --lv3-bg: #06111f;
  --lv3-bg-soft: #081827;
  --lv3-surface: rgba(9, 24, 40, .9);
  --lv3-surface-solid: #0a1b2d;
  --lv3-surface-soft: #10243a;
  --lv3-ink: #f2f7ff;
  --lv3-copy: #b7c7da;
  --lv3-muted: #8da0b7;
  --lv3-line: rgba(151, 183, 214, .16);
  --lv3-line-strong: rgba(142, 186, 224, .27);
  --lv3-brand: #3cdbb8;
  --lv3-brand-strong: #63ebcb;
  --lv3-brand-soft: rgba(60, 219, 184, .11);
  --lv3-blue: #6aa8ff;
  --lv3-indigo: #8f88ff;
  --lv3-focus: rgba(89, 206, 231, .55);
  --lv3-shadow-sm: 0 12px 34px rgba(0, 0, 0, .18);
  --lv3-shadow: 0 28px 76px rgba(0, 0, 0, .28);
  background:
    radial-gradient(circle at 2% 5%, rgba(20, 169, 145, .14), transparent 26rem),
    radial-gradient(circle at 94% 8%, rgba(87, 95, 214, .15), transparent 31rem),
    var(--lv3-bg);
}

.landing-page,
.landing-page *,
.landing-page *::before,
.landing-page *::after { box-sizing: border-box; }

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p { margin: 0; }

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  color: var(--lv3-ink);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.landing-page a { color: inherit; text-decoration: none; }
.landing-page img { display: block; max-width: 100%; }
.landing-page button,
.landing-page input { font: inherit; }
.landing-page button { color: inherit; }
.landing-page [hidden] { display: none; }

.landing-page :focus-visible {
  outline: 3px solid var(--lv3-focus);
  outline-offset: 3px;
}

.lv3-skip {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: #06253d;
  transform: translateY(-160%);
}

.lv3-skip:focus { transform: translateY(0); }

.lv3-wrap {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.lv3-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--lv3-line);
  background: color-mix(in srgb, var(--lv3-bg) 84%, transparent);
  backdrop-filter: blur(20px) saturate(125%);
}

.lv3-nav {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px;
  border: 1px solid var(--lv3-line);
  border-radius: 20px;
  background: var(--lv3-surface);
  box-shadow: var(--lv3-shadow-sm);
}

.lv3-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-inline: 8px 14px;
  white-space: nowrap;
}

.lv3-brand img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--lv3-line);
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.lv3-brand strong,
.lv3-brand small { display: block; }
.lv3-brand strong { font-size: .98rem; letter-spacing: -.03em; }
.lv3-brand small { color: var(--lv3-brand-strong); font-size: .57rem; font-weight: 850; letter-spacing: .14em; }

.lv3-nav-links {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.lv3-nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 11px;
  color: var(--lv3-copy);
  font-size: .76rem;
  font-weight: 750;
  transition: color .18s ease, background-color .18s ease;
}

.lv3-nav-links a:hover { color: var(--lv3-ink); background: var(--lv3-brand-soft); }

.lv3-nav-actions { display: flex; align-items: center; gap: 7px; }

.lv3-button,
.lv3-icon-button,
.lv3-menu-button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.lv3-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  font-size: .82rem;
  font-weight: 800;
}

.lv3-button:hover,
.lv3-icon-button:hover,
.lv3-menu-button:hover { transform: translateY(-1px); }
.lv3-button:active,
.lv3-icon-button:active,
.lv3-menu-button:active { transform: translateY(0); }

.lv3-button-primary {
  color: #031b18;
  background: linear-gradient(135deg, #61e4c4, #25c9aa 58%, #63bde9);
  box-shadow: 0 12px 28px rgba(15, 185, 152, .22);
}

.lv3-button-secondary {
  border-color: var(--lv3-line-strong);
  color: var(--lv3-ink);
  background: var(--lv3-surface-solid);
}

.lv3-button-dark {
  border-color: rgba(120, 205, 201, .24);
  color: #eefaff;
  background: rgba(9, 35, 53, .86);
}

.lv3-button-lg { min-height: 52px; padding-inline: 24px; font-size: .9rem; }

.lv3-icon-button,
.lv3-menu-button {
  width: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-color: var(--lv3-line);
  background: var(--lv3-surface-solid);
}

.lv3-icon-button svg,
.lv3-menu-button svg { width: 19px; height: 19px; }
.lv3-menu-button { display: none; }

.lv3-hero {
  position: relative;
  padding: clamp(62px, 7vw, 102px) 0 54px;
}

.lv3-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.lv3-eyebrow,
.lv3-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lv3-brand-strong);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lv3-eyebrow::before,
.lv3-section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lv3-brand);
  box-shadow: 0 0 0 6px var(--lv3-brand-soft);
}

.lv3-hero h1 {
  max-width: 10ch;
  margin-top: 20px;
  font-size: clamp(3rem, 6.1vw, 5.65rem);
  text-wrap: balance;
}

.lv3-hero-copy > p {
  max-width: 56ch;
  margin-top: 23px;
  color: var(--lv3-copy);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.lv3-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.lv3-hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  color: var(--lv3-muted);
  font-size: .75rem;
}

.lv3-hero-note svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--lv3-brand-strong); }

.lv3-hero-visual { position: relative; min-width: 0; padding: 20px 0 64px; }
.lv3-orbit {
  position: absolute;
  inset: 0 5% 8% 12%;
  border: 1px solid color-mix(in srgb, var(--lv3-blue) 14%, transparent);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}
.lv3-orbit::before,
.lv3-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lv3-brand);
  box-shadow: 0 0 22px rgba(42, 217, 184, .68);
}
.lv3-orbit::before { top: 12%; left: 18%; }
.lv3-orbit::after { right: 12%; bottom: 18%; }

.lv3-browser-frame,
.lv3-phone-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lv3-line-strong);
  background: var(--lv3-surface-solid);
  box-shadow: var(--lv3-shadow);
}

.lv3-browser-frame { border-radius: 22px; padding: 9px; }
.lv3-browser-frame::before {
  content: "";
  display: block;
  width: 48px;
  height: 8px;
  margin: 1px 0 8px 4px;
  background: radial-gradient(circle, #91a0b5 0 2px, transparent 2.5px) 0 0 / 14px 8px;
  opacity: .7;
}
.lv3-browser-frame picture,
.lv3-browser-frame img { width: 100%; }
.lv3-browser-frame img { border-radius: 13px; object-fit: contain; }

.lv3-hero-phone {
  position: absolute;
  z-index: 3;
  right: -10px;
  bottom: 0;
  width: min(31%, 210px);
  padding: 6px;
  border-radius: 26px;
  transform: rotate(2deg);
}
.lv3-hero-phone img { width: 100%; border-radius: 20px; object-fit: contain; }

.lv3-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--lv3-line);
  border-radius: 20px;
  background: var(--lv3-line);
  box-shadow: var(--lv3-shadow-sm);
}

.lv3-proof-item {
  min-width: 0;
  padding: 20px;
  background: var(--lv3-surface);
}
.lv3-proof-item strong { display: block; color: var(--lv3-ink); font-size: .88rem; }
.lv3-proof-item span { display: block; margin-top: 3px; color: var(--lv3-muted); font-size: .7rem; }

.lv3-section { padding: clamp(64px, 8vw, 112px) 0; }
.lv3-section-soft { background: color-mix(in srgb, var(--lv3-surface-soft) 54%, transparent); }

.lv3-section-head {
  max-width: 740px;
  margin-bottom: 35px;
}
.lv3-section-head-center { margin-inline: auto; text-align: center; }
.lv3-section-head-center .lv3-section-kicker { justify-content: center; }
.lv3-section-head h2 {
  margin-top: 15px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  text-wrap: balance;
}
.lv3-section-head p { margin-top: 15px; color: var(--lv3-copy); }

.lv3-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.lv3-journey-card,
.lv3-pillar,
.lv3-price-card,
.lv3-faq details {
  border: 1px solid var(--lv3-line);
  background: var(--lv3-surface);
  box-shadow: var(--lv3-shadow-sm);
}
.lv3-journey-card { position: relative; padding: 26px; border-radius: 22px; }
.lv3-step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lv3-line-strong);
  border-radius: 13px;
  color: var(--lv3-brand-strong);
  background: var(--lv3-brand-soft);
  font-size: .77rem;
  font-weight: 900;
}
.lv3-journey-card h3 { margin-top: 22px; font-size: 1.23rem; }
.lv3-journey-card p { margin-top: 10px; color: var(--lv3-copy); font-size: .84rem; }

.lv3-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 74px);
}
.lv3-feature-grid + .lv3-feature-grid { margin-top: clamp(54px, 8vw, 104px); }
.lv3-feature-grid-reverse .lv3-feature-copy { order: 2; }
.lv3-feature-grid-reverse .lv3-feature-visual { order: 1; }

.lv3-feature-copy h2 { margin-top: 14px; font-size: clamp(2rem, 3.7vw, 3.35rem); }
.lv3-feature-copy > p { margin-top: 16px; color: var(--lv3-copy); }
.lv3-bullets { display: grid; gap: 12px; margin-top: 24px; }
.lv3-bullet { display: grid; grid-template-columns: 22px 1fr; gap: 11px; color: var(--lv3-copy); font-size: .83rem; }
.lv3-bullet svg { width: 21px; height: 21px; color: var(--lv3-brand-strong); }

.lv3-feature-visual { min-width: 0; }
.lv3-feature-visual .lv3-browser-frame { width: 100%; }
.lv3-secondary-shot { width: 74%; margin: -11% 0 0 auto; transform: translateX(3%); }

.lv3-shot-button {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: zoom-in;
}
.lv3-shot-button img { width: 100%; height: auto; object-fit: contain; }

.lv3-live-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(91, 215, 194, .19);
  border-radius: var(--lv3-radius-lg);
  color: #eaf6ff;
  background:
    radial-gradient(circle at 92% 12%, rgba(19, 201, 169, .21), transparent 24rem),
    radial-gradient(circle at 8% 90%, rgba(80, 101, 238, .2), transparent 28rem),
    #06182a;
  box-shadow: 0 34px 90px rgba(4, 21, 39, .22);
}
.lv3-live-shell .lv3-section-kicker { color: #51e4c5; }
.lv3-live-shell h2 { color: #f4fbff; }
.lv3-live-shell .lv3-feature-copy > p,
.lv3-live-shell .lv3-bullet { color: #b7c8d9; }
.lv3-live-shell .lv3-browser-frame { border-color: rgba(144, 192, 221, .2); background: rgba(236, 247, 255, .96); }

.lv3-command-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.lv3-command-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--lv3-line);
  border-radius: 25px;
  background: var(--lv3-surface);
  box-shadow: var(--lv3-shadow-sm);
}
.lv3-command-copy { padding: 23px 23px 18px; }
.lv3-command-copy span { color: var(--lv3-brand-strong); font-size: .65rem; font-weight: 900; letter-spacing: .13em; }
.lv3-command-copy h3 { margin-top: 8px; font-size: 1.25rem; }
.lv3-command-copy p { margin-top: 9px; color: var(--lv3-copy); font-size: .78rem; }
.lv3-mobile-frame {
  width: calc(100% - 28px);
  margin: auto 14px 14px;
  overflow: hidden;
  border: 1px solid var(--lv3-line-strong);
  border-radius: 19px;
  background: #071728;
}
.lv3-mobile-frame img { width: 100%; height: auto; object-fit: contain; }

.lv3-pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.lv3-pillar { padding: 24px; border-radius: 20px; }
.lv3-pillar-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--lv3-brand-strong);
  background: var(--lv3-brand-soft);
}
.lv3-pillar-icon svg { width: 21px; height: 21px; }
.lv3-pillar h3 { margin-top: 19px; font-size: 1.02rem; }
.lv3-pillar p { margin-top: 8px; color: var(--lv3-copy); font-size: .76rem; }

.lv3-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-bottom: 22px;
}
.lv3-gallery-tab {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--lv3-line);
  border-radius: 999px;
  color: var(--lv3-copy);
  background: var(--lv3-surface);
  font-size: .73rem;
  font-weight: 800;
  cursor: pointer;
}
.lv3-gallery-tab[aria-selected="true"] { border-color: rgba(10, 191, 153, .35); color: var(--lv3-brand-strong); background: var(--lv3-brand-soft); }
.lv3-gallery-stage { min-width: 0; }
.lv3-gallery-panel { animation: lv3-reveal .28s ease both; }
.lv3-gallery-panel .lv3-browser-frame { max-width: 1080px; margin-inline: auto; }
.lv3-gallery-panel .lv3-mobile-frame { width: min(420px, 100%); margin-inline: auto; }

.lv3-auth-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--lv3-line-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 10%, rgba(89, 107, 230, .13), transparent 23rem),
    var(--lv3-surface);
  box-shadow: var(--lv3-shadow);
}
.lv3-auth-promo h2 { max-width: 14ch; margin-top: 13px; font-size: clamp(2rem, 4vw, 3.35rem); }
.lv3-auth-promo p { max-width: 60ch; margin-top: 13px; color: var(--lv3-copy); }
.lv3-auth-points { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.lv3-auth-points span { padding: 7px 10px; border: 1px solid var(--lv3-line); border-radius: 999px; color: var(--lv3-copy); font-size: .68rem; font-weight: 750; background: var(--lv3-surface-soft); }

.lv3-pricing-head { margin-top: clamp(72px, 9vw, 120px); }
.lv3-prices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.lv3-price-card { position: relative; display: flex; flex-direction: column; padding: 28px; border-radius: 24px; }
.lv3-price-card[data-featured="true"] { border-color: rgba(10, 191, 153, .46); box-shadow: 0 22px 60px rgba(9, 169, 139, .13); }
.lv3-price-label { color: var(--lv3-brand-strong); font-size: .69rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.lv3-price-old { min-height: 24px; margin-top: 22px; color: var(--lv3-muted); font-size: .82rem; text-decoration: line-through; }
.lv3-price { margin-top: 2px; color: var(--lv3-ink); font-size: clamp(1.75rem, 3.2vw, 2.55rem); font-weight: 900; letter-spacing: -.05em; }
.lv3-price-period { color: var(--lv3-muted); font-size: .73rem; }
.lv3-price-list { display: grid; gap: 10px; margin: 24px 0 26px; padding: 0; list-style: none; color: var(--lv3-copy); font-size: .76rem; }
.lv3-price-list li { display: grid; grid-template-columns: 16px 1fr; gap: 8px; }
.lv3-price-list li::before { content: "✓"; color: var(--lv3-brand-strong); font-weight: 900; }
.lv3-price-card .lv3-button { width: 100%; margin-top: auto; }

.lv3-responsible {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 25px;
  border: 1px solid rgba(211, 157, 49, .26);
  border-radius: 22px;
  background: color-mix(in srgb, #f3bd4e 8%, var(--lv3-surface));
}
.lv3-responsible-spaced { margin-top: 22px; }
.lv3-responsible-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: #8b640f; background: rgba(234, 177, 53, .17); }
.lv3-responsible-icon svg { width: 24px; height: 24px; }
.lv3-responsible h3 { font-size: 1.08rem; }
.lv3-responsible p { margin-top: 8px; color: var(--lv3-copy); font-size: .8rem; }

.lv3-faq { max-width: 860px; display: grid; gap: 10px; margin-inline: auto; }
.lv3-faq details { border-radius: 17px; }
.lv3-faq summary { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 20px; color: var(--lv3-ink); font-size: .86rem; font-weight: 800; cursor: pointer; list-style: none; }
.lv3-faq summary::-webkit-details-marker { display: none; }
.lv3-faq summary::after { content: "+"; color: var(--lv3-brand-strong); font-size: 1.3rem; font-weight: 500; }
.lv3-faq details[open] summary::after { content: "−"; }
.lv3-faq details p { padding: 0 20px 20px; color: var(--lv3-copy); font-size: .8rem; }

.lv3-final {
  overflow: hidden;
  padding: clamp(38px, 7vw, 72px);
  border-radius: 32px;
  color: #eaf8ff;
  background:
    radial-gradient(circle at 82% 0%, rgba(59, 222, 187, .25), transparent 20rem),
    radial-gradient(circle at 8% 100%, rgba(99, 100, 229, .23), transparent 26rem),
    #06182a;
  text-align: center;
}
.lv3-final h2 { max-width: 15ch; margin: 0 auto; color: #f5fbff; font-size: clamp(2.2rem, 5vw, 4rem); }
.lv3-final p { max-width: 58ch; margin: 18px auto 0; color: #b9c9d8; }
.lv3-final .lv3-hero-actions { justify-content: center; }

.lv3-footer { padding: 34px 0 44px; border-top: 1px solid var(--lv3-line); }
.lv3-footer-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.lv3-footer-copy { color: var(--lv3-muted); font-size: .7rem; }
.lv3-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; color: var(--lv3-copy); font-size: .72rem; font-weight: 750; }
.lv3-footer-links a:hover { color: var(--lv3-brand-strong); }

.lv3-zoom {
  width: min(1360px, calc(100vw - 28px));
  max-height: calc(100dvh - 28px);
  padding: 48px 12px 12px;
  overflow: auto;
  border: 1px solid var(--lv3-line-strong);
  border-radius: 22px;
  color: var(--lv3-ink);
  background: var(--lv3-surface-solid);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .38);
}
.lv3-zoom::backdrop { background: rgba(3, 13, 25, .76); backdrop-filter: blur(10px); }
.lv3-zoom img { width: 100%; height: auto; max-height: calc(100dvh - 92px); object-fit: contain; }
.lv3-zoom-close { position: absolute; top: 8px; right: 8px; }

/* Passwordless auth: same API flow, V3 visual shell. */
.landing-page.auth-open { overflow: hidden; }
.landing-page .modal-bg {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 13, 25, .76);
  backdrop-filter: blur(14px);
}
.landing-page .modal-bg.show { display: flex; }
.landing-page .modal {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100dvh - 30px);
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(360px, 1.12fr);
  overflow: auto;
  border: 1px solid rgba(119, 170, 205, .25);
  border-radius: 28px;
  background: #071727;
  box-shadow: 0 38px 120px rgba(1, 10, 22, .5);
}
.landing-page .modal-close {
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  color: #edf7ff;
  background: rgba(5, 25, 43, .72);
  font-size: 1.3rem;
  cursor: pointer;
}
.landing-page .mc-auth-visual {
  position: relative;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 42px;
  color: #eef9ff;
  background:
    radial-gradient(circle at 45% 20%, rgba(55, 225, 189, .26), transparent 28%),
    radial-gradient(circle at 85% 78%, rgba(98, 103, 232, .34), transparent 34%),
    linear-gradient(145deg, #07192c, #08354a 53%, #18265b);
}
.landing-page .mc-auth-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: linear-gradient(rgba(132, 190, 226, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(132, 190, 226, .12) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: perspective(620px) rotateX(60deg) translateY(29%);
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 86%, transparent);
}
.landing-page .auth-visual-brand,
.landing-page .auth-visual-copy,
.landing-page .auth-visual-points { position: relative; z-index: 1; }
.landing-page .auth-visual-brand { position: absolute; top: 36px; left: 36px; display: flex; align-items: center; gap: 12px; }
.landing-page .auth-visual-brand img { width: 52px; height: 52px; border-radius: 15px; background: #fff; object-fit: contain; }
.landing-page .auth-visual-brand span,
.landing-page .auth-visual-brand strong,
.landing-page .auth-visual-brand small { display: block; }
.landing-page .auth-visual-brand strong { color: #fff; font-size: 1rem; }
.landing-page .auth-visual-brand small { color: #6ce9cc; font-size: .59rem; font-weight: 850; letter-spacing: .15em; }
.landing-page .auth-visual-copy > span { color: #66e6c9; font-size: .63rem; font-weight: 900; letter-spacing: .15em; }
.landing-page .auth-visual-copy h3 { max-width: 12ch; margin: 8px 0 12px; color: #fff; font-size: clamp(1.9rem, 3vw, 2.65rem); }
.landing-page .auth-visual-copy p { max-width: 38ch; color: #b5c7d8; font-size: .82rem; }
.landing-page .auth-visual-points { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.landing-page .auth-visual-points span { padding: 7px 9px; border: 1px solid rgba(120, 186, 214, .2); border-radius: 999px; color: #c9d7e4; background: rgba(5, 25, 43, .54); font-size: .62rem; font-weight: 750; }
.landing-page .mc-auth-panel { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 46px; color: #eff7ff; background: #071727; }
.landing-page .mc-auth-panel > h3 { padding-right: 42px; color: #eff7ff; font-size: 1.8rem; }
.landing-page .mc-auth-panel .msub { margin: 8px 0 22px; color: #9fb2c7; font-size: .84rem; }
.landing-page .mc-auth-view-host,
.landing-page .mc-auth-view-host form { min-width: 0; }
.landing-page .field { display: grid; gap: 7px; margin-bottom: 12px; }
.landing-page .field label { color: #c6d4e2; font-size: .71rem; font-weight: 750; }
.landing-page .field input,
.landing-page .mc-otp-input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(140, 176, 207, .22);
  border-radius: 12px;
  color: #f2f8ff;
  background: rgba(15, 38, 61, .82);
}
.landing-page .field input:focus,
.landing-page .mc-otp-input:focus { border-color: #50dcb9; outline: 3px solid rgba(80, 220, 185, .16); }
.landing-page .kvkk-check { display: grid; grid-template-columns: 18px 1fr; gap: 9px; color: #9fb2c7; font-size: .67rem; }
.landing-page .kvkk-check input { width: 17px; height: 17px; accent-color: #35d2ae; }
.landing-page .kvkk-check a,
.landing-page .kvkk-text a { color: #67e5c7; }
.landing-page .kvkk-text { max-height: 110px; overflow: auto; margin: 9px 0; padding: 10px; border-radius: 10px; color: #9fb2c7; background: rgba(11, 34, 55, .72); font-size: .63rem; }
.landing-page .msg { min-height: 20px; margin: 8px 0; color: #9fb2c7; font-size: .7rem; }
.landing-page .msg.err { color: #ff9da8; }
.landing-page .msg.ok { color: #6fe4c8; }
.landing-page .mc-auth-submit { width: 100%; }
.landing-page .mc-auth-submit:disabled { cursor: wait; opacity: .66; }
.landing-page .switch { margin-top: 12px; color: #9fb2c7; text-align: center; font-size: .69rem; }
.landing-page .switch button,
.landing-page .mc-otp-actions button { padding: 4px; border: 0; color: #68e4c7; background: transparent; font-size: inherit; font-weight: 750; cursor: pointer; }
.landing-page .auth-security-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; color: #8fa4b9; font-size: .65rem; text-align: center; }
.landing-page .auth-security-note span { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: #6fe4c8; background: rgba(55, 222, 183, .12); }
.landing-page .mc-auth-otp-stage { display: grid; gap: 12px; color: #afc0d1; font-size: .8rem; text-align: center; }
.landing-page .mc-auth-mail { width: 48px; height: 48px; display: grid; place-items: center; margin: 0 auto; border-radius: 15px; color: #62e3c5; background: rgba(57, 217, 181, .12); }
.landing-page .mc-otp-field { display: grid; gap: 8px; }
.landing-page .mc-otp-cells { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.landing-page .mc-otp-cells i { min-height: 48px; display: grid; place-items: center; border: 1px solid rgba(140, 176, 207, .22); border-radius: 10px; color: #f2f8ff; background: rgba(15, 38, 61, .82); font-style: normal; font-size: 1rem; font-weight: 800; }
.landing-page .mc-otp-cells i.is-active { border-color: #50dcb9; }
.landing-page .mc-otp-input { position: absolute; width: 1px; height: 1px; opacity: .01; pointer-events: none; }
.landing-page .mc-otp-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; }
.landing-page .mc-otp-actions button:disabled { color: #70849a; cursor: default; }
.landing-page .mc-auth-success { display: grid; justify-items: center; gap: 10px; padding: 30px 0; color: #c5d5e4; text-align: center; }
.landing-page .mc-auth-success strong { color: #f1f8ff; font-size: 1.2rem; }

@keyframes lv3-reveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1060px) {
  .lv3-nav { grid-template-columns: auto 1fr auto; }
  .lv3-nav-links { display: none; }
  .lv3-menu-button { display: inline-grid; }
  .lv3-nav-links.is-open {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: grid;
    padding: 10px;
    border: 1px solid var(--lv3-line);
    border-radius: 16px;
    background: var(--lv3-surface-solid);
    box-shadow: var(--lv3-shadow);
  }
  .lv3-nav-links.is-open a { justify-content: center; }
  .lv3-hero-grid { grid-template-columns: minmax(0, .78fr) minmax(440px, 1.22fr); }
  .lv3-command-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lv3-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .lv3-wrap { width: min(100% - 28px, 720px); }
  .lv3-header { padding: 9px 0; }
  .lv3-nav { gap: 10px; border-radius: 17px; }
  .lv3-brand { padding-inline: 3px 6px; }
  .lv3-brand small { display: none; }
  .lv3-nav-actions .lv3-button-secondary { display: none; }
  .lv3-hero { padding-top: 44px; }
  .lv3-hero-grid { grid-template-columns: 1fr; }
  .lv3-hero-copy { text-align: center; }
  .lv3-eyebrow { justify-content: center; }
  .lv3-hero h1 { max-width: 11ch; margin-inline: auto; }
  .lv3-hero-copy > p { margin-inline: auto; }
  .lv3-hero-actions { justify-content: center; }
  .lv3-hero-note { justify-content: center; }
  .lv3-hero-visual { width: min(430px, 100%); margin-inline: auto; padding: 0; }
  .lv3-hero-visual > .lv3-browser-frame,
  .lv3-hero-visual .lv3-orbit { display: none; }
  .lv3-hero-phone { position: relative; right: auto; bottom: auto; width: 100%; padding: 7px; transform: none; }
  .lv3-hero-phone img { border-radius: 18px; }
  .lv3-proof { grid-template-columns: 1fr 1fr; }
  .lv3-feature-grid,
  .lv3-feature-grid-reverse { grid-template-columns: 1fr; }
  .lv3-feature-grid-reverse .lv3-feature-copy,
  .lv3-feature-grid-reverse .lv3-feature-visual { order: initial; }
  .lv3-secondary-shot { width: 88%; }
  .lv3-journey { grid-template-columns: 1fr; }
  .lv3-command-grid { grid-template-columns: 1fr; }
  .lv3-command-card { display: grid; grid-template-columns: minmax(0, .85fr) minmax(260px, 1.15fr); align-items: center; }
  .lv3-mobile-frame { margin: 14px; }
  .lv3-auth-promo { grid-template-columns: 1fr; }
  .lv3-auth-promo h2 { max-width: 18ch; }
  .lv3-prices { grid-template-columns: 1fr; max-width: 580px; margin-inline: auto; }
  .lv3-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .lv3-footer-links { justify-content: center; }
}

@media (max-width: 620px) {
  .landing-page { font-size: 15px; }
  .lv3-wrap { width: min(100% - 22px, 540px); }
  .lv3-nav { min-height: 58px; }
  .lv3-brand img { width: 38px; height: 38px; }
  .lv3-brand strong { max-width: 122px; overflow: hidden; text-overflow: ellipsis; }
  .lv3-nav-actions { gap: 5px; }
  .lv3-nav-actions .lv3-button-primary { min-height: 42px; padding-inline: 12px; font-size: .72rem; }
  .lv3-icon-button,
  .lv3-menu-button { width: 42px; min-height: 42px; }
  .lv3-hero h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .lv3-hero-copy > p { font-size: .96rem; }
  .lv3-hero-actions .lv3-button { width: 100%; }
  .lv3-proof { grid-template-columns: 1fr; }
  .lv3-proof-item { padding: 16px 18px; }
  .lv3-section { padding: 62px 0; }
  .lv3-section-head { margin-bottom: 26px; }
  .lv3-section-head h2 { font-size: 2.25rem; }
  .lv3-browser-frame { padding: 5px; border-radius: 15px; }
  .lv3-browser-frame::before { width: 42px; height: 7px; margin-bottom: 5px; }
  .lv3-browser-frame img { border-radius: 9px; }
  .lv3-live-shell { padding: 23px 15px; border-radius: 25px; }
  .lv3-command-card { display: flex; }
  .lv3-command-copy { padding: 21px 20px 16px; }
  .lv3-pillars { grid-template-columns: 1fr; }
  .lv3-auth-promo { padding: 26px 21px; }
  .lv3-responsible { grid-template-columns: 1fr; }
  .lv3-final { padding: 44px 20px; border-radius: 25px; }
  .landing-page .modal-bg { align-items: flex-start; overflow: auto; padding: 8px; }
  .landing-page .modal { grid-template-columns: 1fr; max-height: calc(100dvh - 16px); margin: max(4px, env(safe-area-inset-top)) 0 max(4px, env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; border-radius: 22px; }
  .landing-page .mc-auth-visual { min-height: 188px; padding: 76px 22px 20px; }
  .landing-page .auth-visual-brand { top: 19px; left: 20px; }
  .landing-page .auth-visual-brand img { width: 44px; height: 44px; }
  .landing-page .auth-visual-copy h3 { max-width: 18ch; margin: 4px 0 7px; font-size: 1.4rem; }
  .landing-page .auth-visual-copy p { font-size: .72rem; }
  .landing-page .auth-visual-points { margin-top: 11px; }
  .landing-page .mc-auth-panel { padding: 26px 20px calc(28px + env(safe-area-inset-bottom)); }
}

@media (max-width: 390px) {
  .lv3-brand strong { max-width: 98px; }
  .lv3-nav-actions .lv3-button-primary { display: none; }
  .lv3-hero { padding-top: 38px; }
  .lv3-gallery-tabs { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .lv3-gallery-tab { flex: 0 0 auto; }
  .landing-page .auth-visual-points span:nth-child(3) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    scroll-behavior: auto;
    animation-duration: .01ms;
    animation-iteration-count: 1;
    transition-duration: .01ms;
  }
}

/* Canonical Site Management presentation presets; auth, route ve fiyat owner'ları dışarıdadır. */
#main[data-cms-page='landing'] {
  display: flex;
  flex-direction: column;
}

.landing-page[data-cms-width='wide'] .lv3-wrap {
  width: min(1440px, calc(100% - 40px));
}

.landing-page[data-cms-density='compact'] .lv3-section {
  padding-block: clamp(48px, 6vw, 78px);
}

.landing-page[data-cms-spacing='compact'] .lv3-section-head {
  margin-bottom: 24px;
}

.landing-page[data-cms-spacing='compact'] :is(.lv3-journey, .lv3-command-grid, .lv3-pillars, .lv3-prices) {
  gap: 10px;
}

.landing-page[data-cms-radius='small'] {
  --lv3-radius-sm: 9px;
  --lv3-radius: 15px;
  --lv3-radius-lg: 22px;
}

.landing-page[data-cms-radius='large'] {
  --lv3-radius-sm: 18px;
  --lv3-radius: 30px;
  --lv3-radius-lg: 42px;
}

@media (min-width: 821px) {
  .landing-page[data-cms-page='landing'] .cms-hide-desktop {
    display: none;
  }
}

@media (max-width: 820px) {
  .landing-page[data-cms-page='landing'] .cms-hide-mobile {
    display: none;
  }
}
