:root {
  --landing-bg: #f8efe9;
  --landing-surface: rgba(255, 255, 255, 0.78);
  --landing-card: rgba(255, 255, 255, 0.9);
  --landing-text: #2d1812;
  --landing-muted: #715149;
  --landing-accent: #ef5d45;
  --landing-accent-2: #ff8a63;
  --landing-line: rgba(94, 43, 31, 0.1);
  --landing-shadow: 0 28px 60px rgba(120, 52, 35, 0.12);
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--landing-text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(180deg, #fff2ec 0%, #f7e7de 36%, #f4efe9 100%);
}

body.age-gate-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.landing-shell {
  width: min(1340px, calc(100% - 24px));
  margin: 0 auto;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(248, 239, 233, 0.78);
  border-bottom: 1px solid var(--landing-line);
}

.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(239, 93, 69, 0.2);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy strong {
  display: block;
  font-size: 17px;
}

.brand-copy span {
  color: var(--landing-muted);
  font-size: 13px;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.landing-nav a {
  color: var(--landing-muted);
  text-decoration: none;
  font-size: 14px;
}

.landing-nav a:hover {
  color: var(--landing-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions select {
  border: 1px solid var(--landing-line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-2));
  box-shadow: 0 18px 32px rgba(239, 93, 69, 0.24);
}

.btn-ghost {
  color: var(--landing-text);
  border-color: var(--landing-line);
  background: rgba(255, 255, 255, 0.72);
}

.age-gate-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(24, 12, 10, 0.78);
  backdrop-filter: blur(12px);
}

.age-gate-modal__panel {
  width: min(440px, 100%);
  padding: 28px;
  border-radius: 24px;
  color: var(--landing-text);
  background: #fff7f2;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.age-gate-modal__badge {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: #fff;
  background: #2d1812;
  font-size: 22px;
}

.age-gate-modal__panel h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.12;
}

.age-gate-modal__panel p {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.55;
}

.age-gate-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.age-gate-modal__actions .btn {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  padding: 76px 0 46px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(45, 24, 18, 0.86) 0%, rgba(45, 24, 18, 0.62) 48%, rgba(45, 24, 18, 0.22) 100%),
    url("/pictures/landing-travel-growth-hero.png") center / cover no-repeat;
  color: #fff7f2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(248, 239, 233, 0), #f7e7de);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 390px);
  gap: 28px;
  align-items: start;
}

