@import url("https://fonts.googleapis.com/css2?family=Jersey+15&family=Jersey+20&family=Space+Grotesk:wght@400;500;700;800&display=swap");

:root {
  color-scheme: light;
  --lp-frame-width: 960px;
  --lp-page-pad: 20px;
  --lp-text: #023048;
  --lp-glass-fill: rgba(255, 255, 255, 0.78);
  --lp-glass-border: rgba(255, 255, 255, 0.28);
  --lp-glass-glow: rgba(255, 255, 255, 0.16);
  --lp-cta: #fb8601;
  --lp-cta-shadow: rgba(2, 48, 72, 0.24);
  --lp-support: #219ebd;
  --lp-scrim: rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  background: #023048;
  color: var(--lp-text);
  font-family: "Space Grotesk", "Segoe UI", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.lp-background,
.lp-scrim {
  inset: 0;
  position: fixed;
}

.lp-background {
  background-image: url("../marketing/mountain-sunset.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

.lp-scrim {
  background: var(--lp-scrim);
  pointer-events: none;
  z-index: 1;
}

.lp-topbar {
  padding: 9px var(--lp-page-pad) 0;
  position: relative;
  z-index: 20;
}

.lp-topbar-surface {
  align-items: center;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--lp-glass-fill);
  border: 1px solid var(--lp-glass-border);
  border-radius: 24px;
  box-shadow:
    0 0 18px 1px var(--lp-glass-glow),
    inset 0 1px 18px rgba(11, 14, 20, 0.07);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--lp-frame-width);
  min-height: 80px;
  padding: 14px 16px;
  width: 100%;
}

.lp-brand {
  align-items: center;
  color: #2f2f2e;
  display: inline-flex;
  flex: 0 1 auto;
  font-family: "Jersey 15", "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  min-width: 0;
  padding: 2px 4px;
  white-space: nowrap;
}

.lp-nav {
  align-items: center;
  display: flex;
  flex: 0 1 auto;
  gap: 10px;
  justify-content: flex-end;
  min-width: 0;
}

.lp-nav > a,
.lp-nav > span {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--lp-text);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  white-space: nowrap;
}

.lp-nav > span:not(.nav-cta) {
  opacity: 0.78;
}

.lp-nav > a:not(.nav-cta) {
  background: rgba(2, 48, 72, 0.06);
  border-color: rgba(2, 48, 72, 0.08);
}

.lp-language-menu {
  position: relative;
}

.lp-language-menu summary {
  align-items: center;
  background: #ffffff;
  border: 1.2px solid rgba(2, 48, 72, 0.32);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(2, 48, 72, 0.08);
  color: var(--lp-text);
  cursor: pointer;
  display: inline-flex;
  font-family: "Space Grotesk", "Segoe UI", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  list-style: none;
  min-height: 52px;
  min-width: 116px;
  padding: 12px 40px 12px 18px;
  position: relative;
  user-select: none;
  white-space: nowrap;
}

.lp-language-menu summary::-webkit-details-marker {
  display: none;
}

.lp-language-menu summary::after {
  border-bottom: 2px solid var(--lp-text);
  border-right: 2px solid var(--lp-text);
  content: "";
  height: 7px;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 7px;
}

.lp-language-menu[open] summary {
  border-color: var(--lp-support);
  box-shadow: 0 10px 24px rgba(2, 48, 72, 0.12);
}

.lp-language-menu-surface {
  background: #ffffff;
  border: 1px solid rgba(2, 48, 72, 0.28);
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(2, 48, 72, 0.12);
  display: grid;
  gap: 2px;
  min-width: 100%;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 5;
}

.lp-language-option {
  align-items: center;
  appearance: none;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--lp-text);
  cursor: pointer;
  display: flex;
  font-family: "Space Grotesk", "Segoe UI", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 700;
  justify-content: flex-start;
  letter-spacing: 0;
  min-height: 44px;
  min-width: 124px;
  padding: 10px 36px 10px 12px;
  position: relative;
  text-align: left;
  white-space: nowrap;
}

.lp-language-option:hover:not(:disabled):not([aria-disabled="true"]) {
  background: rgba(2, 48, 72, 0.07);
}

