:root {
  --lp-bg: #fff7ef;
  --lp-text: #1f2937;
  --lp-muted: #6b7280;
  --lp-card: #ffffff;
  --lp-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  --lp-shadow-sm: 0 10px 26px rgba(17, 24, 39, 0.08);
  --lp-border: rgba(15, 23, 42, 0.06);
  --lp-pink: #ff7eb6;
  --lp-pink-2: #ffb2d2;
  --lp-yellow: #ffd66b;
  --lp-yellow-2: #ffe7a6;
  --lp-green: #7be6b2;
  --lp-green-2: #bff3da;
}

html {
  scroll-behavior: smooth;
}

body.lp {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--lp-text);
  background: radial-gradient(1000px 600px at 10% 10%, rgba(255, 214, 107, 0.55), transparent 65%),
    radial-gradient(900px 650px at 85% 15%, rgba(255, 126, 182, 0.28), transparent 65%),
    radial-gradient(900px 650px at 40% 90%, rgba(123, 230, 178, 0.25), transparent 60%),
    var(--lp-bg);
}

.lp * {
  box-sizing: border-box;
}

.lp a {
  color: inherit;
  text-decoration: none;
}

.lp-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.lp-skip {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--lp-card);
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-140%);
}

.lp-skip:focus {
  transform: translateY(0);
  outline: 2px solid rgba(255, 126, 182, 0.45);
  outline-offset: 2px;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.lp-brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 214, 107, 0.9), rgba(255, 126, 182, 0.65));
  box-shadow: 0 14px 30px rgba(255, 126, 182, 0.15);
}

.lp-brand-text {
  display: grid;
  gap: 2px;
}

.lp-brand-title {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.lp-brand-sub {
  font-size: 12px;
  color: var(--lp-muted);
}

.lp-nav {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(31, 41, 55, 0.85);
  transition: transform 200ms ease, background 200ms ease;
}

.lp-nav-link:hover {
  background: rgba(255, 214, 107, 0.25);
  transform: translateY(-1px);
}

.lp-nav-link.is-active {
  background: rgba(255, 126, 182, 0.16);
  color: var(--lp-text);
}

.lp-header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-lang-switcher {
  appearance: none;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 8px 30px 8px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--lp-text);
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%231F2937%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 12px top 50%;
  background-size: 10px auto;
}

.lp-lang-switcher:hover, .lp-lang-switcher:focus {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(15, 23, 42, 0.2);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--lp-shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  white-space: nowrap;
}

.lp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
}

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

.lp-btn-primary {
  border: none;
  color: rgba(31, 41, 55, 0.98);
  background: linear-gradient(135deg, var(--lp-yellow), rgba(255, 126, 182, 0.65));
}

.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.85);
}

.lp-hero {
  position: relative;
  padding: 34px 0 40px;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 350px at 25% 15%, rgba(255, 214, 107, 0.55), transparent 60%),
    radial-gradient(650px 420px at 80% 20%, rgba(255, 126, 182, 0.22), transparent 62%);
  opacity: 0.8;
}

.lp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.lp-hero-panel {
  background: linear-gradient(180deg, rgba(255, 231, 166, 0.7), rgba(255, 247, 239, 0.85));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--lp-shadow);
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: rgba(88, 28, 135, 0.9);
  background: rgba(255, 214, 107, 0.6);
  border: 1px solid rgba(255, 214, 107, 0.6);
}

.lp-h1 {
  margin: 14px 0 10px;
  line-height: 1.02;
}

.lp-h1-line {
  display: block;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: 0.2px;
}

.lp-h1-line-yellow {
  color: rgba(245, 158, 11, 0.95);
  text-shadow: 0 8px 22px rgba(245, 158, 11, 0.18);
}

.lp-h1-line-pink {
  color: rgba(236, 72, 153, 0.95);
  text-shadow: 0 8px 22px rgba(236, 72, 153, 0.18);
}

.lp-lead {
  margin: 0;
  color: rgba(55, 65, 81, 0.85);
  font-size: 15px;
  line-height: 1.8;
}

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

.lp-store {
  flex: 0 0 auto;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: var(--lp-shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.lp-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.12);
}

.lp-store-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: rgba(17, 24, 39, 0.92);
  background: rgba(255, 255, 255, 0.7);
}

