.landing-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.sticky-header-shell {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px clamp(32px, 4vw, 76px) 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 30px clamp(32px, 4vw, 76px) 48px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 48%, rgba(216, 246, 226, 0.55) 72%, rgba(115, 216, 196, 0.34) 100%),
    radial-gradient(circle at 86% 18%, rgba(10, 169, 178, 0.22), transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(139, 224, 108, 0.26), transparent 36%);
}

.landing-container {
  width: min(1480px, 100%);
  margin: 0 auto;
}

.hero-header {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.hero-header .brand-logo {
  width: 228px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 0;
  justify-content: center;
  min-width: 0;
}

.brand-name {
  margin: 0;
  color: #172033;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.product-name {
  margin: 0;
  color: #172033;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-layout {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 52fr) minmax(560px, 48fr);
  gap: clamp(42px, 4vw, 66px);
  align-items: center;
  padding: 30px 0 18px;
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.hero-title {
  margin: 0;
  max-width: 760px;
  color: #172033;
  font-size: clamp(54px, 3.2vw, 60px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-title-line {
  display: inline-block;
  min-height: 1.08em;
}

.hero-title-cursor {
  display: none;
  width: 0.08em;
  height: 0.88em;
  margin-left: 0.06em;
  border-radius: 999px;
  background: #172033;
  vertical-align: -0.08em;
  opacity: 0;
}

.hero-title.is-typing .hero-title-cursor,
.hero-title.is-cursor-blink .hero-title-cursor {
  display: inline-block;
}

.hero-title.is-cursor-blink .hero-title-cursor {
  animation: heroHeadlineCursor 400ms steps(1, end) infinite;
}

.hero-title.is-cursor-fade .hero-title-cursor {
  display: inline-block;
  animation: heroHeadlineCursorFade 360ms ease forwards;
}

.hero-copy {
  margin: 28px 0 0;
  max-width: 680px;
  color: #344054;
  font-size: 21px;
  line-height: 1.85;
  font-weight: 700;
}

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

.hero-primary-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 14px;
  background: linear-gradient(180deg, #22b86f, #108b56);
  color: #fff;
  box-shadow: 0 16px 34px rgba(16, 139, 86, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
}

.hero-primary-button:hover {
  background: linear-gradient(180deg, #2cc97d, #0f7e4f);
  box-shadow: 0 20px 40px rgba(16, 139, 86, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: brightness(1.03);
  transform: translateY(-2px);
}

.product-visual {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at 95% 0%, rgba(10, 169, 178, 0.28), transparent 34%);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.16), var(--inner-shadow);
  overflow: hidden;
}

.hero-demo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-demo-window {
  position: absolute;
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 58px rgba(17, 24, 39, 0.14);
  overflow: hidden;
}

.hero-demo-copy-card.is-featured {
  animation: heroCardIdle 5200ms ease-in-out infinite;
}

.hero-demo-copy-library {
  left: 34px;
  top: 36px;
  width: 76%;
  height: 470px;
  z-index: 2;
  transition: transform 520ms ease, opacity 520ms ease;
}

.hero-demo-window-top {
  display: flex;
  gap: 7px;
  height: 34px;
  align-items: center;
  padding: 0 16px;
  background: rgba(249, 250, 251, 0.88);
  border-bottom: 1px solid rgba(203, 213, 225, 0.72);
}

.hero-demo-window-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff9d19;
}

.hero-demo-window-top span:nth-child(2) {
  background: #12aeb8;
}

.hero-demo-window-top span:nth-child(3) {
  background: #22b86f;
}

.hero-demo-library-layout {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  min-height: calc(100% - 34px);
}

.hero-demo-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px 16px;
  background: rgba(255, 248, 223, 0.84);
  border-right: 1px solid rgba(203, 213, 225, 0.72);
}

.hero-demo-sidebar-line {
  height: 11px;
  border-radius: 999px;
  background: rgba(52, 64, 84, 0.16);
}

.hero-demo-sidebar-line.is-active {
  height: 34px;
  background: linear-gradient(90deg, rgba(18, 174, 184, 0.28), rgba(255, 157, 25, 0.2));
}

.hero-demo-library-main {
  padding: 20px;
}

.hero-demo-library-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-demo-library-header p,
.hero-demo-marketplace-body p {
  margin: 0 0 3px;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.hero-demo-library-header strong {
  color: #163426;
  font-size: 18px;
  line-height: 1.2;
}

.hero-demo-search {
  width: 150px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(239, 242, 247, 0.9);
  color: #98a2b3;
  font-size: 12px;
  font-weight: 800;
}

.hero-demo-copy-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 13px;
  background: #fff;
}

.hero-demo-copy-card.is-featured {
  border-color: rgba(34, 184, 111, 0.42);
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

.hero-demo-thumb {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34, 184, 111, 0.92), rgba(18, 174, 184, 0.72));
}

.hero-demo-thumb.muted {
  background: rgba(203, 213, 225, 0.72);
}

.hero-demo-copy-lines {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hero-demo-copy-lines strong,
.hero-demo-copy-lines span,
.hero-demo-copy-lines small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-demo-copy-lines strong {
  color: #172033;
  font-size: 14px;
  line-height: 1.25;
}

.hero-demo-copy-lines span,
.hero-demo-copy-lines small {
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}

.hero-demo-copy-button,
.hero-demo-publish-button {
  border: 0;
  font: inherit;
  font-weight: 900;
}

.hero-demo-copy-button {
  min-height: 36px;
  padding: 0 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #22b86f, #108b56);
  color: #fff;
  box-shadow: 0 10px 22px rgba(16, 139, 86, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-demo-copy-toast {
  position: absolute;
  right: 28px;
  bottom: 24px;
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(22, 52, 38, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 300ms ease, transform 300ms ease;
}

.hero-demo-marketplace {
  right: 32px;
  bottom: 34px;
  width: 60%;
  height: 362px;
  z-index: 3;
  opacity: 0;
  transform: translate3d(68px, 30px, 0) scale(0.91);
  transform-origin: 82% 64%;
  transition: opacity 780ms ease-out, transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-demo-marketplace-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  background: #1877f2;
  color: #fff;
}

.hero-demo-marketplace-top strong,
.hero-demo-marketplace-top span {
  font-weight: 900;
}

.hero-demo-marketplace-body {
  padding: 18px;
}

.hero-demo-marketplace-field {
  position: relative;
  display: block;
  min-height: 176px;
  margin: 12px 0 16px;
  padding: 14px;
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 13px;
  background: rgba(249, 250, 251, 0.82);
}

.hero-demo-marketplace-field span {
  display: block;
  margin-bottom: 8px;
  color: #344054;
  font-size: 12px;
  font-weight: 900;
}

.hero-demo-marketplace-field output,
.hero-demo-marketplace-field em {
  display: block;
  color: #344054;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.52;
  white-space: pre-line;
}

.hero-demo-marketplace-field em {
  color: #98a2b3;
}

.hero-demo-publish-button {
  width: 100%;
  min-height: 42px;
  border-radius: 11px;
  background: rgba(24, 119, 242, 0.18);
  color: rgba(24, 119, 242, 0.68);
  transition: background 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.hero-demo-transfer-chip {
  position: absolute;
  left: 320px;
  top: 280px;
  z-index: 4;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(34, 184, 111, 0.4);
  color: #108b56;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.12);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.96);
  transition: opacity 260ms ease, transform 620ms ease;
}

.hero-demo-cursor {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
  width: 18px;
  height: 18px;
  opacity: 1;
  transform: translate3d(460px, 120px, 0);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 260ms ease;
}

.hero-demo-cursor::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-left: 15px solid #172033;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  filter: drop-shadow(0 6px 10px rgba(17, 24, 39, 0.18));
  transform: rotate(-18deg);
}

.hero-demo.is-moving .hero-demo-cursor,
.hero-demo.is-copying .hero-demo-cursor {
  transform: translate3d(412px, 225px, 0);
}

.hero-demo.is-copying .hero-demo-copy-button {
  transform: scale(0.94);
  box-shadow: 0 0 0 8px rgba(34, 184, 111, 0.14), 0 10px 22px rgba(16, 139, 86, 0.22);
}

.hero-demo.is-copied .hero-demo-copy-toast,
.hero-demo.is-complete .hero-demo-copy-toast {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-demo.is-pasting .hero-demo-copy-toast,
.hero-demo.is-complete .hero-demo-copy-toast {
  opacity: 0;
  transform: translate3d(0, -6px, 0);
}

.hero-demo.is-transferring .hero-demo-marketplace,
.hero-demo.is-pasting .hero-demo-marketplace,
.hero-demo.is-complete .hero-demo-marketplace {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-demo.is-transferring .hero-demo-copy-library,
.hero-demo.is-pasting .hero-demo-copy-library,
.hero-demo.is-complete .hero-demo-copy-library {
  transform: translate3d(-16px, -6px, 0) scale(0.96);
  opacity: 0.92;
}

.hero-demo.is-transferring .hero-demo-transfer-chip {
  opacity: 1;
  transform: translate3d(165px, 132px, 0) scale(1);
}

.hero-demo.is-pasting .hero-demo-marketplace-field,
.hero-demo.is-complete .hero-demo-marketplace-field {
  border-color: rgba(24, 119, 242, 0.42);
  background: #fff;
}

.hero-demo.is-pasting [data-marketplace-placeholder],
.hero-demo.is-complete [data-marketplace-placeholder] {
  display: none;
}

.hero-demo.is-complete .hero-demo-publish-button {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.26);
  animation: heroPublishPulse 760ms ease-out 1;
}

.hero-demo.is-reduced .hero-demo-copy-toast,
.hero-demo.is-reduced .hero-demo-marketplace {
  opacity: 1;
  transform: none;
}

.hero-demo.is-reduced .hero-demo-publish-button {
  background: #1877f2;
  color: #fff;
  animation: none;
}

@keyframes heroHeadlineCursor {
  0%,
  49% {
    opacity: 1;
  }

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

@keyframes heroHeadlineCursorFade {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes heroCardIdle {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -1px, 0);
  }
}

@keyframes heroPublishPulse {
  0% {
    box-shadow: 0 12px 28px rgba(24, 119, 242, 0.24);
  }

  48% {
    box-shadow: 0 0 0 8px rgba(24, 119, 242, 0.12), 0 14px 32px rgba(24, 119, 242, 0.3);
  }

  100% {
    box-shadow: 0 12px 28px rgba(24, 119, 242, 0.26);
  }
}

.landing-screen {
  min-height: 85vh;
  display: grid;
  align-items: center;
  padding: 78px clamp(32px, 4vw, 76px);
}

.feature-screen {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(237, 248, 240, 0.62)),
    radial-gradient(circle at 12% 16%, rgba(255, 157, 25, 0.1), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(18, 174, 184, 0.14), transparent 30%);
}

.trial-screen {
  background:
    linear-gradient(180deg, rgba(237, 248, 240, 0.62), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at 86% 18%, rgba(34, 184, 111, 0.16), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(18, 174, 184, 0.12), transparent 30%);
}

.landing-screen-container {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #172033;
  font-size: clamp(42px, 3vw, 48px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #344054;
  font-size: clamp(22px, 1.45vw, 24px);
  line-height: 1.62;
  font-weight: 700;
}

.trial-screen .section-heading p {
  max-width: none;
  white-space: nowrap;
}

.trial-screen .landing-screen-container {
  min-width: 0;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.trial-stat-card,
.version-card,
.landing-faq-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow), var(--inner-shadow);
  backdrop-filter: blur(14px);
}

.feature-card {
  min-height: 214px;
  padding: 28px 30px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.feature-card:hover {
  border-color: rgba(34, 184, 111, 0.34);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.13), var(--inner-shadow);
  transform: translateY(-4px);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(34, 184, 111, 0.1);
  color: var(--teal-dark);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0 0 12px;
  color: #172033;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
}

.feature-card p {
  max-width: 430px;
  margin: 0;
  color: #344054;
  font-size: 18px;
  line-height: 1.82;
  font-weight: 700;
}

.product-pricing-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 28px;
  align-items: stretch;
}

.edition-feature-card,
.edition-price-card {
  min-height: 460px;
  padding: 28px 34px;
}

.edition-card-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.premium-crown {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #f5ad00;
}

.premium-crown svg {
  width: 52px;
  height: 52px;
}

.premium-crown path:first-of-type {
  fill: url("#premiumAccent");
}

.premium-crown path:last-of-type {
  fill: none;
  stroke: url("#premiumAccent");
  stroke-width: 3;
  stroke-linecap: round;
}

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

.edition-feature-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  color: #172033;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 850;
}

.edition-feature-list span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6c21a 0%, #ff7a00 48%, #f01d2e 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.local-data-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 244, 214, 0.72);
}

.local-data-note span {
  color: #c58b00;
  font-size: 26px;
}

.feature-card .local-data-note p {
  max-width: none;
  color: #9a6b00;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 850;
}

.edition-price-card {
  display: grid;
  justify-items: center;
  text-align: center;
  border-color: rgba(240, 29, 46, 0.55);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 237, 0.88)),
    radial-gradient(circle at 50% 10%, rgba(245, 173, 0, 0.18), transparent 34%);
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6c21a 0%, #ff7a00 48%, #f01d2e 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(240, 29, 46, 0.18);
}

.edition-price-card h3 {
  margin: 0 0 10px;
  color: #a06e00;
  font-size: 34px;
  line-height: 1.2;
}

.price-lockup {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 0 0 18px;
  padding-bottom: 18px;
  width: 100%;
  border-bottom: 1px solid rgba(203, 157, 82, 0.28);
}

.price-lockup span {
  color: #9a6b00;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1;
  font-weight: 900;
}

.price-lockup strong {
  color: #ff0000;
  font-size: clamp(96px, 7vw, 124px);
  line-height: 0.9;
  font-weight: 950;
}

.purchase-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 22px;
}

