:root {
  --bg: #070809;
  --bg-soft: #0d0f12;
  --ink: #f6f1e8;
  --muted: #a39e94;
  --line: rgba(246, 241, 232, 0.1);
  --line-strong: rgba(201, 168, 108, 0.35);
  --panel: rgba(18, 20, 24, 0.92);
  --panel-solid: #121418;
  --panel-lift: #181b21;
  --accent: #c9a86c;
  --accent-2: #e2c48a;
  --accent-ink: #15110a;
  --accent-soft: rgba(201, 168, 108, 0.12);
  --ok: #8fceb0;
  --ok-soft: rgba(143, 206, 176, 0.12);
  --warn: #e0b072;
  --warn-soft: rgba(224, 176, 114, 0.14);
  --danger: #e59a9a;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: var(--font);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 520px at 15% -10%, rgba(201, 168, 108, 0.18), transparent 60%),
    radial-gradient(ellipse 700px 480px at 95% 5%, rgba(90, 110, 140, 0.12), transparent 55%),
    linear-gradient(180deg, #0c0e11 0%, var(--bg) 40%, #050607 100%);
  background-attachment: fixed;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: #f0d9a8; }

.wrap {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0 80px;
}
.wrap-app {
  width: min(680px, calc(100% - 28px));
  padding-bottom: 110px;
}

.app-home {
  margin: 4px 0 18px;
  padding: 4px 2px 0;
}
.app-home-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.app-home-title,
.apt-title,
.empty-title,
.help-title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.app-home-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 28em;
}
.apt-period {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.help-panel .lead { margin-bottom: 20px; }
.action-btn-wide { grid-column: 1 / -1; }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.brand {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 2rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.brand span {
  color: var(--accent);
  font-style: italic;
}
.back-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.back-link:hover { color: var(--accent-2); }

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.panel-alert {
  background: linear-gradient(160deg, rgba(201, 168, 108, 0.14), var(--panel) 55%);
  border-color: var(--line-strong);
  padding-top: 18px;
}

.section-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-label { margin: 6px 4px 12px; }

h1, h2, h3 {
  margin: 0 0 8px;
  letter-spacing: -0.035em;
  font-weight: 600;
}
h1 { font-size: 1.55rem; }
h2 { font-size: 1.22rem; line-height: 1.2; }
.lead {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 18px;
  font-size: 1.02rem;
}
.hint {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
}
.hint.tight { margin-bottom: 10px; }
.opt {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.82em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  min-height: 50px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.98rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:active { transform: scale(0.985); }
.btn-lg { min-height: 56px; font-size: 1.05rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent) 55%, #b89255);
  color: var(--accent-ink);
  box-shadow: 0 10px 28px rgba(201, 168, 108, 0.28);
}
.btn-primary:hover {
  filter: brightness(1.05);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(201, 168, 108, 0.36);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover {
  border-color: var(--line-strong);
  background: var(--accent-soft);
}
.btn-secondary.is-done {
  background: var(--ok-soft);
  color: var(--ok);
  border-color: rgba(143, 206, 176, 0.4);
}
.btn-danger {
  background: rgba(180, 60, 60, 0.18);
  color: #f0a0a0;
  border: 1px solid rgba(200, 80, 80, 0.35);
}
.btn-danger:hover {
  background: rgba(180, 60, 60, 0.28);
  border-color: rgba(220, 100, 100, 0.5);
}
.danger-form {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.btn-quiet {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.88rem;
}
.btn-quiet:hover { color: var(--ink); border-color: rgba(246,241,232,0.22); }
.btn-block { width: 100%; }
.btn-row, .btn-pair {
  display: grid;
  gap: 10px;
}

label {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0 0 7px;
  font-weight: 600;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  margin-bottom: 12px;
  min-height: 50px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
textarea { min-height: 128px; resize: vertical; line-height: 1.5; }
input::placeholder, textarea::placeholder { color: #6f6a62; }
input:focus, textarea:focus {
  outline: none;
  border-color: rgba(201, 168, 108, 0.55);
  background: rgba(201, 168, 108, 0.05);
  box-shadow: 0 0 0 4px rgba(201, 168, 108, 0.1);
}

.flash {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 12px;
  background: var(--ok-soft);
  color: var(--ok);
  border: 1px solid rgba(143, 206, 176, 0.28);
  font-weight: 600;
}
.error { color: var(--danger); margin-bottom: 12px; font-weight: 600; }

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 10vw, 3.8rem);
  line-height: 0.95;
  margin: 0 0 14px;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.badge {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 7px 11px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.badge-warn { background: var(--warn-soft); color: var(--warn); }
.badge-ok { background: var(--ok-soft); color: var(--ok); }
.badge-muted { background: rgba(255,255,255,0.05); color: var(--muted); }

.urgent-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.urgent-head .section-label {
  margin: 0;
  color: var(--accent-2);
}
.urgent-period {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.urgent { display: grid; gap: 10px; }
.urgent-card {
  display: grid;
  gap: 12px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 248, 235, 0.04), rgba(0, 0, 0, 0.28));
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(224, 179, 90, 0.28);
  transition: border-color 0.15s ease, transform 0.12s ease;
}
.urgent-card:hover {
  border-color: rgba(224, 179, 90, 0.55);
  text-decoration: none;
}
.urgent-card:active { transform: scale(0.99); }
.urgent-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}
.urgent-title {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.urgent-tenant {
  color: var(--muted);
  font-size: 0.92rem;
}
.urgent-reasons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.urgent-reason {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border-left: 3px solid var(--accent);
}
.urgent-meters {
  border-left-color: var(--warn, #e0b35a);
}
.urgent-reason-title {
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}
.urgent-reason-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}
.urgent-cta {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.01em;
}
.chip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line-strong);
}
.chip-title { font-weight: 600; }
.chip-detail { color: var(--accent-2); font-size: 0.9rem; font-weight: 600; }

.apt { scroll-margin-top: 16px; }
.apt-attention {
  border-color: var(--line-strong);
  box-shadow: var(--shadow), inset 3px 0 0 var(--accent);
}
.apt-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.apt-meta {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-top: 4px;
}
.apt-meta .dot { margin: 0 6px; opacity: 0.45; }
.apt-money {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}
.apt-money strong {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.apt-actions { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.apt-actions > form,
.apt-actions > .status-line {
  grid-column: 1 / -1;
}
.action-group {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 14px;
}
.fact {
  display: grid;
  gap: 5px;
  padding: 15px 15px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-top: 1px solid rgba(201, 168, 108, 0.22);
}
.fact-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.fact strong {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.fact-sub {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}
.ok-strong { color: var(--ok); }
.warn-strong { color: var(--warn, #e0b35a); }
.muted-strong { color: var(--muted); font-weight: 600; }
.apt-address {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}
.action-btn {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 15px 12px;
  cursor: pointer;
  width: 100%;
}
.action-btn:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}
.action-btn:active { transform: translateY(1px); }

.modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(440px, calc(100vw - 24px));
  width: 100%;
  color: var(--ink);
}
.modal::backdrop {
  background: rgba(4, 5, 7, 0.72);
  backdrop-filter: blur(4px);
}
.modal-card {
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(32, 34, 40, 0.98), rgba(14, 15, 18, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  max-height: min(86vh, 720px);
  display: flex;
  flex-direction: column;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.modal-head h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.modal-x {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.modal-x:hover { color: var(--ink); border-color: var(--line-strong); }
.modal-body {
  padding: 16px 18px 18px;
  overflow-y: auto;
  display: grid;
  gap: 10px;
}
.modal-body form { display: grid; gap: 4px; }
.modal-body .btn { margin-top: 8px; }
.kind-grid {
  display: grid;
  gap: 8px;
  margin: 8px 0 12px;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  font-weight: 500;
  cursor: pointer;
}
.check-row input {
  width: auto;
  margin: 0;
  accent-color: var(--accent);
}
.section-label.tight { margin-top: 8px; margin-bottom: 8px; }
.hint.tight { margin-top: 0; }
.history-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.history-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 11px 13px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}
.history-period {
  font-weight: 600;
  letter-spacing: 0.02em;
  min-width: 4.5rem;
}
.history-main {
  color: var(--muted);
  flex: 1;
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.35;
}
.help-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
}
.help-list strong { color: var(--ink); font-weight: 600; }
.status-line {
  padding: 13px 15px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.95rem;
}
.status-line.ok {
  background: var(--ok-soft);
  color: var(--ok);
}
.status-line.warn {
  background: var(--warn-soft);
  color: var(--warn);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

.msg-preview {
  white-space: pre-wrap;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #ebe4d8;
  margin: 0 0 10px;
  position: relative;
}
.msg-preview.is-copy {
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}
.msg-preview.is-copy:hover {
  border-color: var(--line-strong);
  background: rgba(201, 168, 108, 0.08);
}
.msg-preview.is-copy.is-done {
  border-color: rgba(143, 206, 176, 0.45);
  background: var(--ok-soft);
}
.copy-toast {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.75rem;
  font-weight: 750;
  padding: 5px 9px;
  border-radius: 999px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

details.more > summary,
details.text-fold > summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
details > summary::-webkit-details-marker { display: none; }
details.more > summary::after {
  content: "▾";
  float: right;
  color: var(--muted);
}
details[open].more > summary::after { content: "▴"; }
details .body { margin-top: 14px; }

.bottom-nav { display: grid; gap: 10px; margin-top: 10px; }
.add-trigger {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  font: inherit;
  text-align: left;
}
.add-trigger:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}
.add-trigger strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.add-trigger small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  font-size: 0.86rem;
}
.nav-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
}

.sep {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  margin: 18px 0;
}
.sep::before, .sep::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.wait-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 1.2s ease infinite;
  margin-right: 8px;
}
@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1); }
}

.empty {
  text-align: left;
  padding: 28px 22px 24px;
}
.empty .btn { margin-top: 4px; }

.apt-list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.apt-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, transform 0.12s ease, background 0.15s ease;
}
.apt-card:active { transform: scale(0.99); }
.apt-card:hover {
  border-color: var(--line-strong);
  background: var(--panel-lift);
  text-decoration: none;
}
.apt-card.apt-attention {
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 3px 0 0 var(--accent);
}
.apt-card-main {
  display: grid;
  gap: 5px;
  min-width: 0;
  flex: 1;
}
.apt-card-main strong {
  font-family: var(--display);
  font-size: 1.28rem;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.apt-card-address {
  color: var(--muted);
  font-size: 0.88rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.apt-card-meters {
  margin-top: 4px;
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--muted);
}
.apt-card-meters.meters-ok { color: var(--ok); }
.apt-card-meters.meters-warn { color: var(--warn, #e0b35a); }
.apt-card-meters.meters-off { opacity: 0.75; }
.apt-card-side {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 2px;
}
.chev {
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0.85;
}

.landing-panel {
  padding: 28px 22px 24px;
}
.landing-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* —— Landing: full-viewport vertical slides —— */
body:has(.wrap-landing) {
  overflow: hidden;
  height: 100%;
  height: 100dvh;
}
.wrap-landing {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
}

.lp-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(7, 8, 9, 0.92) 0%, rgba(7, 8, 9, 0.55) 55%, transparent);
  pointer-events: none;
}
.lp-chrome a,
.lp-chrome .btn { pointer-events: auto; }
.lp-chrome-brand { font-size: 1.5rem; }
.lp-chrome-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lp-dots {
  position: fixed;
  right: clamp(12px, 2.8vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
.lp-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(246, 241, 232, 0.32);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: height 0.35s ease, background 0.25s ease, border-color 0.25s ease;
}
.lp-dot.is-active {
  height: 22px;
  background: var(--accent);
  border-color: var(--accent);
}
.lp-dot:hover { border-color: var(--accent-2); }

.lp-scroller {
  height: 100%;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}
.lp-scroller::-webkit-scrollbar { width: 0; height: 0; }

.lp-slide {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  min-height: 100dvh;
  height: 100%;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px clamp(22px, 6vw, 80px) 64px;
  padding-right: clamp(36px, 7vw, 96px);
  box-sizing: border-box;
  overflow: hidden;
}
.lp-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.lp-tone-a::before {
  background:
    radial-gradient(ellipse 80% 60% at 78% 42%, rgba(201, 168, 108, 0.16), transparent 62%),
    radial-gradient(ellipse 50% 40% at 12% 80%, rgba(90, 110, 140, 0.1), transparent 70%);
}
.lp-tone-b::before {
  background:
    radial-gradient(ellipse 70% 55% at 18% 35%, rgba(201, 168, 108, 0.12), transparent 65%),
    radial-gradient(ellipse 45% 40% at 90% 70%, rgba(224, 176, 114, 0.08), transparent 70%);
}
.lp-tone-c::before {
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(201, 168, 108, 0.11), transparent 60%);
}
.lp-tone-d::before {
  background:
    radial-gradient(ellipse 55% 50% at 30% 50%, rgba(143, 206, 176, 0.07), transparent 65%),
    radial-gradient(ellipse 55% 50% at 75% 45%, rgba(201, 168, 108, 0.1), transparent 65%);
}
.lp-tone-e::before {
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(201, 168, 108, 0.18), transparent 68%);
}
.lp-slide.is-in::before { opacity: 1; }

.lp-slide-inner {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-slide.is-in .lp-slide-inner {
  opacity: 1;
  transform: translateY(0);
}

.lp-slide-hero .lp-slide-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}
.lp-layout-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.lp-layout-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 44px);
}
.lp-layout-final {
  width: min(620px, 100%);
  text-align: center;
}
.lp-copy-center {
  text-align: center;
  max-width: 34em;
  margin: 0 auto;
}
.lp-copy-center .lp-lead { margin-left: auto; margin-right: auto; }

