:root {
  --bg1: #fff9fd;
  --bg2: #fff1f7;
  --bg3: #fde8f1;
  --ink: #573544;
  --muted: #8b6678;
  --soft: #b88a9d;
  --soft-strong: #9a687d;
  --accent: #f4bfd4;
  --accent-strong: #e39ab8;
  --accent-deep: #9c5f79;
  --paper: rgba(255, 255, 255, 0.84);
  --paper-strong: rgba(255, 252, 254, 0.95);
  --line: rgba(214, 150, 178, 0.24);
  --shadow: 0 36px 80px rgba(210, 154, 177, 0.18);
  --glow: 0 0 50px rgba(255, 219, 233, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 234, 243, 0.95), transparent 20%),
    radial-gradient(circle at 86% 18%, rgba(255, 245, 250, 0.92), transparent 18%),
    radial-gradient(circle at 22% 88%, rgba(249, 215, 229, 0.82), transparent 25%),
    linear-gradient(135deg, var(--bg1), var(--bg2) 48%, var(--bg3));
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(70px);
}

body::before {
  top: -80px;
  left: -90px;
  width: 320px;
  height: 320px;
  background: rgba(255, 221, 234, 0.7);
}

body::after {
  right: -120px;
  bottom: -90px;
  width: 360px;
  height: 360px;
  background: rgba(243, 198, 219, 0.52);
}

.hearts,
.particles,
.blurs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hearts span {
  position: absolute;
  bottom: -24px;
  font-size: clamp(14px, 2vw, 22px);
  color: #d88aa9;
  opacity: 0.2;
  animation: float 15s linear infinite;
}

.hearts span:nth-child(1) { left: 7%; }
.hearts span:nth-child(2) { left: 22%; animation-duration: 18s; }
.hearts span:nth-child(3) { left: 38%; animation-duration: 16s; }
.hearts span:nth-child(4) { left: 57%; animation-duration: 20s; }
.hearts span:nth-child(5) { left: 73%; animation-duration: 17s; }
.hearts span:nth-child(6) { left: 88%; animation-duration: 19s; }

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 238, 244, 0.95);
  box-shadow: 0 0 16px rgba(255, 224, 235, 0.85);
  animation: twinkle var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}

.blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.62;
  animation: drift 13s ease-in-out infinite;
}

.blur.one {
  width: 260px;
  height: 260px;
  left: -60px;
  top: -40px;
  background: rgba(255, 214, 228, 0.82);
}

.blur.two {
  width: 220px;
  height: 220px;
  right: -40px;
  top: 28%;
  background: rgba(255, 238, 245, 0.9);
  animation-delay: -4s;
}

.blur.three {
  width: 180px;
  height: 180px;
  left: 18%;
  bottom: -30px;
  background: rgba(251, 232, 241, 0.92);
  animation-delay: -7s;
}

main {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 24px), 1080px);
  margin: 0 auto;
  padding: 20px 0 max(28px, env(safe-area-inset-bottom));
}

.section {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 249, 252, 0.72));
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  border-radius: 34px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  pointer-events: none;
}

.serif {
  font-family: "Palatino Linotype", Georgia, serif;
  letter-spacing: -0.04em;
}

.overline {
  margin: 0 0 12px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
}

h1,
h2,
p,
figure {
  margin: 0;
}

.display-title {
  font-size: clamp(2.9rem, 7vw, 5.5rem);
  line-height: 0.98;
}

.lead {
  color: var(--muted);
  line-height: 1.95;
  font-size: clamp(1rem, 2.6vw, 1.14rem);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7bfd4, #ffe7f1 62%, #f7d6e4);
  color: #76495c;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(232, 169, 194, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(232, 169, 194, 0.3);
  filter: saturate(1.04);
}

.btn:disabled {
  cursor: default;
  opacity: 0.88;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(228, 173, 196, 0.34);
  color: var(--soft-strong);
  box-shadow: 0 14px 28px rgba(232, 169, 194, 0.14);
}

.hero-shell {
  min-height: 84vh;
  padding: 38px;
}