.lp-language-option.is-selected {
  border-color: rgba(33, 158, 189, 0.52);
}

.lp-language-option.is-selected::after {
  border-bottom: 2px solid var(--lp-support);
  border-right: 2px solid var(--lp-support);
  content: "";
  height: 9px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 5px;
}

.lp-language-option:disabled,
.lp-language-option[aria-disabled="true"] {
  cursor: default;
}

.lp-nav a:focus-visible,
.lp-brand:focus-visible,
.lp-language-menu summary:focus-visible,
.lp-language-option:focus-visible {
  outline: 2px solid var(--lp-cta);
  outline-offset: 3px;
}

.lp-nav .nav-cta {
  background: var(--lp-cta);
  border-color: var(--lp-cta);
  border-radius: 9px;
  box-shadow: 4px 4px 0 var(--lp-text);
  color: var(--lp-text);
  font-family: "Jersey 20", "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 22.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
  line-height: 1;
  min-height: 52px;
  min-width: 112px;
  opacity: 1;
  padding: 14px 18px;
}

.lp-main {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  margin: 0 auto;
  max-width: calc(var(--lp-frame-width) + var(--lp-page-pad) + var(--lp-page-pad));
  min-height: calc(100vh - 89px);
  padding: 20px var(--lp-page-pad) 40px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.lp-glass-widget {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--lp-glass-fill);
  border: 1px solid var(--lp-glass-border);
  border-radius: 30px;
  box-shadow:
    0 0 26px var(--lp-glass-glow),
    inset 0 1px 18px rgba(11, 14, 20, 0.07);
  overflow: hidden;
  padding: 56px;
  position: relative;
  width: 100%;
}

.lp-hero-widget {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) 128px;
  min-height: min(560px, calc(100vh - 149px));
}

.lp-hero-copy {
  max-width: 720px;
  min-width: 0;
}

.lp-hero-copy h1 {
  color: var(--lp-text);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.22;
  margin: 0;
  overflow-wrap: anywhere;
}

.lp-title-line {
  white-space: nowrap;
}

.lp-hero-lead {
  color: var(--lp-text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 640px;
  opacity: 0.82;
  overflow-wrap: anywhere;
}

.lp-hero-lead.lp-hero-video-copy {
  align-self: center;
  font-size: 19px;
  line-height: 1.75;
  margin: 0;
  max-width: 456px;
  overflow-wrap: normal;
}

.lp-hero-lead-question {
  white-space: nowrap;
}

.lp-hero-video-copy-block {
  align-self: center;
  min-width: 0;
}

.lp-hero-video-copy-block .lp-hero-actions {
  margin-top: 22px;
}

.lp-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.lp-hero-dino {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 220px;
}

.lp-hero-video-panel {
  isolation: isolate;
  max-width: 378px;
  position: relative;
  width: 100%;
}

.lp-hero-video-row {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(420px, 456px) minmax(240px, 378px);
  justify-self: center;
  max-width: 848px;
  width: 100%;
}

.lp-hero-video {
  background: rgba(2, 48, 72, 0.92);
  border: 1px solid rgba(2, 48, 72, 0.14);
  border-radius: 18px;
  box-shadow: 5px 5px 0 rgba(2, 48, 72, 0.18);
  display: block;
  height: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: paint;
  width: 100%;
}

.lp-hero-dino-sprite {
  aspect-ratio: 1;
  display: block;
  filter: drop-shadow(0 16px 12px rgba(2, 48, 72, 0.2));
  overflow: hidden;
  position: relative;
  width: 128px;
}

.lp-hero-dino-frame {
  animation:
    dino-bite-frames 0.72s steps(1, end) infinite,
    dino-character-visible 20s steps(1, end) infinite;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 300% 100%;
  display: block;
  image-rendering: pixelated;
  inset: 0;
  opacity: 0;
  position: absolute;
}

.lp-hero-dino-frame--nico {
  animation-delay: 0s, 0s;
  background-image: url("../marketing/dino-bite-nico.png");
}

.lp-hero-dino-frame--olaf {
  animation-delay: 0s, 5s;
  background-image: url("../marketing/dino-bite-olaf.png");
}

.lp-hero-dino-frame--mort {
  animation-delay: 0s, 10s;
  background-image: url("../marketing/dino-bite-mort.png");
}

.lp-hero-dino-frame--sena {
  animation-delay: 0s, 15s;
  background-image: url("../marketing/dino-bite-sena.png");
}

@keyframes dino-bite-frames {
  0%,
  32.99% {
    background-position: 0 0;
  }

  33%,
  65.99% {
    background-position: 50% 0;
  }

  66%,
  100% {
    background-position: 100% 0;
  }
}

@keyframes dino-character-visible {
  0%,
  24.99% {
    opacity: 1;
  }

  25%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-dino-frame {
    animation: none;
  }

  .lp-hero-dino-frame--nico {
    opacity: 1;
  }
}

.hero-cta {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 9px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.1px;
  line-height: 1;
  min-height: 52px;
  min-width: 132px;
  padding: 14px 18px;
  white-space: nowrap;
}

.hero-cta.primary {
  background: var(--lp-cta);
  border-color: var(--lp-cta);
  box-shadow: 4px 4px 0 var(--lp-text);
  color: var(--lp-text);
  font-family: "Jersey 20", "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 22.5px;
}

.hero-cta.secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(2, 48, 72, 0.24);
  color: var(--lp-text);
  font-family: "Space Grotesk", "Segoe UI", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 15px;
  min-width: 140px;
}