.lp-kicker,
.lp-num,
.lp-channel-label {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.lp-num {
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
}

.lp-brand-hero {
  margin: 0 0 20px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(4rem, 13vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.lp-brand-hero em {
  font-style: italic;
  color: var(--accent);
}
.lp-tagline {
  margin: 0 0 30px;
  max-width: 17em;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  line-height: 1.4;
  color: var(--muted);
}
.lp-h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.15rem, 5.2vw, 3.15rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.lp-h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
}
.lp-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.1vw, 1.18rem);
  line-height: 1.55;
  max-width: 32em;
}
.lp-lead + .lp-lead { margin-top: 14px; }
.lp-lead-strong {
  color: var(--ink);
  font-weight: 500;
}

.lp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.lp-cta .btn { width: auto; min-width: 0; }
.lp-cta .btn-lg { padding-left: 24px; padding-right: 24px; }
.lp-cta-final {
  justify-content: center;
  margin-top: 28px;
}

.lp-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(163, 158, 148, 0.75);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
}
.lp-hint i {
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: lp-hint-pulse 2.2s ease-in-out infinite;
}
.lp-slide:not(.is-in) .lp-hint { opacity: 0; }

.lp-stage {
  position: relative;
  width: min(100%, 380px);
  justify-self: end;
}
.lp-stage-glow {
  position: absolute;
  inset: -18% -12%;
  background: radial-gradient(circle at 50% 40%, rgba(201, 168, 108, 0.22), transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}
.lp-ui {
  position: relative;
  padding: 22px 22px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    linear-gradient(165deg, rgba(255, 248, 235, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(24, 27, 33, 0.95), rgba(12, 14, 17, 0.98));
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(18px) rotate(1.2deg);
  opacity: 0.88;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.75s ease;
}
.lp-slide.is-in .lp-ui {
  transform: translateY(0) rotate(0.6deg);
  opacity: 1;
}
.lp-ui-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.lp-ui-mark {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warn);
  background: var(--warn-soft);
  padding: 6px 10px;
  border-radius: 999px;
}
.lp-ui-date {
  color: var(--muted);
  font-size: 0.88rem;
}
.lp-ui-apt {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.lp-ui-apt strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.lp-ui-apt span {
  color: var(--muted);
  font-size: 0.95rem;
}
.lp-ui-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(246, 241, 232, 0.06);
  font-size: 0.95rem;
}
.lp-ui-row span { color: var(--muted); }
.lp-ui-row em {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
  text-align: right;
}
.lp-ui-row.warn em { color: var(--warn); }

.lp-quote {
  position: relative;
  padding: 28px 28px 24px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(201, 168, 108, 0.08), transparent 70%);
  max-width: 22em;
}
.lp-quote p {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lp-quote span {
  color: var(--muted);
  font-size: 0.92rem;
}

.lp-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(920px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.lp-rail-item {
  padding: 22px 20px 8px;
  border-right: 1px solid var(--line);
}
.lp-rail-item:last-child { border-right: 0; }
.lp-rail-n {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
}
.lp-rail-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.lp-rail-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.lp-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 28px);
  width: min(860px, 100%);
  margin: 0 auto;
}
.lp-channel {
  padding: 8px 8px 8px 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.lp-channel-accent { border-top-color: rgba(201, 168, 108, 0.45); }
.lp-channel p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.lp-sign {
  margin: 40px 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
  color: rgba(246, 241, 232, 0.4);
  letter-spacing: -0.02em;
}

@keyframes lp-hint-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-slide-inner,
  .lp-ui,
  .lp-dot,
  .lp-slide::before { transition: none; }
  .lp-hint i { animation: none; }
  .lp-scroller { scroll-behavior: auto; }
}

@media (max-width: 900px) {
  .lp-slide-hero .lp-slide-inner,
  .lp-layout-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-stage { justify-self: start; width: min(100%, 360px); }
  .lp-quote { max-width: none; }
  .lp-rail { grid-template-columns: 1fr; border-top: 0; }
  .lp-rail-item {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0;
  }
  .lp-channels { grid-template-columns: 1fr; }
  .lp-dots { right: 10px; }
}

@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .btn-pair { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .lp-cta { flex-direction: column; align-items: stretch; }
  .lp-cta .btn { width: 100%; }
  .lp-slide { padding: 88px 20px 56px; padding-right: 34px; }
  .lp-brand-hero { font-size: clamp(3.4rem, 17vw, 4.6rem); }
  .lp-layout-final { text-align: left; }
  .lp-cta-final { justify-content: stretch; }
  .lp-copy-center { text-align: left; }
  .lp-copy-center .lp-lead { margin-left: 0; }
}