.hero-card,
.glass-card {
  background: var(--landing-surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: var(--landing-shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  padding: 34px 0 24px;
}

.hero-intro-panel {
  max-width: 760px;
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(45, 24, 18, 0.78), rgba(72, 30, 22, 0.54)),
    rgba(28, 16, 13, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #fff7f2;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.preview-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38d46a;
  box-shadow: 0 0 0 3px rgba(56, 212, 106, 0.18);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 0.98;
  max-width: 820px;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 247, 242, 0.84);
  font-size: 18px;
  line-height: 1.6;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-trust-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(47, 22, 19, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.hero-trust-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #fff;
}

.hero-trust-item span {
  color: rgba(255, 247, 242, 0.86);
  font-size: 13px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.age-gate {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 640px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 247, 242, 0.86);
}

.age-gate strong {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #2b1711;
  background: #fff7f2;
  font-size: 17px;
}

.age-gate span {
  font-size: 13px;
  line-height: 1.45;
}

.entry-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.entry-method {
  min-height: 54px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff7f2;
  display: grid;
  align-content: center;
  gap: 2px;
  text-align: left;
  text-decoration: none;
  font: inherit;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.entry-method strong {
  font-size: 14px;
  line-height: 1.15;
}

.entry-method span {
  color: rgba(255, 247, 242, 0.72);
  font-size: 11px;
  line-height: 1.25;
}

.entry-method-primary {
  background: rgba(255, 141, 108, 0.22);
  border-color: rgba(255, 177, 150, 0.4);
}

.entry-method-disabled {
  opacity: 0.64;
  cursor: not-allowed;
}

.hero-side {
  margin-top: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-preview {
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(45, 24, 18, 0.96), rgba(71, 28, 20, 0.92)),
    #2b1711;
  color: #fff4ef;
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
}

.preview-room {
  font-size: 13px;
  color: rgba(255, 244, 239, 0.7);
}

.first-chat-users {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 18px 0;
}

.first-chat-users span {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255, 244, 239, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.preview-watch {
  height: 220px;
  margin: 0 18px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    url("/pictures/landing-travel-growth-hero.png") center/cover;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.preview-watch-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  font-size: 13px;
}

.preview-people {
  margin: 14px 18px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.preview-person {
  aspect-ratio: 1 / 1;
  display: block;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.preview-person:hover,
.preview-person:focus-visible {
  border-color: rgba(80, 204, 255, 0.72);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(80, 204, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.preview-person img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.preview-chat {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.preview-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
}

.preview-bubble.self {
  margin-left: auto;
  background: #ff8d6c;
  color: #2b1711;
}

.preview-bubble.other {
  background: rgba(255, 255, 255, 0.09);
  color: #fff6f2;
}

.preview-composer {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 999px;
  color: rgba(255, 244, 239, 0.58);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.section {
  padding: 28px 0;
}

.quick-start-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.quick-start-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.quick-start-copy,
.quick-step {
  background: var(--landing-card);
  border: 1px solid rgba(124, 71, 58, 0.08);
  border-radius: 26px;
  box-shadow: var(--landing-shadow);
}

.quick-start-copy {
  padding: 28px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff0eb;
  color: #a63f2f;
  font-size: 13px;
  font-weight: 800;
}

.quick-start-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
}

.quick-start-copy p {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.65;
  font-size: 16px;
}

.interest-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.interest-cloud span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(239, 93, 69, 0.08);
  border: 1px solid rgba(239, 93, 69, 0.12);
  color: #6f3428;
  font-size: 14px;
  font-weight: 700;
}

.scenario-section {
  padding-top: 16px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.scenario-card {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
  text-decoration: none;
  color: var(--landing-text);
  background: var(--landing-card);
  border: 1px solid rgba(124, 71, 58, 0.08);
  border-radius: 24px;
  box-shadow: var(--landing-shadow);
}

.scenario-card span {
  font-size: 26px;
}

.scenario-card strong {
  font-size: 20px;
  line-height: 1.18;
}

.scenario-card small {
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1.5;
}

.scenario-landing {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 42px 0;
  color: #fff7f2;
  background:
    linear-gradient(90deg, rgba(45, 24, 18, 0.9), rgba(45, 24, 18, 0.48)),
    url("/pictures/landing-travel-growth-hero.png") center / cover no-repeat;
}

.scenario-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 26px;
  align-items: center;
}

.scenario-landing-copy {
  max-width: 780px;
}

.scenario-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: rgba(255, 247, 242, 0.82);
  text-decoration: none;
  font-weight: 700;
}

.scenario-landing h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.scenario-landing p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 247, 242, 0.84);
  font-size: 18px;
  line-height: 1.6;
}

.scenario-landing-demo {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(45, 24, 18, 0.96), rgba(71, 28, 20, 0.92)),
    #2b1711;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
}

.quick-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quick-step {
  padding: 22px;
}

.quick-step span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-2));
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(239, 93, 69, 0.22);
}

.quick-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.quick-step p {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.55;
  font-size: 15px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 44px);
}

.section-head p {
  margin: 0;
  max-width: 620px;
  color: var(--landing-muted);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.pricing-card,
.faq-card,
.checkout-card {
  background: var(--landing-card);
  border: 1px solid rgba(124, 71, 58, 0.08);
  border-radius: 26px;
  box-shadow: var(--landing-shadow);
}

.feature-card {
  padding: 22px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 14px;
  font-size: 22px;
  background: #fff0eb;
}

.dating-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(239, 93, 69, 0.16);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,242,236,0.92)),
    #fff;
}

.dating-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,93,143,0.24), rgba(255,93,143,0));
  pointer-events: none;
}

.dating-heart {
  color: #d83a63;
  background: linear-gradient(135deg, #fff1f5, #ffe7de);
  font-size: 30px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.6;
  font-size: 15px;
}

.free-banner {
  padding: 22px 24px;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.free-banner strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.free-banner span {
  color: var(--landing-muted);
  line-height: 1.6;
}

.product-tour {
  padding-top: 44px;
}

.screens-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 20px;
  align-items: stretch;
}

.screen-card {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(45, 24, 18, 0.94), rgba(61, 28, 23, 0.9)),
    #2d1812;
  color: #fff7f2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  box-shadow: 0 30px 64px rgba(45, 24, 18, 0.24);
}

.screen-chat {
  grid-row: span 2;
}

.screen-copy {
  padding: 22px 24px 16px;
}

.screen-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #ffb199;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.screen-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
}

.screen-copy p {
  margin: 0;
  color: rgba(255, 247, 242, 0.74);
  line-height: 1.6;
}

.app-screen,
.tracker-screen,
.reader-screen,
.movie-screen,
.theme-screen {
  margin: 0 20px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16, 12, 18, 0.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.app-screen-chat {
  min-height: 470px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(35, 20, 30, 0.98), rgba(18, 21, 36, 0.96)),
    #17131c;
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 93, 143, 0.18), rgba(96, 165, 250, 0.08)),
    rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.mock-sidebar strong {
  margin-bottom: 8px;
  color: #fff;
}