.lp-store-text {
  display: grid;
  line-height: 1.1;
}

.lp-store-top {
  font-weight: 800;
  font-size: 12px;
  opacity: 0.9;
}

.lp-store-bottom {
  font-weight: 900;
  font-size: 14px;
}

.lp-store-ios {
  background: linear-gradient(135deg, rgba(255, 214, 107, 0.95), rgba(255, 214, 107, 0.72));
}

.lp-store-gp {
  background: linear-gradient(135deg, rgba(123, 230, 178, 0.9), rgba(123, 230, 178, 0.62));
}

.lp-store-dark {
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}

.lp-store-dark .lp-store-icon {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
}

.lp-store-dark .lp-store-top,
.lp-store-dark .lp-store-bottom {
  color: rgba(255, 255, 255, 0.95);
}

.lp-hero-meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(55, 65, 81, 0.75);
  font-size: 13px;
}

.lp-link {
  border-bottom: 1px dashed rgba(236, 72, 153, 0.45);
}

.lp-link:hover {
  border-bottom-style: solid;
}

.lp-dot {
  opacity: 0.6;
}

.lp-hero-card {
  position: relative;
  border-radius: 26px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255, 126, 182, 0.4), rgba(255, 178, 210, 0.45));
  box-shadow: var(--lp-shadow);
  border: 1px solid rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.lp-hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(18px 18px at 20% 20%, rgba(255, 255, 255, 0.45) 0 40%, transparent 41%),
    radial-gradient(18px 18px at 55% 18%, rgba(255, 255, 255, 0.35) 0 40%, transparent 41%),
    radial-gradient(18px 18px at 80% 30%, rgba(255, 255, 255, 0.35) 0 40%, transparent 41%),
    radial-gradient(18px 18px at 30% 78%, rgba(255, 255, 255, 0.26) 0 40%, transparent 41%);
  opacity: 0.7;
  pointer-events: none;
}

.lp-hero-card-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.lp-hero-card-title {
  font-weight: 900;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 12px 28px rgba(17, 24, 39, 0.2);
}

.lp-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-weight: 800;
  font-size: 12px;
}

.lp-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.95);
}

.lp-chip-strong {
  color: rgba(239, 68, 68, 0.95);
}

.lp-pets {
  position: relative;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.lp-pet {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.08);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}

.lp-pet img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(17, 24, 39, 0.1));
}

.lp-progress {
  position: relative;
  margin-top: 16px;
}

.lp-progress-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-progress-bar {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
  position: relative;
}

.lp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 214, 107, 0.95), rgba(255, 126, 182, 0.85));
}

.lp-progress-knob {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.lp-section {
  padding: 60px 0;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 26px;
}

.lp-h2 {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 900;
  letter-spacing: 0.2px;
}

.lp-h2-compact {
  margin-top: 6px;
}

.lp-sub {
  margin: 10px 0 0;
  color: rgba(55, 65, 81, 0.72);
  font-size: 14px;
}

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

.lp-feature-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: var(--lp-shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.lp-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow);
}

.lp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-h3 {
  margin: 12px 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.lp-p {
  margin: 0;
  font-size: 13px;
  color: rgba(55, 65, 81, 0.72);
  line-height: 1.7;
}

.lp-card-blue { background: linear-gradient(180deg, rgba(96, 165, 250, 0.18), rgba(255, 255, 255, 0.75)); }
.lp-card-pink { background: linear-gradient(180deg, rgba(255, 126, 182, 0.18), rgba(255, 255, 255, 0.75)); }
.lp-card-green { background: linear-gradient(180deg, rgba(123, 230, 178, 0.2), rgba(255, 255, 255, 0.75)); }
.lp-card-yellow { background: linear-gradient(180deg, rgba(255, 214, 107, 0.25), rgba(255, 255, 255, 0.75)); }

.lp-section-gameplay {
  padding-top: 36px;
}

.lp-gameplay-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.lp-phone-shell {
  border-radius: 30px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--lp-shadow);
}

.lp-phone-notch {
  height: 10px;
  width: 120px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  margin: 2px auto 12px;
}

.lp-phone-screen {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 214, 107, 0.12), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.lp-board {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  padding: 16px;
}

.lp-board img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.06);
}

.lp-phone-toolbar {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
}