.hero-bloom {
  position: absolute;
  inset: auto;
  top: -100px;
  right: -40px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(247, 203, 222, 0.82), rgba(247, 203, 222, 0));
  filter: blur(10px);
  opacity: 0.78;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(84vh - 76px);
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  align-items: center;
  gap: 28px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(226, 171, 194, 0.35);
  background: rgba(255, 255, 255, 0.62);
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.hero-lead {
  max-width: 34rem;
  margin-top: 20px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-side {
  display: flex;
  justify-content: flex-end;
}

.note-card {
  width: min(100%, 330px);
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 253, 0.94), rgba(255, 244, 249, 0.86));
  border: 1px solid rgba(229, 176, 198, 0.28);
  box-shadow: 0 26px 48px rgba(221, 170, 191, 0.18);
  transform: rotate(-4deg);
}

.note-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(229, 176, 198, 0.28);
  color: var(--soft);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.note-text {
  color: #7f5a6b;
  line-height: 1.9;
  font-size: 1rem;
}

.note-text.soft {
  color: var(--muted);
}

.note-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, transparent, rgba(216, 158, 184, 0.5), transparent);
}

.letter-shell {
  min-height: 84vh;
  display: grid;
  place-items: center;
}

.letter-stack {
  position: relative;
  width: min(100%, 860px);
  padding: 32px 20px 14px;
}

.letter-stack::before,
.letter-stack::after {
  content: "";
  position: absolute;
  inset: 24px 32px 8px;
  border-radius: 28px;
  background: rgba(255, 247, 250, 0.72);
  border: 1px solid rgba(228, 173, 196, 0.18);
  transform: rotate(-2deg);
  z-index: 0;
}

.letter-stack::after {
  inset: 16px 24px 0;
  transform: rotate(2.6deg);
  background: rgba(255, 251, 253, 0.78);
}

.letter-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 160px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, rgba(243, 179, 205, 0.92), rgba(233, 157, 189, 0.82));
  box-shadow: 0 10px 20px rgba(221, 160, 186, 0.24);
}

.letter-sheet {
  position: relative;
  z-index: 3;
  padding: 56px 54px 46px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 254, 255, 0.98), rgba(255, 248, 251, 0.92));
  border: 1px solid rgba(226, 170, 194, 0.24);
  box-shadow: 0 26px 64px rgba(213, 162, 184, 0.18);
  text-align: center;
}

.letter-kicker {
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
}

.letter-page-title {
  margin-top: 10px;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.02;
}

.letter-page-text {
  max-width: 39rem;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.14rem);
  line-height: 2;
}

.letter-signature {
  margin-top: 28px;
  color: var(--accent-deep);
  font-family: "Palatino Linotype", Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
}

.letter-page-actions {
  justify-content: center;
  margin-top: 34px;
}

.scene-shell {
  padding: 36px;
}

.scene-shell::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(248, 207, 224, 0.62), rgba(248, 207, 224, 0));
  filter: blur(12px);
  z-index: 0;
}

.scene-glow {
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 197, 216, 0.7), rgba(245, 197, 216, 0));
  filter: blur(16px);
}

.scene-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.scene-copy {
  max-width: 520px;
  display: flex;
  flex-direction: column;
}

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(228, 173, 196, 0.26);
  color: var(--soft);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene-title {
  margin-top: 16px;
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 0.98;
}

.meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  width: fit-content;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(252, 230, 239, 0.82);
  color: var(--accent-deep);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.handwritten {
  font-family: "Segoe Print", "Bradley Hand", cursive;
  color: #735060;
  font-size: clamp(1.08rem, 2.8vw, 1.3rem);
  line-height: 1.95;
}

.typed-block {
  position: relative;
  margin-top: 24px;
  min-height: 24rem;
  padding-right: 8px;
}

.typed-block p,
.typed-block .quote {
  margin-top: 18px;
}

.typed-block p:first-child,
.typed-block .quote:first-child {
  margin-top: 0;
}

.quote {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 244, 249, 0.92), rgba(255, 237, 244, 0.82));
  border-left: 4px solid #efacc5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.scene-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.scene-visual {
  position: relative;
  align-self: start;
}

.cinematic-frame {
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 247, 251, 0.68), rgba(240, 214, 227, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 32px 70px rgba(181, 120, 149, 0.22);
}

.cinematic-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.frame-card {
  position: relative;
}

.frame-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.frame-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 25, 41, 0.02), rgba(61, 25, 41, 0.2));
  pointer-events: none;
}

.frame-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, rgba(66, 35, 48, 0), rgba(66, 35, 48, 0.72));
  color: #fff7fb;
  font-size: 0.98rem;
}

.caption-film {
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 1.1rem;
}