.mock-room,
.mock-online {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(255,247,242,0.86);
  background: rgba(255,255,255,0.08);
  font-size: 14px;
}

.mock-room.active {
  color: #fff;
  background: linear-gradient(135deg, #ff5d8f, #8b5cf6);
  box-shadow: 0 10px 24px rgba(255, 93, 143, 0.28);
}

.mock-theme-mini {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
}

.mock-theme-mini b {
  margin-right: auto;
  color: rgba(255,247,242,0.84);
  font-size: 12px;
}

.mock-theme-mini span,
.theme-preview-line span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--swatch);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.18);
}

.swatch-pink { --swatch: #ff5d8f; }
.swatch-green-soft { --swatch: #6ee7a8; }
.swatch-blue-soft { --swatch: #60a5fa; }
.swatch-green { --swatch: #22c55e; }
.swatch-blue { --swatch: #3b82f6; }
.swatch-amber { --swatch: #f59e0b; }

.mock-online-title {
  margin-top: 8px;
  color: rgba(255,247,242,0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.mock-chat-panel {
  min-width: 0;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 93, 143, 0.18), transparent 26%),
    radial-gradient(circle at 16% 26%, rgba(96, 165, 250, 0.16), transparent 30%),
    rgba(255,255,255,0.04);
}

.mock-chat-head {
  align-self: start;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #fff7f2;
  font-weight: 800;
}

.mock-chat-head span {
  color: rgba(255,247,242,0.64);
  font-size: 13px;
  font-weight: 600;
}

.mock-message {
  width: fit-content;
  max-width: min(420px, 86%);
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.45;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.mock-message.other {
  background: rgba(255,255,255,0.12);
  color: #fff7f2;
}

.mock-message.self {
  justify-self: end;
  background: linear-gradient(135deg, #ff5d8f, #ff8a63);
  color: #fff;
}

.mock-private-strip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(110, 231, 168, 0.13);
  color: rgba(229, 255, 239, 0.86);
}

.mock-private-strip span {
  color: rgba(229, 255, 239, 0.66);
}

.mock-composer {
  min-height: 44px;
  padding: 13px 16px;
  border-radius: 999px;
  color: rgba(255,247,242,0.5);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}

.tracker-screen {
  padding: 18px;
  background:
    radial-gradient(circle at 50% 34%, rgba(46, 204, 113, 0.2), transparent 32%),
    linear-gradient(180deg, #14241b, #0d1712);
  color: #f3fff7;
}

.tracker-top,
.reader-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tracker-top button {
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  color: #0d1712;
  background: #6ee7a8;
  font-weight: 800;
}

.tracker-top span,
.reader-toolbar span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
}

.tracker-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
  align-items: center;
  margin: 18px 0;
}

.tracker-map {
  position: relative;
  min-height: 170px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(110,231,168,0.18), transparent 28%),
    rgba(255,255,255,0.08);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.tracker-map b {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: rgba(243,255,247,0.68);
  font-size: 12px;
}

.tracker-route {
  position: absolute;
  left: 18%;
  top: 22%;
  width: 58%;
  height: 48%;
  border: 4px solid #6ee7a8;
  border-left-color: transparent;
  border-bottom-color: #f59e0b;
  border-radius: 48% 42% 55% 35%;
  transform: rotate(-14deg);
  filter: drop-shadow(0 0 10px rgba(110,231,168,0.55));
}

.tracker-ring {
  width: 150px;
  aspect-ratio: 1 / 1;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle, #14241b 58%, transparent 59%),
    conic-gradient(#6ee7a8 0 78%, rgba(255,255,255,0.16) 78% 100%);
  box-shadow: 0 22px 44px rgba(0,0,0,0.28);
}

.tracker-ring strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.tracker-ring span {
  display: block;
  text-align: center;
  color: rgba(243,255,247,0.72);
}

.tracker-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tracker-stats div {
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
}

.tracker-stats strong,
.tracker-stats span {
  display: block;
  text-align: center;
}

.tracker-stats span {
  margin-top: 4px;
  color: rgba(243,255,247,0.7);
  font-size: 12px;
}

.tracker-status {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(110,231,168,0.14);
}

.tracker-status b {
  color: #dfffe9;
}

.reader-screen {
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    #2a211c;
}

.reader-toolbar {
  justify-content: space-between;
  color: #fff7f2;
}

.reader-toolbar strong {
  margin-right: auto;
}

.reader-toolbar em {
  font-style: normal;
  color: #9d452f;
  font-weight: 800;
}

.reader-page {
  margin-top: 16px;
  padding: 20px;
  min-height: 220px;
  border-radius: 18px;
  background: #f7eadf;
  color: #3a251f;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.reader-page h4 {
  margin: 0 0 14px;
  font-size: 22px;
}

.reader-page p {
  margin: 0 0 12px;
  color: #67453b;
  line-height: 1.65;
}

.reader-share {
  margin-top: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.09);
  color: #ffd4c3;
  font-weight: 800;
}

.theme-screen {
  padding: 18px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 93, 143, 0.28), transparent 30%),
    radial-gradient(circle at 84% 70%, rgba(96, 165, 250, 0.24), transparent 32%),
    #17131c;
}

.theme-preview-line {
  display: flex;
  gap: 10px;
}

.theme-preview-line span {
  width: 46px;
  height: 46px;
}

.theme-preview-chat {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.theme-preview-chat span {
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5d8f, #8b5cf6);
}

.theme-preview-chat b {
  color: rgba(255,247,242,0.86);
}

.movie-screen {
  padding: 18px;
  background: #24130f;
  color: #fff7f2;
}

.movie-player {
  min-height: 210px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.34), rgba(0,0,0,0.08)),
    url("/pictures/landing_activity_movie.png") center/cover;
}

.movie-play {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: #2d1812;
  box-shadow: 0 18px 36px rgba(0,0,0,0.32);
}

.movie-caption {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,247,242,0.86);
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  padding: 22px;
}

.pricing-card.is-free {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 244, 0.9)),
    var(--landing-card);
  border-color: rgba(45, 24, 18, 0.08);
}

