:root {
  color-scheme: light;
  --lp-bg: #0d2b4d;
  --lp-bg-deep: #08182f;
  --lp-shell-accent: #2dd4bf;
  --lp-page: transparent;
  --lp-ink: #0d2238;
  --lp-muted: #5f7388;
  --lp-page-max: 100%;
  --lp-page-padding: clamp(0rem, 0vw, 0rem);
  --lp-radius: 0px;
}

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

html {
  min-height: 100%;
  background: var(--lp-bg-deep);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--lp-ink);
  background:
    radial-gradient(circle at 8% 10%, color-mix(in oklch, var(--lp-shell-accent) 60%, transparent), transparent 28rem),
    radial-gradient(circle at 92% 18%, color-mix(in oklch, var(--lp-bg) 56%, transparent), transparent 30rem),
    linear-gradient(135deg, var(--lp-bg-deep), var(--lp-bg));
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.lp-preview-shell {
  width: 100%;
  min-height: 100vh;
  margin-inline: auto;
  padding: 0;
}

.lp-page-wrapper {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  border-radius: var(--lp-radius);
  background: var(--lp-page);
  color: var(--lp-ink);
  padding: 0;
}

.lp-page-wrapper > *:first-child {
  margin-top: 0;
}

.lp-page-wrapper > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  :root {
    --lp-page-padding: 0rem;
    --lp-radius: 0px;
  }

  .lp-preview-shell {
    padding-block: 0;
  }

  .lp-page-wrapper {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