.caption-time {
  opacity: 0.88;
}

.final-shell {
  min-height: 84vh;
  display: grid;
  place-items: center;
  padding: 42px 30px;
}

.final-center {
  text-align: center;
}

.final-aura {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  z-index: 0;
}

.final-aura-left {
  left: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(244, 194, 214, 0.7), rgba(244, 194, 214, 0));
}

.final-aura-right {
  right: -50px;
  top: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 229, 239, 0.78), rgba(255, 229, 239, 0));
}

.final-card {
  position: relative;
  z-index: 1;
  width: min(100%, 940px);
  padding: 0;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 253, 254, 0.99), rgba(255, 247, 251, 0.94));
  border: 1px solid rgba(228, 173, 196, 0.22);
  box-shadow: 0 32px 80px rgba(213, 162, 184, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.final-card-inner {
  min-height: 380px;
  padding: 54px 44px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-title {
  margin-top: 14px;
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 1;
}

.final-lead {
  max-width: 44rem;
  margin: 20px auto 0;
  line-height: 1.95;
}

.final-actions {
  justify-content: center;
  margin-top: 28px;
}

.final-reveal {
  width: 100%;
  min-height: 126px;
  margin-top: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.final-text {
  max-width: none;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  transition: max-height 0.55s ease, opacity 0.45s ease, transform 0.45s ease;
  color: var(--accent-deep);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.final-text.show {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

.heart-burst {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.02em;
  transform-origin: center;
  animation: pulse 1.8s ease-in-out infinite;
}

.footer {
  position: relative;
  z-index: 1;
}

.final-footer {
  margin-top: 24px;
  color: var(--muted);
}

.final-footer p {
  font-size: 1.05rem;
}

.sig {
  margin-top: 14px;
  color: var(--soft-strong);
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 1.08rem;
}

.error-shell {
  min-height: 84vh;
  display: grid;
  place-items: center;
}

.error-card {
  width: min(100%, 760px);
  padding: 52px 38px 42px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 252, 254, 0.96), rgba(255, 246, 250, 0.9));
  border: 1px solid rgba(228, 173, 196, 0.26);
  box-shadow: var(--shadow), var(--glow);
  text-align: center;
}

.error-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7bfd4, #ffe8f2);
  color: #784b5f;
  font-weight: 700;
  font-size: 1.12rem;
  box-shadow: 0 14px 28px rgba(232, 169, 194, 0.24);
}

.error-title {
  margin-top: 24px;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02;
}

.error-message {
  max-width: 34rem;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.95;
  font-size: clamp(1rem, 2.8vw, 1.12rem);
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-120vh); }
}

@keyframes twinkle {
  0%, 100% { transform: scale(0.75); opacity: 0.3; }
  50% { transform: scale(1.42); opacity: 0.9; }
}

@keyframes drift {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(18px) translateX(10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.14); }
}

@media (max-width: 900px) {
  .hero-grid,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    justify-content: flex-start;
  }

  .scene-copy {
    max-width: none;
  }

  .typed-block {
    min-height: 21rem;
  }
}

@media (max-width: 560px) {
  main {
    width: min(calc(100% - 16px), 1080px);
    padding-top: 16px;
  }

  .section {
    padding: 18px;
    border-radius: 26px;
  }

  .section::before {
    inset: 10px;
    border-radius: 18px;
  }

  .hero-shell,
  .letter-shell,
  .error-shell,
  .final-shell {
    min-height: auto;
  }

  .hero-shell {
    padding: 22px;
  }

  .display-title {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .note-card {
    width: 100%;
    transform: none;
  }

  .letter-stack {
    padding: 18px 4px 4px;
  }

  .letter-sheet {
    padding: 38px 24px 30px;
    border-radius: 24px;
  }

  .scene-shell,
  .final-shell {
    padding: 20px;
  }

  .typed-block {
    min-height: 18rem;
    padding-right: 0;
  }

  .scene-actions,
  .btn-row,
  .final-actions {
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

  .frame-card img,
  .cinematic-frame {
    min-height: 360px;
    height: 360px;
  }

  .frame-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-card,
  .error-card {
    border-radius: 26px;
  }

  .final-card-inner {
    min-height: auto;
    padding: 40px 22px 24px;
  }

  .final-reveal {
    min-height: 88px;
    margin-top: 28px;
  }

  .final-text {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }
}



.landing-shell {
  min-height: 92vh;
  padding: 30px;
}

.landing-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245, 190, 213, 0.95), rgba(255, 243, 248, 0.92));
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 36px rgba(214, 155, 181, 0.24);
}