.lp-phone-pill {
  height: 10px;
  flex: 1;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.lp-kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 214, 107, 0.35);
  border: 1px solid rgba(255, 214, 107, 0.45);
  font-weight: 900;
  color: rgba(245, 158, 11, 0.95);
}

.lp-points {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.lp-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--lp-shadow-sm);
}

.lp-point-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 214, 107, 0.22);
  border: 1px solid rgba(255, 214, 107, 0.3);
  font-weight: 900;
  color: rgba(245, 158, 11, 0.92);
}

.lp-point:nth-child(2) .lp-point-icon {
  background: rgba(96, 165, 250, 0.18);
  border-color: rgba(96, 165, 250, 0.28);
  color: rgba(37, 99, 235, 0.92);
}

.lp-point:nth-child(3) .lp-point-icon {
  background: rgba(167, 139, 250, 0.18);
  border-color: rgba(167, 139, 250, 0.28);
  color: rgba(126, 34, 206, 0.92);
}

.lp-point-title {
  font-weight: 900;
  margin-bottom: 4px;
}

.lp-point-text {
  font-size: 13px;
  color: rgba(55, 65, 81, 0.72);
  line-height: 1.65;
}

.lp-gameplay-cta {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.lp-section-download {
  padding-bottom: 44px;
}

.lp-download-banner {
  border-radius: 30px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
  background: radial-gradient(520px 280px at 10% 20%, rgba(255, 255, 255, 0.26), transparent 65%),
    linear-gradient(135deg, rgba(255, 214, 107, 0.98), rgba(255, 126, 182, 0.6), rgba(123, 230, 178, 0.7));
  box-shadow: var(--lp-shadow);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.lp-h2-white {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
}

.lp-sub-white {
  color: rgba(255, 255, 255, 0.9);
}

.lp-download-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.lp-download-note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.lp-qr {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.lp-qr-box {
  width: min(220px, 100%);
  aspect-ratio: 1/1;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.08) 1px, transparent 1px) 0 0 / 12px 12px,
    linear-gradient(180deg, rgba(17, 24, 39, 0.08) 1px, transparent 1px) 0 0 / 12px 12px,
    radial-gradient(30px 30px at 18% 18%, rgba(17, 24, 39, 0.38), transparent 60%),
    radial-gradient(28px 28px at 82% 18%, rgba(17, 24, 39, 0.28), transparent 60%),
    radial-gradient(26px 26px at 18% 82%, rgba(17, 24, 39, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

.lp-qr-text {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
}

.lp-footer {
  padding: 44px 0 28px;
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-footer-grid {
  display: block;
}


.lp-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lp-link-col {
  min-width: 0;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--lp-shadow-sm);
}

.lp-link-title {
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 10px;
}

.lp-foot-link {
  display: block;
  padding: 6px 0;
  font-size: 12px;
  color: rgba(55, 65, 81, 0.78);
}

.lp-foot-link:hover {
  color: rgba(236, 72, 153, 0.95);
}

.lp-foot-text {
  font-size: 12px;
  color: rgba(55, 65, 81, 0.78);
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lp-footer-bottom {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  color: rgba(55, 65, 81, 0.7);
  font-size: 12px;
}

.lp-footer-sep {
  opacity: 0.6;
}

.lp-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 214, 107, 0.95);
  color: rgba(31, 41, 55, 0.9);
  font-weight: 900;
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.lp-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#features,
#gameplay,
#download,
#footer {
  scroll-margin-top: 86px;
}

@media (max-width: 1100px) {
  .lp-nav {
    display: none;
  }

  .lp-brand {
    min-width: auto;
  }
}

@media (max-width: 960px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-panel {
    padding: 22px;
  }

  .lp-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-gameplay-grid {
    grid-template-columns: 1fr;
  }

  .lp-download-banner {
    grid-template-columns: 1fr;
  }

  .lp-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .lp-container {
    width: min(1200px, calc(100% - 32px));
  }

  .lp-header-cta {
    gap: 8px;
  }

  .lp-btn {
    padding: 11px 14px;
  }

  .lp-store {
    min-width: 0;
    width: 100%;
  }

  .lp-features {
    grid-template-columns: 1fr;
  }

  .lp-footer-links {
    grid-template-columns: 1fr;
  }

  .lp-board {
    grid-template-columns: repeat(6, 1fr);
  }
}