.hero-cta:focus-visible {
  outline: 2px solid var(--lp-cta);
  outline-offset: 3px;
}

.lp-product-widget,
.lp-catalog-widget,
.lp-ai-widget,
.lp-final-cta-widget {
  display: grid;
  gap: 28px;
}

.lp-section-copy {
  max-width: 720px;
}

.lp-kicker {
  color: var(--lp-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 12px;
  opacity: 0.72;
  text-transform: uppercase;
}

.lp-section-copy h2,
.lp-final-copy h2 {
  color: var(--lp-text);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.24;
  margin: 0;
}

.lp-section-lead,
.lp-scene-copy p,
.lp-scene-copy li,
.lp-final-copy p {
  color: var(--lp-text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.72;
  margin: 8px 0 0;
  opacity: 0.78;
}

.lp-section-lead {
  font-size: 16px;
  margin-top: 14px;
  max-width: 680px;
}

.lp-catalog-visual img {
  border: 1px solid rgba(2, 48, 72, 0.16);
  border-radius: 8px;
  display: block;
  height: auto;
  width: 100%;
}

.lp-scene-stack {
  display: grid;
  gap: 34px;
}

.lp-scene {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  justify-items: stretch;
  min-width: 0;
}

.lp-scene img {
  border: 1px solid rgba(2, 48, 72, 0.16);
  border-radius: 8px;
  display: block;
  height: auto;
  justify-self: end;
  width: min(100%, 340px);
}

.lp-scene-copy {
  justify-self: stretch;
  max-width: none;
}

.lp-scene-copy h3 {
  color: var(--lp-text);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0;
}

.lp-step-number {
  color: var(--lp-text);
  display: inline-block;
  font-family: "Jersey 20", "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1px;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.7;
}

.lp-scene-copy ul {
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.lp-scene-copy li {
  margin-top: 0;
}

.lp-assist-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-assist-shot {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.lp-assist-shot img {
  border: 1px solid rgba(2, 48, 72, 0.16);
  border-radius: 8px;
  display: block;
  height: auto;
  width: 100%;
}

.lp-assist-shot h3 {
  color: var(--lp-text);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0;
}

.lp-final-cta-widget {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: 42px;
  padding-top: 42px;
}

.lp-final-copy {
  min-width: 0;
}

.lp-final-copy p {
  max-width: 520px;
}

.lp-final-cta-widget .lp-hero-actions {
  margin-top: 0;
}

.lp-pricing-modal {
  align-items: center;
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px var(--lp-page-pad);
  position: fixed;
  z-index: 50;
}

.lp-pricing-modal:target {
  display: flex;
}

.lp-pricing-backdrop {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(2, 48, 72, 0.42);
  inset: 0;
  position: absolute;
  z-index: 0;
}

.lp-pricing-surface {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow:
    0 24px 48px rgba(2, 48, 72, 0.2),
    inset 0 1px 18px rgba(11, 14, 20, 0.06);
  color: var(--lp-text);
  display: grid;
  gap: 16px;
  max-height: calc(100vh - 48px);
  max-width: 680px;
  overflow: auto;
  padding: 20px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.lp-pricing-header {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.lp-pricing-header h2 {
  color: var(--lp-text);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
}

.lp-pricing-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(2, 48, 72, 0.18);
  border-radius: 8px;
  color: var(--lp-text);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
}

.lp-pricing-grid {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-plan-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(2, 48, 72, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 18px rgba(2, 48, 72, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
}

.lp-plan-card--featured {
  background: rgba(143, 202, 230, 0.18);
  border-color: var(--lp-cta);
  border-width: 1.5px;
  box-shadow: 0 10px 20px rgba(2, 48, 72, 0.14);
}

.lp-plan-badge {
  align-items: center;
  align-self: flex-start;
  background: rgba(143, 202, 230, 0.26);
  border: 1px solid rgba(2, 48, 72, 0.16);
  border-radius: 8px;
  color: var(--lp-text);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-height: 28px;
  padding: 7px 10px;
}

.lp-plan-card--featured .lp-plan-badge {
  background: rgba(251, 134, 1, 0.16);
  border-color: rgba(251, 134, 1, 0.38);
  color: var(--lp-cta);
}

.lp-plan-card h3,
.lp-plan-title-row h3 {
  color: var(--lp-text);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin: 18px 0 0;
}

.lp-plan-title-row {
  align-items: flex-end;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-width: 0;
}

.lp-plan-title-row p {
  color: var(--lp-text);
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  margin: 18px 0 0;
  white-space: nowrap;
}

.lp-plan-included {
  color: var(--lp-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  margin: 24px 0 0;
}

.lp-plan-features {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.lp-plan-features li {
  align-items: flex-start;
  color: var(--lp-text);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  line-height: 1.45;
  opacity: 0.78;
}

.lp-plan-features li::before {
  border-bottom: 3px solid var(--lp-support);
  border-left: 3px solid var(--lp-support);
  content: "";
  flex: 0 0 auto;
  height: 6px;
  margin-top: 4px;
  transform: rotate(-45deg);
  width: 12px;
}

.lp-plan-card--featured .lp-plan-features li::before {
  border-color: var(--lp-cta);
}

.lp-pricing-footnote {
  color: var(--lp-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  opacity: 0.68;
}

.lp-pricing-close:focus-visible {
  outline: 2px solid var(--lp-cta);
  outline-offset: 3px;
}

.lp-footer {
  padding: 0 var(--lp-page-pad) 34px;
  position: relative;
  z-index: 2;
}

.lp-footer-surface {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--lp-glass-fill);
  border: 1px solid var(--lp-glass-border);
  border-radius: 24px;
  box-shadow:
    0 0 18px 1px var(--lp-glass-glow),
    inset 0 1px 18px rgba(11, 14, 20, 0.07);
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: var(--lp-frame-width);
  padding: 24px 28px;
  width: 100%;
}

.lp-footer-main {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}

.lp-footer-logo {
  color: #2f2f2e;
  display: inline-flex;
  font-family: "Jersey 15", "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 10px;
}

.lp-footer p {
  color: var(--lp-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  opacity: 0.78;
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: flex-end;
}

.lp-footer-links a {
  align-items: center;
  background: rgba(2, 48, 72, 0.06);
  border: 1px solid rgba(2, 48, 72, 0.08);
  border-radius: 10px;
  color: var(--lp-text);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  min-height: 38px;
  padding: 8px 11px;
  white-space: nowrap;
}

.lp-footer a:focus-visible {
  outline: 2px solid var(--lp-cta);
  outline-offset: 3px;
}

.lp-footer-meta {
  align-items: center;
  border-top: 1px solid rgba(2, 48, 72, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
  padding-top: 16px;
}

.lp-footer-meta a {
  color: var(--lp-text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

  .lp-hero-dino {
    min-height: auto;
    justify-content: flex-start;
  }

  .lp-hero-dino-sprite {
    width: 112px;
  }

  .lp-hero-video-panel {
    max-width: 378px;
  }

  .lp-hero-video-row {
    gap: 22px;
    grid-template-columns: minmax(320px, 1fr) minmax(220px, 340px);
    max-width: 100%;
  }

  .lp-hero-lead-question {
    white-space: normal;
  }

  .lp-title-line {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  .lp-topbar-surface {
    border-radius: 16px;
    min-height: 58px;
    padding: 9px 12px;
  }

  .lp-brand {
    font-family: "Jersey 20", "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 22.5px;
    font-weight: 800;
    letter-spacing: 0.1px;
  }

  .lp-nav {
    gap: 8px;
  }

  .lp-nav > span:not(.nav-cta) {
    display: none;
  }

  .lp-nav > a:not(.nav-cta) {
    min-height: 35px;
    padding: 6px 10px;
  }

  .lp-nav .nav-cta {
    border-radius: 9px;
    box-shadow: 3px 3px 0 var(--lp-text);
    font-size: 20px;
    min-height: 35px;
    min-width: 78px;
    padding: 6px 12px;
  }

  .lp-language-menu summary {
    border-radius: 12px;
    font-size: 12px;
    min-height: 35px;
    min-width: 88px;
    padding: 6px 30px 6px 12px;
  }

  .lp-language-menu summary::after {
    height: 6px;
    right: 13px;
    width: 6px;
  }

  .lp-language-menu-surface {
    border-radius: 16px;
    top: calc(100% + 6px);
  }

  .lp-language-option {
    min-height: 36px;
    min-width: 104px;
    padding-bottom: 8px;
    padding-top: 8px;
  }

  .lp-main {
    min-height: calc(100vh - 67px);
    padding-top: 20px;
  }

  .lp-glass-widget {
    border-radius: 24px;
    padding: 34px 28px;
  }

  .lp-hero-widget {
    grid-template-columns: 1fr;
    min-height: min(520px, calc(100vh - 127px));
  }

  .lp-hero-dino {
    min-height: auto;
    justify-content: flex-start;
  }

  .lp-hero-dino-sprite {
    width: 96px;
  }

  .lp-hero-video {
    border-radius: 14px;
    box-shadow: 3px 3px 0 rgba(2, 48, 72, 0.16);
  }

  .lp-hero-video-row {
    gap: 22px;
  }

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

  .lp-title-line {
    white-space: normal;
  }

  .lp-hero-lead {
    font-size: 16px;
    line-height: 1.72;
    margin-top: 20px;
  }

  .lp-hero-actions {
    gap: 12px;
    margin-top: 28px;
  }

  .hero-cta {
    min-height: 48px;
    min-width: 120px;
  }

  .hero-cta.primary {
    box-shadow: 3px 3px 0 var(--lp-text);
    font-size: 20px;
  }

  .lp-final-cta-widget {
    grid-template-columns: 1fr;
  }

  .lp-scene-stack {
    gap: 28px;
  }

  .lp-scene {
    gap: 16px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .lp-scene img {
    justify-self: center;
    width: 100%;
  }

  .lp-section-copy h2,
  .lp-final-copy h2 {
    font-size: 27px;
  }

  .lp-final-cta-widget .lp-hero-actions {
    margin-top: 0;
  }

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

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

  .lp-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .lp-nav > a:not(.nav-cta) {
    display: none;
  }

  .lp-hero-video-row {
    grid-template-columns: 1fr;
    max-width: 456px;
  }

  .lp-hero-lead.lp-hero-video-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  :root {
    --lp-page-pad: 14px;
  }

  .lp-glass-widget {
    padding: 28px 22px;
  }

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

  .lp-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-cta {
    width: 100%;
  }

  .lp-hero-dino {
    display: none;
  }

  .lp-pricing-modal {
    align-items: flex-start;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .lp-pricing-surface {
    padding: 16px;
  }

  .lp-pricing-header {
    align-items: stretch;
    flex-direction: column;
  }

  .lp-pricing-close {
    width: 100%;
  }

  .lp-plan-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .lp-plan-title-row p {
    margin-top: 0;
  }

  .lp-scene-copy h3,
  .lp-assist-shot h3 {
    font-size: 16px;
  }
}