.landing-brand-name,
.landing-brand-subtitle,
.landing-card-title,
.landing-card-text {
  margin: 0;
}

.landing-brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.telegram-icon-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2ea5e6, #6fd0ff 62%, #bdeeff);
  box-shadow: 0 20px 44px rgba(46, 165, 230, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.telegram-icon-link:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 52px rgba(46, 165, 230, 0.34);
  filter: saturate(1.04);
}

.telegram-icon-link svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.landing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 34px;
  min-height: calc(92vh - 110px);
}

.landing-copy {
  max-width: 690px;
}

.landing-title {
  max-width: 11ch;
  font-size: clamp(3.3rem, 7vw, 6.3rem);
  line-height: 0.92;
}

.landing-lead {
  max-width: 36rem;
  margin-top: 24px;
}

.landing-actions {
  margin-top: 34px;
}

.landing-primary {
  min-width: 220px;
  background: linear-gradient(135deg, #2ea5e6, #79d8ff 62%, #d8f6ff);
  color: #0d5475;
  box-shadow: 0 18px 40px rgba(46, 165, 230, 0.24);
}

.landing-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hint-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #43b0ea;
  box-shadow: 0 0 18px rgba(67, 176, 234, 0.45);
}

.landing-side {
  display: grid;
  gap: 20px;
}

.landing-feature-card,
.landing-orbit-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 252, 254, 0.94), rgba(252, 244, 248, 0.84));
  border: 1px solid rgba(229, 176, 198, 0.26);
  box-shadow: 0 28px 54px rgba(213, 162, 184, 0.17);
}

.landing-feature-card {
  padding: 28px;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(46, 165, 230, 0.12);
  color: #227cad;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-card-title {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.landing-card-text {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.landing-inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #227cad;
  font-weight: 700;
  text-decoration: none;
}

.landing-inline-link:hover {
  text-decoration: underline;
}

.landing-orbit-card {
  min-height: 260px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(130, 210, 246, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 251, 253, 0.95), rgba(245, 234, 240, 0.88));
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(46, 165, 230, 0.18);
  border-radius: 999px;
}

.orbit-ring-one {
  width: 230px;
  height: 230px;
  animation: drift 8.5s ease-in-out infinite;
}

.orbit-ring-two {
  width: 158px;
  height: 158px;
  animation: drift 6.8s ease-in-out infinite reverse;
}

.orbit-core {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5bed5, #ffffff 64%, #c8f0ff);
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.18em;
  box-shadow: 0 18px 38px rgba(203, 154, 177, 0.22);
}

.landing-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.82;
  pointer-events: none;
}

.landing-glow-left {
  left: -90px;
  top: 90px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(247, 189, 216, 0.72), rgba(247, 189, 216, 0));
}

.landing-glow-right {
  right: -60px;
  bottom: 70px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(132, 213, 247, 0.38), rgba(132, 213, 247, 0));
}

@media (max-width: 900px) {
  .landing-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 28px;
  }

  .landing-copy,
  .landing-title {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .landing-shell {
    min-height: auto;
    padding: 22px;
  }

  .landing-topbar {
    align-items: flex-start;
  }

  .landing-brand {
    max-width: calc(100% - 86px);
  }

  .telegram-icon-link {
    width: 58px;
    height: 58px;
  }

  .telegram-icon-link svg {
    width: 24px;
    height: 24px;
  }

  .landing-title {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .landing-hint {
    line-height: 1.6;
  }

  .landing-feature-card,
  .landing-orbit-card {
    border-radius: 24px;
  }

  .landing-feature-card {
    padding: 22px;
  }
}
body.landing-page {
  color: #34222d;
  font-family: "Segoe UI Variable", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 215, 230, 0.95), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(214, 240, 255, 0.85), transparent 20%),
    radial-gradient(circle at 78% 80%, rgba(255, 226, 237, 0.88), transparent 24%),
    linear-gradient(135deg, #fff8fb 0%, #fffdfd 45%, #f7fbff 100%);
}

body.landing-page::before {
  top: -60px;
  left: -70px;
  width: 360px;
  height: 360px;
  background: rgba(255, 210, 228, 0.58);
}