.pricing-card.is-featured {
  transform: translateY(-8px);
  border-color: rgba(239, 93, 69, 0.28);
  box-shadow: 0 30px 60px rgba(239, 93, 69, 0.18);
}

.plan-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: #fff0eb;
  color: #9d452f;
}

.pricing-card h3 {
  margin: 0 0 6px;
  font-size: 28px;
}

.pricing-card p {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.55;
}

.plan-price {
  margin: 18px 0 8px;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.plan-price-sale {
  display: grid;
  gap: 8px;
  letter-spacing: 0;
}

.old-price {
  width: max-content;
  max-width: 100%;
  color: rgba(45, 24, 18, 0.44);
  font-size: 30px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: #ef5d45;
}

.sale-price {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ef5d45, #ff8a63);
  box-shadow: 0 14px 28px rgba(239, 93, 69, 0.22);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.plan-price small {
  font-size: 16px;
  color: var(--landing-muted);
  font-weight: 500;
}

.old-price small {
  color: rgba(45, 24, 18, 0.42);
}

.feature-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4a2a21;
  line-height: 1.5;
}

.feature-list li::before {
  content: "•";
  color: var(--landing-accent);
  font-size: 22px;
  line-height: 1;
}

.plan-actions {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.checkout-card {
  padding: 24px;
}

.checkout-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.checkout-card p,
.faq-card p {
  margin: 0;
  color: var(--landing-muted);
  line-height: 1.6;
}

.checkout-notice {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff6f1;
  color: #6c4033;
  font-size: 14px;
  line-height: 1.55;
}

.checkout-message {
  margin-top: 14px;
  min-height: 24px;
  font-size: 14px;
  color: #6c4033;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-card {
  padding: 22px;
}

.footer {
  padding: 28px 0 40px;
  color: var(--landing-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--landing-line);
  padding-top: 20px;
}

.footer-links {
  white-space: nowrap;
}

.footer-legal {
  max-width: 420px;
  display: grid;
  gap: 8px;
}

.footer-legal strong {
  color: var(--landing-text);
}

.footer-legal-note {
  font-size: 14px;
  line-height: 1.55;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-legal-links a {
  text-decoration: none;
  color: #8b3c29;
}

.footer-legal-links a:hover {
  color: var(--landing-text);
}

@media (max-width: 1080px) {
  .hero-grid,
  .checkout-grid,
  .features-grid,
  .screens-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .screen-chat {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero-copy {
    padding: 30px;
  }

  .hero-trust,
  .scenario-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .landing-header-inner,
  .section-head,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    white-space: normal;
  }

  .landing-nav {
    flex-wrap: wrap;
  }

  .hero-grid,
  .quick-start-grid,
  .scenario-landing-grid,
  .features-grid,
  .screens-grid,
  .pricing-grid,
  .checkout-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .quick-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

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

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .header-actions .btn,
  .header-actions select {
    width: 100%;
  }

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

  .app-screen-chat {
    grid-template-columns: 1fr;
  }

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

  .mock-sidebar strong,
  .mock-online-title,
  .mock-theme-mini {
    grid-column: 1 / -1;
  }

  .tracker-body {
    grid-template-columns: 1fr;
  }

  .tracker-ring {
    width: min(190px, 72vw);
    margin: 0 auto;
  }

  .mock-chat-head,
  .mock-private-strip {
    flex-direction: column;
  }
}