.purchase-benefit {
  display: grid;
  justify-items: center;
  gap: 9px;
}

.purchase-benefit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6c21a 0%, #ff7a00 48%, #f01d2e 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(240, 29, 46, 0.18);
}

.purchase-benefit-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.purchase-benefit strong {
  color: #172033;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.edition-price-card .section-primary-button {
  width: min(100%, 440px);
  background: #ff0000;
  box-shadow: 0 16px 34px rgba(255, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.edition-price-card .section-primary-button:hover {
  background: #ff0000;
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.secure-payment-note {
  margin-top: 12px;
  color: #667085;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
}

.trial-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.trial-stat-card {
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.trial-stat-card strong {
  color: #ff0000;
  font-size: clamp(46px, 4.3vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.trial-stat-card span {
  color: #344054;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.version-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.version-card {
  position: relative;
  padding: 24px 28px;
  text-align: center;
}

.version-card.highlighted {
  border-color: rgba(34, 184, 111, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 251, 241, 0.88));
  box-shadow: 0 24px 58px rgba(16, 139, 86, 0.14), var(--inner-shadow);
}

.version-badge {
  position: absolute;
  top: 22px;
  right: 24px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 184, 111, 0.12);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.version-card h3 {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6c21a 0%, #ff7a00 48%, #f01d2e 100%);
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
}

.version-card.highlighted h3 {
  font-weight: 950;
}

.version-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.version-card.highlighted ul {
  display: block;
  text-align: center;
}

.version-card.highlighted li {
  display: inline;
}

.version-card.highlighted li + li {
  margin-left: 0.5em;
}

.version-card.highlighted li:nth-child(2)::after,
.version-card.highlighted li:nth-child(4)::after {
  content: "\A";
  white-space: pre;
}

.version-card.highlighted li:nth-child(3),
.version-card.highlighted li:nth-child(5) {
  margin-left: 0;
}

.version-card li {
  color: #344054;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
  text-align: center;
}

.landing-faq-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.landing-faq-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 20px 22px;
}

.landing-faq-item + .landing-faq-item {
  border-left: 1px solid rgba(203, 213, 225, 0.62);
}

.landing-faq-item span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(18, 174, 184, 0.12);
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
}

.landing-faq-item h3 {
  margin: 0;
  color: #172033;
  font-size: 18px;
  line-height: 1.36;
  font-weight: 900;
}

.landing-faq-item p {
  margin: 8px 0 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 700;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.section-primary-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 14px;
  background: linear-gradient(180deg, #22b86f, #108b56);
  color: #fff;
  box-shadow: 0 16px 34px rgba(16, 139, 86, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
}

.section-primary-button:hover {
  background: linear-gradient(180deg, #2cc97d, #0f7e4f);
  box-shadow: 0 20px 40px rgba(16, 139, 86, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: brightness(1.03);
  transform: translateY(-2px);
}

.site-footer {
  width: 100%;
  margin-top: 44px;
  padding: 38px 0 30px;
  background:
    linear-gradient(135deg, #0f2f3a 0%, #123f45 55%, #0c2732 100%),
    radial-gradient(circle at 12% 8%, rgba(34, 184, 111, 0.16), transparent 28%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 -16px 38px rgba(15, 47, 58, 0.1);
}

.site-footer-container {
  width: min(1280px, 100%);
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 0.9fr) minmax(220px, 0.9fr);
  gap: 32px;
  align-items: start;
  margin: 0 auto;
  padding: 0 88px 0 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 96px;
  flex: 0 0 auto;
  border-radius: 12px;
}

.footer-brand h2,
.footer-social h3,
.footer-links h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 900;
  letter-spacing: 0;
}

.footer-brand h2 {
  font-size: 21px;
  line-height: 1.25;
}

.footer-brand p,
.footer-meta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.footer-brand-statement {
  color: rgba(211, 244, 222, 0.82);
}

.footer-social h3,
.footer-links h3 {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.25;
}

.footer-social-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.footer-social {
  align-self: center;
}

.footer-social-link {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: transform 200ms ease, color 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.footer-social-link:hover {
  color: #fff;
  border-color: rgba(211, 244, 222, 0.36);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link span {
  font-size: 14px;
  font-weight: 800;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links a {
  width: max-content;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease, text-decoration-color 180ms ease;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transform: translateX(2px);
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-meta p {
  margin: 0;
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-contact,
.floating-trial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
}

.floating-contact {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.floating-contact svg {
  width: 30px;
  height: 30px;
  display: block;
}

.floating-contact:hover {
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: brightness(1.03);
  transform: translateY(-2px);
}

.floating-line {
  background: #06c755;
}

.floating-line svg {
  width: 34px;
  height: 34px;
}

.line-bubble {
  fill: #fff;
}

.line-word {
  fill: #06c755;
}

.floating-facebook {
  background: #1877f2;
}

.floating-facebook svg {
  width: 31px;
  height: 31px;
}

.facebook-mark {
  fill: #fff;
}

.floating-trial-button {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22b86f, #108b56);
  color: #fff;
  box-shadow: 0 16px 34px rgba(16, 139, 86, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-size: 15px;
  font-weight: 900;
}

.floating-trial-button:hover {
  background: linear-gradient(180deg, #2cc97d, #0f7e4f);
  box-shadow: 0 20px 40px rgba(16, 139, 86, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: brightness(1.03);
  transform: translateY(-2px);
}

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

  .product-visual {
    min-height: 430px;
  }

  .hero-demo-copy-library {
    left: 22px;
    top: 24px;
    width: 72%;
    height: 320px;
  }

  .hero-demo-library-layout {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .hero-demo-library-main {
    padding: 16px;
  }

  .hero-demo-copy-card {
    min-height: 70px;
  }

  .hero-demo-copy-card:nth-of-type(3) {
    display: none;
  }

  .hero-demo-marketplace {
    right: 20px;
    bottom: 22px;
    width: 54%;
    height: 286px;
  }

  .hero-demo-marketplace-field {
    min-height: 124px;
  }

  .hero-demo-transfer-chip {
    left: 220px;
    top: 190px;
  }

  .hero-demo-cursor {
    transform: translate3d(320px, 92px, 0);
  }

  .hero-demo.is-moving .hero-demo-cursor,
  .hero-demo.is-copying .hero-demo-cursor {
    transform: translate3d(300px, 172px, 0);
  }

  .hero-demo.is-transferring .hero-demo-transfer-chip {
    transform: translate3d(115px, 88px, 0) scale(1);
  }

  .landing-screen {
    padding: 72px 28px;
  }

  .feature-card-grid,
  .version-card-grid,
  .landing-faq-panel {
    grid-template-columns: 1fr;
  }

  .landing-faq-item + .landing-faq-item {
    border-top: 1px solid rgba(203, 213, 225, 0.62);
    border-left: 0;
  }

  .site-footer-container {
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
    padding-right: 96px;
  }

  .footer-social {
    justify-self: start;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, max-content);
    align-items: center;
    gap: 10px 18px;
  }

  .footer-links h3 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .trial-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .trial-screen .landing-screen-container,
  .trial-screen .section-heading,
  .trial-screen .trial-stat-grid,
  .trial-screen .version-card-grid,
  .trial-screen .landing-faq-panel,
  .trial-screen .section-cta {
    width: 100%;
    max-width: none;
  }

  .trial-screen .section-heading p {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .sticky-header-shell {
    padding: 12px 16px 0;
  }

  .hero-screen {
    min-height: auto;
    padding: 28px 16px 32px;
  }

  .hero-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    min-height: 70px;
    height: 70px;
  }

  .hero-header .brand-logo {
    width: 150px;
    height: auto;
  }

  .hero-header::after {
    display: none;
  }

  .brand-copy,
  .product-name {
    display: none;
  }

  .brand-name {
    font-size: 20px;
  }

  .product-name {
    font-size: 13px;
    white-space: normal;
  }

  .hero-layout {
    gap: 24px;
    padding: 28px 0 0;
  }

  .hero-title {
    font-size: 42px;
    max-width: 100%;
    word-break: normal;
  }

  .hero-title-line {
    min-height: 0;
  }

  .hero-title-cursor {
    display: none;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-primary-button {
    width: 100%;
  }

  .product-visual {
    min-height: 360px;
  }

  .hero-demo-copy-library {
    left: 14px;
    right: 14px;
    top: 16px;
    width: auto;
    height: 176px;
  }

  .hero-demo-library-layout {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .hero-demo-sidebar {
    padding: 14px 10px;
  }

  .hero-demo-library-main {
    padding: 12px;
  }

  .hero-demo-library-header {
    margin-bottom: 10px;
  }

  .hero-demo-library-header strong {
    font-size: 15px;
  }

  .hero-demo-copy-card {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    min-height: 74px;
    margin-bottom: 0;
    padding: 10px;
  }

  .hero-demo-thumb {
    width: 38px;
    height: 38px;
  }

  .hero-demo-copy-button {
    min-height: 32px;
    padding: 0 12px;
  }

  .hero-demo-copy-toast {
    right: 18px;
    bottom: 156px;
  }

  .hero-demo-marketplace {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    height: 144px;
  }

  .hero-demo-marketplace-top {
    min-height: 34px;
    padding: 0 12px;
  }

  .hero-demo-marketplace-body {
    padding: 10px 12px;
  }

  .hero-demo-marketplace-body p {
    display: none;
  }

  .hero-demo-marketplace-field {
    min-height: 58px;
    margin: 0 0 8px;
    padding: 8px 10px;
  }

  .hero-demo-marketplace-field span {
    margin-bottom: 4px;
  }

  .hero-demo-marketplace-field output,
  .hero-demo-marketplace-field em {
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-demo-publish-button {
    min-height: 30px;
  }

  .hero-demo.is-moving .hero-demo-cursor,
  .hero-demo.is-copying .hero-demo-cursor {
    transform: translate3d(58vw, 120px, 0);
  }

  .hero-demo.is-transferring .hero-demo-transfer-chip {
    transform: translate3d(24vw, 72px, 0) scale(1);
  }
}

@media (max-width: 480px) {
  .hero-demo-search,
  .hero-demo-copy-card:nth-of-type(2),
  .hero-demo-copy-card:nth-of-type(3),
  .hero-demo-transfer-chip,
  .hero-demo-cursor {
    display: none;
  }

  .hero-demo-copy-card {
    animation: none;
  }

  .hero-demo-copy-toast {
    opacity: 1;
    transform: none;
  }

  .hero-demo-marketplace {
    opacity: 1;
    transform: none;
  }

  .hero-demo.is-reduced .hero-demo-copy-library,
  .hero-demo.is-reduced .hero-demo-copy-button,
  .hero-demo.is-reduced .hero-demo-copy-toast,
  .hero-demo.is-reduced .hero-demo-marketplace,
  .hero-demo.is-reduced .hero-demo-publish-button {
    transition: none;
  }
}

@media (max-width: 760px) {
  .landing-screen {
    min-height: auto;
    padding: 58px 16px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 18px;
    line-height: 1.65;
  }

  .feature-card-grid,
  .trial-stat-grid,
  .version-card-grid {
    gap: 14px;
  }

  .feature-card {
    min-height: auto;
    padding: 22px;
  }

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

  .edition-feature-card,
  .edition-price-card {
    min-height: auto;
    padding: 24px;
  }

  .edition-card-heading {
    gap: 14px;
    margin-bottom: 22px;
  }

  .premium-crown {
    width: 54px;
    height: 54px;
  }

  .premium-crown svg {
    width: 50px;
    height: 50px;
  }

  .edition-feature-list {
    gap: 14px;
  }

  .edition-feature-list li {
    font-size: 18px;
  }

  .local-data-note {
    margin-top: 24px;
    padding: 16px;
  }

  .price-lockup {
    gap: 8px;
  }

  .price-lockup strong {
    font-size: 96px;
  }

  .purchase-benefit-grid {
    gap: 18px;
  }

  .purchase-benefit-icon {
    width: 58px;
    height: 58px;
  }

  .purchase-benefit-icon svg {
    width: 29px;
    height: 29px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .feature-card h3 {
    font-size: 21px;
  }

  .feature-card p,
  .version-card li {
    font-size: 17px;
  }

  .trial-stat-card {
    min-height: 140px;
  }

  .trial-stat-card strong {
    font-size: 44px;
  }

  .trial-stat-card span {
    font-size: 19px;
  }

  .version-card {
    padding: 24px;
  }

  .landing-faq-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .section-primary-button {
    width: 100%;
  }

  .site-footer {
    margin-top: 40px;
    padding: 34px 0 28px;
  }

  .site-footer-container {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 128px 0 22px;
  }

  .footer-brand {
    display: grid;
    align-items: flex-start;
  }

  .footer-logo {
    width: 86px;
  }

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

  .footer-social-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links a {
    width: auto;
  }

  .footer-meta {
    display: grid;
    gap: 6px;
  }

  .floating-actions {
    right: 12px;
    bottom: 16px;
    gap: 8px;
  }

  .floating-contact {
    width: 44px;
    height: 44px;
  }

  .floating-contact svg {
    width: 26px;
    height: 26px;
  }

  .floating-line svg {
    width: 30px;
    height: 30px;
  }

  .floating-facebook svg {
    width: 28px;
    height: 28px;
  }

  .floating-trial-button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-cursor {
    display: none;
  }

  .hero-demo-copy-card.is-featured {
    animation: none;
  }

  .feature-card,
  .section-primary-button,
  .floating-contact,
  .floating-trial-button {
    transition: none;
  }

  .feature-card:hover,
  .section-primary-button:hover,
  .floating-contact:hover,
  .floating-trial-button:hover,
  .footer-social-link:hover,
  .footer-links a:hover {
    transform: none;
  }

  .hero-demo-copy-library,
  .hero-demo-copy-button,
  .hero-demo-copy-toast,
  .hero-demo-marketplace,
  .hero-demo-publish-button,
  .hero-demo-transfer-chip,
  .hero-demo-cursor {
    transition: none;
  }

  .hero-demo-cursor,
  .hero-demo-transfer-chip {
    display: none;
  }
}