body.landing-page::after {
  right: -100px;
  bottom: -70px;
  width: 380px;
  height: 380px;
  background: rgba(183, 227, 255, 0.26);
}

body.landing-page .hearts span {
  color: rgba(221, 131, 171, 0.24);
}

body.landing-page .particle {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 18px rgba(179, 219, 255, 0.62);
}

.landing-main {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 1220px);
  margin: 0 auto;
  padding: 24px 0 max(28px, env(safe-area-inset-bottom));
}

body.landing-page .landing-shell {
  min-height: calc(100vh - 48px);
  padding: 30px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 253, 0.74)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(233, 198, 214, 0.48);
  backdrop-filter: blur(20px);
  box-shadow: 0 34px 90px rgba(190, 155, 172, 0.14);
}

body.landing-page .landing-shell::before {
  inset: 14px;
  border-radius: 28px;
  border-color: rgba(255, 255, 255, 0.62);
}

.landing-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.landing-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(145deg, #3c2430, #8d566f 65%, #efc4d5);
  color: #fff9fb;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  box-shadow: 0 18px 40px rgba(113, 69, 88, 0.26);
}

.landing-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.landing-brand-text strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-brand-text span {
  color: #7c6470;
  font-size: 0.94rem;
}

.telegram-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(105, 189, 233, 0.32);
  box-shadow: 0 16px 32px rgba(85, 172, 219, 0.18);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.telegram-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(85, 172, 219, 0.24);
  background: rgba(255, 255, 255, 0.86);
}

.telegram-pill-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f9ee1, #6ed2ff 62%, #a9ebff);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(47, 158, 225, 0.28);
}

.telegram-pill-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.telegram-pill-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.telegram-pill-copy strong {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.telegram-pill-copy span {
  color: #5e7e91;
  font-size: 0.94rem;
}

.landing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 220px);
  padding-top: 34px;
}

.landing-copy {
  max-width: 640px;
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 241, 247, 0.88);
  border: 1px solid rgba(228, 181, 201, 0.4);
  color: #9f637c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-title {
  margin-top: 20px;
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.landing-lead {
  max-width: 36rem;
  margin-top: 22px;
  color: #715965;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.9;
}

.landing-actions {
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.landing-primary {
  min-width: 220px;
  background: linear-gradient(135deg, #30212b, #7f5166 55%, #f3c5d7);
  color: #fff7fb;
  box-shadow: 0 20px 46px rgba(106, 70, 87, 0.28);
}

.landing-primary:hover {
  box-shadow: 0 26px 54px rgba(106, 70, 87, 0.34);
}

.landing-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(228, 181, 201, 0.34);
  color: #7a5767;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.landing-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(188, 150, 169, 0.16);
}

.landing-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.landing-point {
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(232, 201, 214, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.landing-point-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(48, 33, 43, 0.08);
  color: #6f5160;
  font-size: 0.82rem;
  font-weight: 800;
}

.landing-point h2,
.landing-point p,
.landing-card-title,
.landing-card-text {
  margin: 0;
}

.landing-point h2 {
  margin-top: 14px;
  font-size: 1rem;
  font-weight: 700;
}

.landing-point p {
  margin-top: 8px;
  color: #7a6470;
  line-height: 1.7;
  font-size: 0.94rem;
}

.landing-showcase {
  position: relative;
}

.landing-window {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(254, 247, 250, 0.82)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  border: 1px solid rgba(232, 201, 214, 0.48);
  box-shadow: 0 34px 74px rgba(182, 144, 163, 0.2);
}

.landing-window::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(147, 217, 255, 0.24), rgba(147, 217, 255, 0));
}

.landing-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 66px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(232, 201, 214, 0.34);
}

.landing-window-dots {
  display: inline-flex;
  gap: 8px;
}

.landing-window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0bfd4, #ffe2ee);
}

.landing-window-title {
  color: #876776;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-window-body {
  position: relative;
  padding: 28px;
  display: grid;
  gap: 18px;
}

.landing-channel-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 254, 0.98), rgba(250, 243, 247, 0.92));
  border: 1px solid rgba(230, 196, 213, 0.42);
  box-shadow: 0 24px 52px rgba(194, 155, 173, 0.16);
}

.landing-channel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(47, 158, 225, 0.1);
  color: #247eb1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7d8b71;
  font-size: 0.92rem;
}

.landing-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7bc588;
  box-shadow: 0 0 14px rgba(123, 197, 136, 0.42);
}

.landing-card-title {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 0.96;
}

.landing-card-text {
  margin-top: 16px;
  color: #745c68;
  line-height: 1.85;
  font-size: 1rem;
}

.landing-bubble-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.landing-bubble {
  width: fit-content;
  max-width: min(100%, 320px);
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 0.96rem;
  line-height: 1.55;
}

.landing-bubble-soft {
  background: rgba(255, 236, 245, 0.9);
  color: #81586b;
}

.landing-bubble-strong {
  margin-left: auto;
  background: linear-gradient(135deg, #2f9ee1, #71d7ff);
  color: #ffffff;
  box-shadow: 0 18px 28px rgba(47, 158, 225, 0.22);
}

.landing-floating-note {
  margin-left: auto;
  width: min(100%, 240px);
  padding: 20px 20px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(50, 34, 45, 0.94), rgba(86, 61, 73, 0.92));
  color: #fff7fb;
  box-shadow: 0 24px 48px rgba(67, 45, 56, 0.26);
  transform: translateY(0);
  animation: landingFloat 7s ease-in-out infinite;
}

.landing-floating-note strong,
.landing-floating-note p {
  margin: 0;
}

.landing-floating-note strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.landing-floating-note p {
  margin-top: 10px;
  color: rgba(255, 240, 247, 0.8);
  line-height: 1.7;
  font-size: 0.94rem;
}

.landing-floating-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #a8dcff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-aurora {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(14px);
}

.landing-aurora-one {
  left: -60px;
  top: 110px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(244, 190, 214, 0.68), rgba(244, 190, 214, 0));
}

.landing-aurora-two {
  right: 8%;
  bottom: 12%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(158, 220, 255, 0.28), rgba(158, 220, 255, 0));
}

@keyframes landingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .landing-main {
    width: min(calc(100% - 20px), 1220px);
  }

  .landing-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .landing-copy {
    max-width: none;
  }

  .landing-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .landing-main {
    width: min(calc(100% - 14px), 1220px);
    padding-top: 14px;
  }

  body.landing-page .landing-shell {
    min-height: auto;
    padding: 20px;
    border-radius: 28px;
  }

  body.landing-page .landing-shell::before {
    inset: 10px;
    border-radius: 20px;
  }

  .landing-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .telegram-pill {
    width: 100%;
    justify-content: space-between;
  }

  .landing-title {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .landing-actions,
  .landing-points {
    grid-template-columns: 1fr;
  }

  .landing-actions {
    display: grid;
  }

  .landing-secondary,
  .landing-primary {
    width: 100%;
  }

  .landing-window-bar,
  .landing-window-body,
  .landing-channel-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .landing-window-body {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .landing-channel-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-floating-note {
    width: 100%;
  }
}
/* landing v3 fixes */
.landing-brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  padding: 8px;
  border-radius: 20px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 201, 214, 0.5);
  box-shadow: 0 18px 40px rgba(113, 69, 88, 0.18);
}

.landing-brand-mark {
  display: none;
}

.landing-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(370px, 0.86fr);
  align-items: start;
  gap: 48px;
}

.landing-copy,
.landing-showcase {
  min-width: 0;
}

.landing-copy {
  max-width: 580px;
}

.landing-title {
  max-width: 7ch;
  font-size: clamp(3.15rem, 5.35vw, 5.55rem);
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.landing-lead {
  max-width: 31rem;
}

.landing-window {
  margin-top: 54px;
}

@media (max-width: 1180px) {
  .landing-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
    gap: 34px;
  }

  .landing-title {
    max-width: 8ch;
    font-size: clamp(2.95rem, 4.9vw, 4.85rem);
  }
}

@media (max-width: 980px) {
  .landing-copy {
    max-width: none;
  }

  .landing-title {
    max-width: none;
  }

  .landing-window {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .landing-brand-logo {
    width: 52px;
    height: 52px;
    padding: 7px;
    border-radius: 18px;
  }

  .landing-title {
    font-size: clamp(2.55rem, 11.5vw, 3.9rem);
  }
}
/* landing v4 readability */
.landing-showcase {
  width: min(100%, 520px);
  margin-left: auto;
}

.landing-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 42px;
}

.landing-copy {
  max-width: 660px;
}

.landing-title {
  max-width: 10ch;
  font-size: clamp(3rem, 4.6vw, 4.95rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.landing-lead {
  max-width: 32rem;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.8;
}

.landing-point p,
.landing-card-text,
.landing-floating-note p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.landing-window {
  margin-top: 16px;
}

@media (max-width: 1180px) {
  .landing-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 30px;
  }

  .landing-title {
    max-width: 11ch;
    font-size: clamp(2.85rem, 4.3vw, 4.45rem);
  }
}

@media (max-width: 980px) {
  .landing-showcase {
    width: 100%;
  }

  .landing-title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .landing-title {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }
}
/* landing v5 mobile menu */
.landing-mobile-toggle,
.landing-mobile-hero,
.landing-mobile-menu,
.landing-mobile-backdrop {
  display: none;
}

body.landing-page.menu-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .landing-topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .landing-mobile-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(228, 181, 201, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #523744;
    box-shadow: 0 16px 32px rgba(188, 150, 169, 0.16);
  }

  .landing-mobile-toggle-lines {
    display: grid;
    gap: 4px;
  }

  .landing-mobile-toggle-lines span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .landing-mobile-toggle-text {
    font-size: 0.92rem;
    font-weight: 700;
  }

  .telegram-pill {
    display: none;
  }

  .landing-mobile-hero {
    display: block;
    margin-top: 18px;
    padding: 22px 20px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 251, 253, 0.94), rgba(252, 244, 248, 0.88));
    border: 1px solid rgba(232, 201, 214, 0.42);
    box-shadow: 0 24px 48px rgba(194, 155, 173, 0.14);
  }

  .landing-mobile-kicker,
  .landing-mobile-title,
  .landing-mobile-text {
    margin: 0;
  }

  .landing-mobile-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 241, 247, 0.9);
    color: #9f637c;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .landing-mobile-title {
    margin-top: 14px;
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 0.98;
  }

  .landing-mobile-text {
    margin-top: 14px;
    color: #715965;
    line-height: 1.75;
    font-size: 0.98rem;
  }

  .landing-mobile-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .landing-mobile-primary,
  .landing-mobile-hero .landing-secondary {
    width: 100%;
  }

  .landing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
  }

  .landing-copy {
    display: none;
  }

  .landing-showcase {
    width: 100%;
    margin-left: 0;
  }

  .landing-window {
    margin-top: 0;
  }

  .landing-mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(59, 35, 47, 0.28);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  body.menu-open .landing-mobile-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .landing-mobile-menu {
    display: block;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 0;
    z-index: 91;
    max-height: min(82svh, 760px);
    padding: 18px;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(180deg, rgba(255, 253, 254, 0.98), rgba(250, 243, 247, 0.96));
    border: 1px solid rgba(232, 201, 214, 0.5);
    box-shadow: 0 -24px 54px rgba(101, 67, 82, 0.18);
    overflow: auto;
    overscroll-behavior: contain;
    transform: translateY(calc(100% + 18px));
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }

  .landing-mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .landing-mobile-menu-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    background: linear-gradient(180deg, rgba(255, 253, 254, 0.98), rgba(255, 253, 254, 0.9));
  }

  .landing-mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .landing-mobile-menu-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .landing-mobile-menu-brand-copy strong {
    font-size: 0.96rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .landing-mobile-menu-brand-copy span {
    color: #7c6470;
    font-size: 0.88rem;
  }

  .landing-mobile-close {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(228, 181, 201, 0.38);
    background: rgba(255, 255, 255, 0.84);
  }

  .landing-mobile-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #523744;
  }

  .landing-mobile-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .landing-mobile-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .landing-mobile-menu-body {
    padding-top: 8px;
  }

  .landing-mobile-menu-body .landing-copy {
    display: block;
    max-width: none;
  }

  .landing-mobile-menu-body .landing-title {
    max-width: none;
    font-size: clamp(2.3rem, 10vw, 3.5rem);
    line-height: 0.98;
  }

  .landing-mobile-menu-body .landing-lead {
    max-width: none;
    font-size: 1rem;
  }

  .landing-mobile-menu-body .landing-actions {
    display: grid;
    gap: 12px;
  }

  .landing-mobile-menu-body .landing-primary,
  .landing-mobile-menu-body .landing-secondary {
    width: 100%;
  }

  .landing-mobile-menu-body .landing-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .landing-mobile-menu-body .landing-point {
    background: rgba(255, 255, 255, 0.68);
  }
}